1

我必须使用 gstreamer 0.10 并尝试流式传输 mp4 文件。

为此我尝试了

gst-launch-0.10 文件rc location=./test.mp4 !qtdemux !队列 !h264解析!视频/x-h264,映射=/流!udpsink rtsp://192.168.192.100:12345/test

并收到警告:警告:错误管道:没有元素“h264parse”

如何将文件流式传输为 rtsp 流?

4

2 回答 2

1

要获取 h264parse 插件,请运行“sudo apt install gstreamer1.0-plugins-bad”

管道

发件人

gst-launch-1.0 filesrc 位置= ~/file.mp4 !qtdemux !队列 !h264解析!rtph264pay 配置间隔=10 !udpsink 主机=ip_address_to_stream_to 端口=9999 -v

接收者

gst-launch-1.0 udpsrc port=9999 caps="application/x-rtp, media=(string)video, clock-rate=(int)90000, payload=(int)96, encoding-name=(string)H264" !rtph264depay!身份沉默=0!avdec_h264 !视频转换!ximagesink

于 2021-02-16T08:00:55.943 回答
0

以下是对我有用的步骤:

sudo apt-get install libgstrtspserver-1.0 libgstreamer1.0-dev

wget https://github.com/GStreamer/gst-rtsp-server/blob/master/examples/test-launch.c

gcc test-launch.c -o test-launch $(pkg-config --cflags --libs gstreamer-1.0 gstreamer-rtsp-server-1.0)

./test-launch “filesrc 位置= <full-path-to-your-mp4-video-file>!qtdemux!队列!h264parse!rtph264pay name=pay0 pt=96”

在客户端机器上,为了测试,我运行 ffplay 或 VLC Player:

ffplay rtsp:// <your-server-ip>:8554/test

于 2021-08-20T03:31:49.027 回答