- Start the v4l2loopback module:
sudo modprobe v4l2loopback \
devices=1 exclusive_caps=1 video_nr=5 card_label="Dummy Camera"
- This creates one device with a label "Dummy Camera" as device `/dev/video5
- See https://github.com/umlaeute/v4l2loopback/ for more detailts
- I have a short test video call
Speed1.avi
, this can be played streamed to/dev/video5
withffmpeg -re -stream_loop -1 -i Speed1.avi -vcodec rawvideo -pix_fmt yuv420p -f v4l2 /dev/video5
- The
-re -stream_loop -1
loops the video for ever.
- The
- Linux will now think th at
/dev/video5
is a webcam and other apps such as zoom will play nicely with it.
This example plays back the video from a BBC test stream
This doesn't work yet!
- Load the alsa loopback module
sudo modprobe snd_aloop
- This creates two devices, one for capture, the other for play back. You can see them via
aplay -L
ffmpeg -re -i London.mkv -map 0:v -vcodec rawvideo -pix_fmt yuv420p -f v4l2 /dev/video5 -map 0:a -f alsa hw:2,1