HeJ小鼠!
我试图设置以下内容:
我有一个GoPro Session 5,它来自udp://10.5.5.9:8554 我有一个覆盆子pi 3连接到GoPro的wifi热点 我希望在另一台带有静态IP的计算机上通过4g以上的rpi从GoPro流式传输到Gstreamer查看器(在本例中为QGroundControl)。
我可以通过这个工具来实现这个目的:
https://github.com/KonradIT/gopro-py-api
和这个命令:
ffmpeg -f mpegts -i udp://10.5.5.9:8554 -map 0:0 -c copy -f rtp
udp://94.234.203.109:5000
现在我想看看我是否可以使用Gstreamer获得更好的性能。
我正在尝试以下方法:
#!/bin/bash
gst-launch-1.0 -v \
rtpbin name=rtpbin \
udpsrc uri=udp://10.5.5.9:8554 \
! queue \
! avenc_h264_omx bitrate=500000 \
! "video/x-h264,profile=high" \
! h264parse \
! queue max-size-bytes=10000000 \
! rtph264pay pt=96 config-interval=1 \
! rtpbin.send_rtp_sink_0 rtpbin.send_rtp_src_0 \
! udpsink port=5000 host=94.234.203.109 ts-offset=0 name=vrtpsink
rtpbin.send_rtcp_src_0 \
! rtpbin.recv_rtcp_sink_0
并收到此错误:
Setting pipeline to PAUSED ...
ERROR: Pipeline doesn't want to pause.
ERROR: from element /GstPipeline:pipeline0/GstUDPSrc:udpsrc0: Could not get/set settings from/on resource.
Additional debug info:
gstudpsrc.c(1548): gst_udpsrc_open (): /GstPipeline:pipeline0/GstUDPSrc:udpsrc0: bind failed: Error binding to address: Cannot assign requested address
Setting pipeline to NULL ...
Freeing pipeline ...
有人可以饶我一些知识吗?谢谢!