实例介绍
Hi3518采集摄像头图片并把Hi3518当作RTSP服务器用RTSP转文传输视频数据,VLC作为客户端请求连接Hi3518播放视频
【实例截图】
【核心代码】
rtspok_utf8
└── rtspok_utf8
├── H.264 流媒体传输系统的实现.gif
├── RTP header格式.jpg
├── VLC设置.jpg
├── gettime.c
├── rtsp-png
│ └── rtsp.png
├── rtspcode
│ ├── Makefile
│ ├── include
│ │ ├── acodec.h
│ │ ├── dictionary.h
│ │ ├── hi_ae_comm.h
│ │ ├── hi_af_comm.h
│ │ ├── hi_awb_comm.h
│ │ ├── hi_comm_3a.h
│ │ ├── hi_comm_adec.h
│ │ ├── hi_comm_aenc.h
│ │ ├── hi_comm_ai.h
│ │ ├── hi_comm_aio.h
│ │ ├── hi_comm_ao.h
│ │ ├── hi_comm_fisheye.h
│ │ ├── hi_comm_isp.h
│ │ ├── hi_comm_ive.h
│ │ ├── hi_comm_pciv.h
│ │ ├── hi_comm_rc.h
│ │ ├── hi_comm_region.h
│ │ ├── hi_comm_sns.h
│ │ ├── hi_comm_sys.h
│ │ ├── hi_comm_vb.h
│ │ ├── hi_comm_vda.h
│ │ ├── hi_comm_vdec.h
│ │ ├── hi_comm_venc.h
│ │ ├── hi_comm_vgs.h
│ │ ├── hi_comm_vi.h
│ │ ├── hi_comm_video.h
│ │ ├── hi_comm_vo.h
│ │ ├── hi_comm_vpss.h
│ │ ├── hi_common.h
│ │ ├── hi_debug.h
│ │ ├── hi_defines.h
│ │ ├── hi_errno.h
│ │ ├── hi_i2c.h
│ │ ├── hi_io.h
│ │ ├── hi_isp_debug.h
│ │ ├── hi_ive.h
│ │ ├── hi_math.h
│ │ ├── hi_md.h
│ │ ├── hi_mipi.h
│ │ ├── hi_sns_ctrl.h
│ │ ├── hi_spi.h
│ │ ├── hi_tde_api.h
│ │ ├── hi_tde_errcode.h
│ │ ├── hi_tde_type.h
│ │ ├── hi_type.h
│ │ ├── hi_vreg.h
│ │ ├── hifb.h
│ │ ├── himedia.h
│ │ ├── iniparser.h
│ │ ├── isp_dehaze.h
│ │ ├── ivs_md.h
│ │ ├── list.h
│ │ ├── mpi_adec.h
│ │ ├── mpi_ae.h
│ │ ├── mpi_aenc.h
│ │ ├── mpi_af.h
│ │ ├── mpi_ai.h
│ │ ├── mpi_ao.h
│ │ ├── mpi_awb.h
│ │ ├── mpi_fisheye.h
│ │ ├── mpi_isp.h
│ │ ├── mpi_ive.h
│ │ ├── mpi_pciv.h
│ │ ├── mpi_region.h
│ │ ├── mpi_sys.h
│ │ ├── mpi_vb.h
│ │ ├── mpi_vda.h
│ │ ├── mpi_vdec.h
│ │ ├── mpi_venc.h
│ │ ├── mpi_vgs.h
│ │ ├── mpi_vi.h
│ │ ├── mpi_vo.h
│ │ ├── mpi_vpss.h
│ │ ├── ringfifo.h
│ │ ├── rtputils.h
│ │ ├── rtspservice.h
│ │ ├── rtsputils.h
│ │ └── strlib.h
│ ├── lib
│ │ ├── libVoiceEngine.a
│ │ ├── lib_cmoscfg.a
│ │ ├── lib_hiae.a
│ │ ├── lib_hiaf.a
│ │ ├── lib_hiawb.a
│ │ ├── lib_hidefog.a
│ │ ├── lib_iniparser.a
│ │ ├── libdnvqe.a
│ │ ├── libisp.a
│ │ ├── libive.a
│ │ ├── libmd.a
│ │ ├── libmpi.a
│ │ ├── libsns_ar0130.a
│ │ ├── libtde.a
│ │ └── libupvqe.a
│ ├── loadbmp.c
│ ├── loadbmp.h
│ ├── main.c
│ ├── ringfifo.c
│ ├── rtputils.c
│ ├── rtsp
│ ├── rtspservice.c
│ ├── rtsputils.c
│ ├── sample_comm.h
│ ├── sample_comm_audio.c
│ ├── sample_comm_isp.c
│ ├── sample_comm_ive.c
│ ├── sample_comm_ive.h
│ ├── sample_comm_sys.c
│ ├── sample_comm_venc.c
│ ├── sample_comm_vi.c
│ ├── sample_comm_vo.c
│ ├── sample_comm_vpss.c
│ └── sample_venc.c
├── rtspok_utf8.si4project
│ ├── cache
│ │ └── parse
│ │ ├── rtspcode_include_acodec.h.sisc
│ │ ├── rtspcode_include_dictionary.h.sisc
│ │ ├── rtspcode_include_hi_ae_comm.h.sisc
│ │ ├── rtspcode_include_hi_af_comm.h.sisc
│ │ ├── rtspcode_include_hi_awb_comm.h.sisc
│ │ ├── rtspcode_include_hi_comm_3a.h.sisc
│ │ ├── rtspcode_include_hi_comm_adec.h.sisc
│ │ ├── rtspcode_include_hi_comm_aenc.h.sisc
│ │ ├── rtspcode_include_hi_comm_ai.h.sisc
│ │ ├── rtspcode_include_hi_comm_aio.h.sisc
│ │ ├── rtspcode_include_hi_comm_ao.h.sisc
│ │ ├── rtspcode_include_hi_comm_fisheye.h.sisc
│ │ ├── rtspcode_include_hi_comm_isp.h.sisc
│ │ ├── rtspcode_include_hi_comm_ive.h.sisc
│ │ ├── rtspcode_include_hi_comm_pciv.h.sisc
│ │ ├── rtspcode_include_hi_comm_rc.h.sisc
│ │ ├── rtspcode_include_hi_comm_region.h.sisc
│ │ ├── rtspcode_include_hi_comm_sns.h.sisc
│ │ ├── rtspcode_include_hi_comm_sys.h.sisc
│ │ ├── rtspcode_include_hi_comm_vb.h.sisc
│ │ ├── rtspcode_include_hi_comm_vda.h.sisc
│ │ ├── rtspcode_include_hi_comm_vdec.h.sisc
│ │ ├── rtspcode_include_hi_comm_venc.h.sisc
│ │ ├── rtspcode_include_hi_comm_vgs.h.sisc
│ │ ├── rtspcode_include_hi_comm_vi.h.sisc
│ │ ├── rtspcode_include_hi_comm_video.h.sisc
│ │ ├── rtspcode_include_hi_comm_vo.h.sisc
│ │ ├── rtspcode_include_hi_comm_vpss.h.sisc
│ │ ├── rtspcode_include_hi_common.h.sisc
│ │ ├── rtspcode_include_hi_debug.h.sisc
│ │ ├── rtspcode_include_hi_defines.h.sisc
│ │ ├── rtspcode_include_hi_errno.h.sisc
│ │ ├── rtspcode_include_hi_i2c.h.sisc
│ │ ├── rtspcode_include_hi_io.h.sisc
│ │ ├── rtspcode_include_hi_isp_debug.h.sisc
│ │ ├── rtspcode_include_hi_ive.h.sisc
│ │ ├── rtspcode_include_hi_math.h.sisc
│ │ ├── rtspcode_include_hi_md.h.sisc
│ │ ├── rtspcode_include_hi_mipi.h.sisc
│ │ ├── rtspcode_include_hi_sns_ctrl.h.sisc
│ │ ├── rtspcode_include_hi_spi.h.sisc
│ │ ├── rtspcode_include_hi_tde_api.h.sisc
│ │ ├── rtspcode_include_hi_tde_errcode.h.sisc
│ │ ├── rtspcode_include_hi_tde_type.h.sisc
│ │ ├── rtspcode_include_hi_type.h.sisc
│ │ ├── rtspcode_include_hi_vreg.h.sisc
│ │ ├── rtspcode_include_hifb.h.sisc
│ │ ├── rtspcode_include_himedia.h.sisc
│ │ ├── rtspcode_include_iniparser.h.sisc
│ │ ├── rtspcode_include_isp_dehaze.h.sisc
│ │ ├── rtspcode_include_ivs_md.h.sisc
│ │ ├── rtspcode_include_list.h.sisc
│ │ ├── rtspcode_include_mpi_adec.h.sisc
│ │ ├── rtspcode_include_mpi_ae.h.sisc
│ │ ├── rtspcode_include_mpi_aenc.h.sisc
│ │ ├── rtspcode_include_mpi_af.h.sisc
│ │ ├── rtspcode_include_mpi_ai.h.sisc
│ │ ├── rtspcode_include_mpi_ao.h.sisc
│ │ ├── rtspcode_include_mpi_awb.h.sisc
│ │ ├── rtspcode_include_mpi_fisheye.h.sisc
│ │ ├── rtspcode_include_mpi_isp.h.sisc
│ │ ├── rtspcode_include_mpi_ive.h.sisc
│ │ ├── rtspcode_include_mpi_pciv.h.sisc
│ │ ├── rtspcode_include_mpi_region.h.sisc
│ │ ├── rtspcode_include_mpi_sys.h.sisc
│ │ ├── rtspcode_include_mpi_vb.h.sisc
│ │ ├── rtspcode_include_mpi_vda.h.sisc
│ │ ├── rtspcode_include_mpi_vdec.h.sisc
│ │ ├── rtspcode_include_mpi_venc.h.sisc
│ │ ├── rtspcode_include_mpi_vgs.h.sisc
│ │ ├── rtspcode_include_mpi_vi.h.sisc
│ │ ├── rtspcode_include_mpi_vo.h.sisc
│ │ ├── rtspcode_include_mpi_vpss.h.sisc
│ │ ├── rtspcode_include_ringfifo.h.sisc
│ │ ├── rtspcode_include_rtputils.h.sisc
│ │ ├── rtspcode_include_rtspservice.h.sisc
│ │ ├── rtspcode_include_rtsputils.h.sisc
│ │ ├── rtspcode_include_strlib.h.sisc
│ │ ├── rtspcode_loadbmp.c.sisc
│ │ ├── rtspcode_loadbmp.h.sisc
│ │ ├── rtspcode_main.c.sisc
│ │ ├── rtspcode_ringfifo.c.sisc
│ │ ├── rtspcode_rtputils.c.sisc
│ │ ├── rtspcode_rtspservice.c.sisc
│ │ ├── rtspcode_rtsputils.c.sisc
│ │ ├── rtspcode_sample_comm.h.sisc
│ │ ├── rtspcode_sample_comm_audio.c.sisc
│ │ ├── rtspcode_sample_comm_isp.c.sisc
│ │ ├── rtspcode_sample_comm_ive.c.sisc
│ │ ├── rtspcode_sample_comm_ive.h.sisc
│ │ ├── rtspcode_sample_comm_sys.c.sisc
│ │ ├── rtspcode_sample_comm_venc.c.sisc
│ │ ├── rtspcode_sample_comm_vi.c.sisc
│ │ ├── rtspcode_sample_comm_vo.c.sisc
│ │ ├── rtspcode_sample_comm_vpss.c.sisc
│ │ └── rtspcode_sample_venc.c.sisc
│ ├── rtspok_utf8.bookmarks.xml
│ ├── rtspok_utf8.sip_sym
│ ├── rtspok_utf8.sip_xab
│ ├── rtspok_utf8.sip_xad
│ ├── rtspok_utf8.sip_xc
│ ├── rtspok_utf8.sip_xf
│ ├── rtspok_utf8.sip_xm
│ ├── rtspok_utf8.sip_xr
│ ├── rtspok_utf8.sip_xsb
│ ├── rtspok_utf8.sip_xsd
│ ├── rtspok_utf8.siproj
│ ├── rtspok_utf8.siproj_settings.xml
│ └── rtspok_utf8.siwork
├── rtsp协议.txt
├── rtsp数据分析
│ ├── 0106.pcapng
│ ├── 14633抓包.jpg
│ ├── 14689抓包.jpg
│ ├── 14689抓包数据.txt
│ ├── RTSP协议.jpg
│ ├── RTSP协议抓包.jpg
│ ├── rtsp0106
│ ├── session0106.log
│ ├── stream0106.h264
│ ├── stream0106_h264.txt
│ └── 数据说明.txt
├── 程序分析.txt
└── 应用程序测试步骤.txt
9 directories, 241 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论