All Questions
Tagged with gstreamer-1.0 udp
8 questions
2
votes
1
answer
1k
views
Unable to get mpegts with klv-metadata to flow to end of pipe from udpsrc
I've been fighting with this problem for quite a while now. I have mpegts stream with klv-metadata coming from udpsrc and the bellow gstreamer command to handle it and to pass it through to ...
0
votes
1
answer
465
views
Stream live to udp-rtsp or http protocols with GStreamer
Stream a video file or m3u8 file from the internet via udp or rtsp with ffmpeg. I can watch from players like VLC player. As in the examples below. Can I do the same with gstreamer?
Ubuntu: 22.04.1 ...
0
votes
1
answer
1k
views
Is there any way to check rtp stream coming from source over udp?
I've implemented the code to get video stream from camera source over UDP. I need to check whether the source (camera) sending data or alive. Is there any way to check in using Gstreamer or other way ...
0
votes
1
answer
1k
views
Implement GStreamer pipeline using UDp socket @command line
I want to tranfer the .mp4 file from one terminal to another terminal using Gstreamer pipeline.
first I have test using videotestsrc
@server side gst-launch-1.0 -v videotestsrc pattern=ball ! video/x-...
1
vote
1
answer
2k
views
Gstreamer tsdemux reports "CONTINUITY: Mismatch packet" while receiving MPEG TS payload via UDP
My pipeline is the following (I recieving MPEG TS H264 video over RTP):
gst-launch-1.0 -v udpsrc address=127.0.0.1 port=1200 ! decodebin ! rtpvrawpay ! rtpbin ! udpsink host=127.0.0.1 port=2250
...
1
vote
1
answer
10k
views
How to Stream Video over UDP from GStreamer 1.0 to VLC
I am planning to use GStreamer as the new video-streaming library for my application, but I am trying to test the basic capabilities first. Unfortunately there is a documentation problem, particularly ...
2
votes
1
answer
446
views
How to send one line at a packet using Gstreamer command line
I am trying to stream a raw video to ethernet via RTP Protocol (RFC4175), using Gstreamer 1.0 in Windows.
I don't want my data to be compressed, so I use rtpvrawpay element
I have the following ...
0
votes
1
answer
1k
views
Gstreamer udpsrc plugin query
I am developing an IP Streaming based media player. I am using the following pipelines:
Src:
gst-launch-1.0 -vvv udpsrc port=5004 ! application/x-rtp, payload=96 ! rtph2 64depay ! h264parse ! ...