1.我在 linux 中尝试使用在 jetson tx2 上使用如下的命令进行 rtmp 推流:
gst-launch-1.0 videotestsrc ! videoconvert ! x264enc ! flvmux ! rtmpsink location='rtmp://127.0.0.1/live live=1'
2.但是一直报错,如下:
设置暂停管道 ...
管道正在 PREROLLING ...
重新分配延迟时间...
管道被 PREROLLED ...
设置播放管道 ...
New clock: GstSystemClock
错误:来自组件 /GstPipeline:pipeline0/GstRTMPSink:rtmpsink0:无法打开资源写入。
额外的调试信息:
gstrtmpsink.c(245): gst_rtmp_sink_render (): /GstPipeline:pipeline0/GstRTMPSink:rtmpsink0:
Could not connect to RTMP stream "rtmp://127.0.0.1/live live=1" for writing
Execution ended after 0:00:00.000829338
设置暂停管道 ...
设置备用管道 ...
设置 NULL 管道 ...
释放管道资源 ...
3.是因为端口的原因吗,我已经使用 iptables 打开了默认 1935 端口,使用的命令如下:
iptables -A INPUT -ptcp --dport 1935-j ACCEPT
iptables-save
4.希望得到懂 gstreamer 的老哥的指点