I have a problem with streaming videosource over HTTP using gstreamer. Windows OS.
Send command (server side) looks like:
gst-launch-1.0 -v filesrc location=d:/TestVideos/costarica.mp4 ! h264parse ! rtph264pay config-interval=1 pt=96 ! gdppay ! tcpserversink host=192.168.1.162 port=6001
And command on client side:
gst-launch-1.0 -v tcpclientsrc host=192.168.1.162 port=6001 ! gdpdepay ! rtph264depay ! h264parse ! decodebin ! autovideosink sync=false
Pipeline is starting, but I can't see opened display window on my screen. It would be great if anyone have solution. Thank you.
rtph264pay config-interval=1 pt=96
andgdppay
and it's not working. What kind of gst options I need to stream over http mp4 file? Rtp over udp works great. – JDolocation=d:/TestVideos/costarica.mp4 ! decodebin ! x264enc ! rtph264pay config-interval=1 ! tcpserversink host=192.168.1.162 port=9001
on the server side. But I also can't recieve mediadata. – JDo