GstNetBalancer A GStreamer Network Balancer Element - Examples - Basic pipelines

From RidgeRun Developer Wiki
Revision as of 16:21, 13 October 2022 by Mherrera (talk | contribs) (Add basic piplines)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)



  Index  





This page showcases basic usage examples of the netbalancer element. It uses videotestsrc streaming over different protocols and shows the results of the received

udp streaming

gst-launch-1.0 videotestsrc is-live=true ! 'video/x-raw,width=1280,height=720,framerate=30/1' ! queue ! x264enc key-int-max=30 bitrate=10000 ! queue ! mpegtsmux alignment=7 ! netbalancer bandwidth=12000 distribution-factor=300 min-delay=1000 ! udpsink port=3000 host=127.0.0.1 -v

rtsp streaming

gst-launch-1.0 videotestsrc is-live=true ! 'video/x-raw,width=1280,height=720,framerate=30/1' ! queue ! x264enc key-int-max=30 bitrate=10000 ! queue ! mpegtsmux alignment=7 ! netbalancer bandwidth=12000 distribution-factor=300 min-delay=1000 ! rtspsink name=rtspsink1 service=8556 -v



  Index