GNOME Bugzilla – Bug 755753
No video output
Last modified: 2016-05-22 21:11:10 UTC
Using a raspi to stream video to a windows computer, it was working well on a desktop, but it is not working on a laptop. I'm using the following commands: on the raspberry pi, to transmit : raspivid -n -t 0 -w 1920 -h 1080 -fps 30 -b 4000000 -o - | gst-launch-1.0 -e -vvvv fdsrc ! h264parse ! rtph264pay pt=96 config-interval=5 ! udpsink host=192.168.1.1 port=5000 on the windows side, to receive : c:\gstreamer\1.0\x86\bin\gst-launch-1.0 -e -v udpsrc port=5000 ! application/x-rtp,payload=96 !rtpjitterbuffer ! rtph264depay ! avdec_h264 ! fpsdisplaysink sync=false text-overlay=true The host is correct, the connection is direct with an ethernet cable. I can see the data coming in the laptop with the task manager that shows the bandwith usage, but nothing is displayed. The command line stays with the initialization lines. gst-launch is allowed in the firewall. But the Gstreamer D3D video sink window is not opening... any idea on what the bug can be? Thanks
The gstreamer-devel mailing list might be a better place for support issues. First, make sure that you're actually receiving data using: gst-launch-1.0 -v udpsrc port=5000 ! fakesink dump=true If you see lots of hex output, that's good. Also try ... ! avdec_h264 ! fakesink dump=true Again, if you get output, that's good. Perhaps try avdec_h264 ! videoconvert ! videoscale ! autovideosink or ... avdec_h264 ! videoconvert ! videoscale ! d3dvideosink
I'm not getting any hex ouptut when I use gst-launch-1.0 -v udpsrc port=5000 ! fakesink dump=true. I double checked the firewall, and port 5000 is open. I also double checked the IP adresses. And I really can see the data flow in the networking tab of task manager. So I don't get what can be wrong...
Neither do I, but it sounds more like a 'something doesn't work for a yet-to-be-understood reason' rather than a bug :) probably best to figure out on the mailing list. You may also want to use the rpicamsrc GStreamer element from here: https://github.com/thaytan/gst-rpicamsrc