Hi,
I would like to continue my discussion from the last
post. I am trying to scale out the streaming plugin with the videoroom plugin
TLDR: How to publish my video source from gstreamer from a raspberry pi to the videoroom plugin?
I found that it is possible to scale out the streaming plugin by using rtp_forward from the Videoroom plugin, so that I can foward the RTP stream to multiple Janus servers with streaming plugins. However, while there are demos showing we can simply use navigator.XXX to obtain the video source from web browser, there are no documentation on how to achieve it using gstreamer.
my gstreamer command:
gst-launch-1.0 -v v4l2src device=/dev/video0 ! video/x-raw,width=640,height=480,framerate=10/1 \
omxh264enc target-bitrate=700000 control-rate=variable ! h264parse ! rtph264pay config-interval=1 pt=96 ! udpsink host=server.ip port=my_port
Thank you in advance!