Hi all,
First thing is I'm totally new to these (streaming video, webrtc, ...), and not an IT guy either.
So, is there any simple way to stream from gstreamer to chrome with janus-gateway. I have it work with firefox, but with chrome it prompt this error (i guess because chrome drop supporting h264): "WebRTC error... "Failed to set remote offer sdp: Session error code: ERROR_CONTENT. Session error description: Failed to set video send codecs..""
Ah, i use this command to stream raspberry pi camera (that's why i must stick with h264):
raspivid -t 0 -h 720 -w 1080 -fps 5 -hf -pf baseline -b 640000 -o - | gst-launch-1.0 -v fdsrc ! h264parse ! rtph264pay config-interval=1 pt=96 ! udpsink host=IP port=8004
and referrence config for h264 in streaming plugin config file.
Thanks.