When I do:
Code: Select all
uv4l --driver raspicam --auto-video_nr --encoding h264 --width 640 --height 480
Code: Select all
uv4l --driver raspicam --auto-video_nr --encoding h264 --width 640 --height 480
Code: Select all
sudo modprobe bcm2835-v4l2
Yes, I figured that out, so I am mainly testing in Firefox.towolf wrote:Chromi does not (yet) support H.264 in WebRTC.
Tried that, it worked once. But it is not working now.ghans wrote:Tried the official driver instead ?
ghansCode: Select all
sudo modprobe bcm2835-v4l2
Code: Select all
./configure --prefix=/opt/janus --disable-websockets --disable-data-channels --disable-rabbitmq --disable-docs
Code: Select all
[general]
configs_folder = /opt/janus/etc/janus ; Configuration files folder
plugins_folder = /opt/janus/lib/janus/plugins ; Plugins folder
Code: Select all
[gst-raspicam]
type = rtp
id = 1
description = H.264 live streaming from Raspicam
audio = no
video = yes
videoport = 8004
videopt = 96
videortpmap = H264/90000
videofmtp = profile-level-id=42e028\;packetization-mode=1
Code: Select all
raspivid --verbose --nopreview --width 640 --height 480 --framerate 15 --bitrate 1000000 --profile baseline --timeout 0 -o - | gst-launch-1.0 -v fdsrc ! h264parse ! rtph264pay config-interval=1 pt=96 ! udpsink host=127.0.0.1 port=8004
Code: Select all
/opt/janus/bin/janus -F /opt/janus/etc/janus/
According to a previous announcement at the UV4L homepage, UV4L will soon (also) be native webrtc client itself. So hopefully it will be possible to access the camera in real-time from anywhere with any browser.exander wrote:what is the support of WebRTC in Firefox or Chromium?
When I do:Camera is correctly recognized in Firefox (getUserMedia), but not in Chromium, but then I get an error.Code: Select all
uv4l --driver raspicam --auto-video_nr --encoding h264 --width 640 --height 480
Code: Select all
ffmpeg -re -i clase.mp4 -c:v libx264 -g 8 -vprofile baseline -an -f h264 pipe:1 | gst-launch-1.0 -v fdsrc ! h264parse ! rtph264pay config-interval=1 pt=96 ! udpsink host=127.0.0.1 port=8004