QT6.4 Streaming - Mediaplayer
-
Hi,
I have server streaming video sent to client, then i want to open this streaming video with udp in qt6.4.
I have two options: To open Streaming with sdp file which looks like this :
v=0
m=video 8554 RTP/AVP 96
c=IN IP4 192.168.93.60
a=rtpmap:96 H264/90000Or, i want to open this streaming with another pipeline looks like this :
gst-launch-1.0 udpsrc port=8554 ! application/x-rtp, encoding-name=H264, payload=96 ! rtph264depay ! h264parse ! avdec_h264 ! videoconvert ! autovideosinkHow I can open this streaming video with MediaPlayer.So far, i tried a lot of ways, can you please help me ??