ParseSDPInfo(源码)

原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。 http://70565912.blog.51cto.com/1358202/461963

ParseSDPInfo 工具
解析H264和AAC文件,生成对应的SDP信息文件。
可用于绕开RTSP协议,直接发送H264及AAC数据流。

运行截图

ParseSDPInfo(源码)_第1张图片650) this.width=650;" onsubmit onchange onunload onselect onreset> 

生成的SDP信息:

ParseSDPInfo(源码)_第2张图片650) this.width=650;" onsubmit onchange onunload onselect onreset>

注意:
H264文件数据中必须包含有正确的sps及pps数据包,AAC文件需要是ADTS或者LOAS格式。

使用参数说明:
**********************************
ParseSDPInfo
Author: KuZi
Email : [email protected]
**********************************
Syntax: ParseSDPInfo -sdp
                     -h264 | -aac
                     | -h264_port | -aac_port
                     | -local_ip    | -target_ip

-sdp            Specify the sdp file path.
-h264           Specify the h264 file path.
-aac            Specify the aac file path.
-h264_port     Specify the h264 port.Defalut value is 1400
-aac_port      Specify the aac port. Defalut value is 1402
-local_ip       Specify the local ip. Defalut value is "127.0.0.1".
-target_ip      Specify the target ip.Defalut value is "239.0.0.1".

Example:
ParseSDPInfo -sdp test.sdp -h264 test.h264 -aac test.aac

工具下载地址:http://down.51cto.com/data/154041

主要代码都是从VLC源码里面直接剥离。另外借鉴了部分Live555,FFMPEG,MPlayer等开源项目的代码。

由上所述,所有核心代码均可以再上述开源项目代码中找到

你可能感兴趣的:(ParseSDPInfo(源码))