已经集成 RTMP 的 Nginx server:https://gitee.com/hwren/nginx_rtmp.git
参考资料:
> FFmpeg发送流媒体的命令(UDP,RTP,RTMP)
> centos7+nginx+rtmp+ffmpeg搭建流媒体服务器
> windows下搭建基于nginx的rtmp服务器
> FFmpeg Streaming Guide
1. RTP
推流端:
ffmpeg -re -i d:\videos\xxx.avs-vcodec copy -f rtp rtp://127.0.0.1:1234
接收端:
ffplay -protocol_whitelist "file,udp,rtp" -i rtp://127.0.0.1:1234
注意:
- FFplay默认不启用RTP,添加-protocol_whitelist参数把RTP协议加入白名单。但是,但上述指令缺少RTP的SDP文件,该文件定义了输入流的格式信息以及接收端的IP和端口号。、
-
-re
命令代表按帧率发送,不加会默认按最快速发 - 可以添加
-max_delay 100000
的方法控制最大延迟(100ms)
生成SDP:
ffmpeg -re -i d:\videos\xxx.avs -vcodec copy -f rtp rtp://127.0.0.1:1234 > rtp_output.sdp
使用SDP:
ffplay -protocol_whitelist "file,udp,rtp" -i rtp_output.sdp
使用mpegts格式时修改对应sdp文件中PayloadType
,从96
改为33
ffmpeg -re -i d:\videos\xxx.avs-vcodec copy -f rtp_mpegts rtp://127.0.0.1:1234
SDP:
v=0
o=- 0 0 IN IP4 127.0.0.1
s=No Name
c=IN IP4 127.0.0.1
t=0 0
m=video 1234 RTP/AVP 33
a=rtpmap:33 MP2T/90000
2. UDP
推流端:
ffmpeg -re -i d:\videos\xxx.avs-vcodec copy -f mpegts udp://127.0.0.1:1234
接收端:
ffplay -protocol_whitelist "file,udp,rtp" -i udp://127.0.0.1:1234
3. RTMP
RTMP推流需要Nginx服务器,搭建及资源见文章开头的参考资料。
推流端:
ffmpeg -re -i xxx.avs -vcodec copy -f mpegts rtmp://127.0.0.1:80/live/123
接收端:
ffplay rtmp://127.0.0.1:80/live/123
其中live
为Nginx
的节点,端口1935
为之前配置的rtmp
端口,123
是随便写的(类似直播的房间号hhh),两边一致就行
4. TCP
TCP方式推流与UDP类似,实现点对点传输同理:
推流端:
ffmpeg -re -i d:\videos\xxx.avs-vcodec copy -f mpegts tcp://127.0.0.1:1234
接收端:
ffplay tcp://127.0.0.1:1234?listen
注意:
- TCP应当开启接收端的监听,发送端应该按默认关闭
- TCP其他参数参考官方文档
其他记录:
互联网访问路由器局域网下的IP可以使用DMZ主机的形式,将路由器下某一台主机设置为DMZ主机,访问路由器WAN口IP即可直达该机器。或者使用虚拟服务器完成端口映射,将需要的端口映射到路由器端口。
FFmpeg已经不默认支持
rtmp style URL
(如live=1
),会提示Detected librtmp style URL parameters, these aren't supported by the libavformat internal RTMP handler currently enabled. See the documentation for the correct way to pass parameters.
如有需要可重新编译,安装librtmp
后在configure
时添加--enable-librtmp
即可因为改了动态库,出现了
undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
的错误,原因是编译的时候没有默认开启,应当在configure
的时候添加--extra-libs="-ldl"
动态链接时
dlopen
失败时可以通过printf("dlopen - %s", dlerror());
的方式输出实际的错误信息。如果出现cannot dynamically load executable
的问题,不要忘记在两边编译的时候CFLAGS
里加上-fPIC -shared
设置Linux端口ip的时候可以用指令
sudo ifconfig 192.168.1.1 netmask 255.255.255.0
,如果未生效可以强制使用sudo service network restart
重启网络服务