下面是gst-launch 1.0的udp流发送器:
gst-launch-1.0 -v filesrc location="./venom-trailer-3_h720p.mov" ! qtdemux ! rtph264pay pt=96 config-interval=-1 ! udpsink host=face=eth0 -e3 port=5001 multicast-if
下面是我的接收器命令:
DISPLAY=:0 gst-launch-1.0 udpsrc uri=udp://232.255.23.23:5001 port=5001 ! application/x-rtp, payload=96 ! rtpjitterbuffer ! rtph264depay ! h264parse ! queue ! avdec_h264 ! xvimagesink udpsrc
我的问题是如何改变接收器中窗口的位置和大小。根据这个https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-plugins/html/gst-plugins-base-plugins-ximagesink.html
我必须更改ximagesink的值,但我得到了
WARNING: erroneous pipeline: no property "width" in element "xvimagesink0"
发布于 2019-09-23 17:23:48
根据您发布的链接,元素ximage接收器没有width属性,它有一个名为window-width的属性。
https://stackoverflow.com/questions/54041203
复制相似问题