How to stream a video frame by frame from sys1 to a qt-application on sys2 and display it in real time, on linux
-
I want to implement GStreamer pipeline using UDP socket and display that video ion QT.
I am using QT 5.12.9 version.
I want to run server command in one terminal and client should be in Qt app so it will display video in widgets.
Server: $gst-launch-1.0 -v filesrc location =<file_path/>video_test.mp4 ! qtdemux ! video/x-h264 ! rtph264pay ! udpsink host=127.0.0.1 port=8000client $@client: $gst-launch-1.0 -v udpsrc port=8000 caps = "application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)H264, payload=(int)96" ! rtph264depay ! decodebin ! videoconvert ! filesink location=a.mp4
please any one help me.
-
Please do not double post
I'm closing this one as the other one has slightly more information:
https://forum.qt.io/topic/120348/how-to-stream-a-video-frame-by-frame-from-sys1-to-a-qt-application-on-sys2-and-display-it-in-real-time-on-linux