Need GStreamer command for streaming video -


can 1 give me working (gstreamer) command streaming video on udp

here example using test audio , video source

gst-launch audiotestsrc ! ffenc_mp2 ! mpegtsmux name=mux ! udpsink host=239.1.1.1 auto-multicast=true port=1234 videotestsrc ! ffenc_mpeg2video bitrate=200000 ! mux. 

you can play in vlc using url:

udp://@239.1.1.1:1234 

if not want unicast, multicast instead, enter ip address @ udpsink options, example host=192.168.1.1. vlc url becomes udp://@:1234.


Comments

Popular posts from this blog

JQuery Autocomplete without using label, value, id -

c++ - Accessing inactive union member and undefined behavior? -

JAVA - what is the difference between void and boolean methods? -