Using desktop as fake webcam on linux

49

32

I want to make a live stream of (a window on) my linux desktop using a free streaming site, using the captured video as a fake webcam. There are many tools for this on windows. ffmpeg allows me to capture input on a specific window, but I can't find a way to output the video to a fake webcam-style device usable by flash.

Can anyone recommend a method (or software) for doing this?

bkconrad

Posted 2012-04-13T03:00:02.927

Reputation: 611

It was all hunky-dory right up until you said "fake webcam-style device usable by flash". – Ignacio Vazquez-Abrams – 2012-04-13T03:05:06.803

I'm not sure what you mean? By "webcam-style" device I meant something like a fake /dev/videoN device file, or something similar. I assume this is how the captured video would be usable by flash. – bkconrad – 2012-04-13T03:07:05.430

Exactly. That's hard. – Ignacio Vazquez-Abrams – 2012-04-13T03:08:08.347

Answers

53

You can install v4l2loopback. It is a kernel module that simulates a webcam. Load it with:

modprobe v4l2loopback

Then you need to send the video stream to the device /dev/video0 using a program like ffmpeg. In order to capture the desktop and forward it to /dev/video0 with ffmpeg, you can use the following command line:

ffmpeg -f x11grab -r 15 -s 1280x720 -i :0.0+0,0 -vcodec rawvideo -pix_fmt yuv420p -threads 0 -f v4l2 /dev/video0

Change the value of -r from 15 to something else if you want a different frame rate. The resolution is chosen in the -s parameter. If you want to specify an offset from the upper-left corner of the screen, pass it in the -i parameter in the form "-i :0.0+x,y", where x and y are the horizontal and vertical offset respectively.

Víctor Fernández

Posted 2012-04-13T03:00:02.927

Reputation: 631

5Your image may be mirrored, I mean get horizontal flip depending on your ffmpeg build. Use video filter -vf hflip. If you already use one vf, put them inside quotes and separed by comma, such as -vf 'hflip,scale=640:360'. – Marcelo Teixeira Ruggeri – 2015-07-29T18:40:13.587

Although memory and cpu usage seems to be very tiny, this method puts my PC on slug mode. Any idea why? – nicooga – 2015-12-28T20:58:27.263

3I'm getting a few errors with this [x11grab @ 0x24013c0] Stream #0: not enough frames to estimate rate; consider increasing probesize, [v4l2 @ 0x2409520] ioctl(VIDIOC_G_FMT): Invalid argument, and Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument – Lotus – 2016-08-02T03:14:57.297

1I am getting the exact same outputs as @Lotus with ffmpeg 3.1.4. Are there any special codecs or packages requiered beside v4l2loopback and ffmpeg? – cguenther – 2016-10-06T09:37:26.210

2@Lotus I managed to get around the problem, when i use another /dev/video device. You should ensure to use the v4l2 video device (which is in my case the /dev/video1). The offset can be caused by an already existing real webcam device using the /dev/video0. – cguenther – 2016-10-06T09:49:04.230

@cguenther So now it starts and I don't have an error. Thanks! It doesn't, however, give me a device I can select in Google Chrome nor does it produce an output file. – Lotus – 2016-10-07T07:54:24.913

2@Lotus Make sure that the modprobe command (as root or with sudo) has been run before you start your chrome browser. Check that the module is loaded correctly with <code>lsmod | grep v4l2loopback</code>. – cguenther – 2016-10-20T08:08:32.353

1Another handy tip: if you get stuck with an app that won't let you change video sources, just sudo mv /dev/video0 /dev/video10 && sudo mv /dev/video1 /dev/video0 where /dev/video1 is your v412 loopback. – Jonny Asmar – 2017-12-21T19:10:22.093

7

Use v4l2loopback with mplayer.

  1. Download it,
  2. compile it (make and su -c 'make install'),
  3. load the module with su -c 'modprobe v4l2loopback',
  4. then change one line in the file examples/yuv4mpeg_to_v4l2.c of the v4l2loopback source folder from

    v.fmt.pix.pixelformat = V4L2_PIX_FMT_YUV420;
    

    to

    v.fmt.pix.pixelformat = V4L2_PIX_FMT_YVU420;
    
  5. and do make in this folder.

  6. Then run it from the examples directory like this:

    mkfifo /tmp/pipe  # only needed once, as long as you do not delete the file /tmp/pipe
    ./yuv4mpeg_to_v4l2 < /tmp/pipe &
    mplayer movie.mp4 -vf scale=480:360 -vo yuv4mpeg:file=/tmp/pipe
    

    where you replace movie.mp4 with the name of your video file. And replace /dev/video0 with your loopback device.

MPlayer is able to play any webstreams, all kind of video files, even from stdin! I just tested it with a file from http://www.tagesschau.de which is a german news site.

TS=$(wget "http://www.tagesschau.de/multimedia/video/" -q -O - | grep --regexp='http.*\.webm"' | sed -e 's%.*href="%%' -e 's%\.webm".*%\.webm%')
./yuv4mpeg_to_v4l2 < /tmp/pipe &
mplayer $TS -vf scale=480:360 -vo yuv4mpeg:file=/tmp/pipe

Instead of the $TS you could put a - (which stands for stdin). And in front of mplayer your ffmpeg command redirecting its output to stdout. So something like:

./yuv4mpeg_to_v4l2 < /tmp/pipe &
fmpeg -someOptions ... -o - | mplayer - -vf scale=480:360 -vo yuv4mpeg:file=/tmp/pipe

Did not test the last one, because you did not tell how your ffmpeg command look like.

erik

Posted 2012-04-13T03:00:02.927

Reputation: 1 519

Please help: ./yuv4mpeg_to_v4l2 < /dev/video0 & leads to ./yuv4mpeg_to_v4l2: : missing YUV4MPEG2 header. How to replace /tmp/pipe by /dev/video0 ? – user123456 – 2016-10-17T01:41:21.563

3

What distro are you using? I've had success with WebCamStudio under Arch combined with the Livestream web-based "studio." It's been a little while since I've used it, though.

http://www.ws4gl.org/

What are you trying to do exactly? ffmpeg compiled with x11grab can record the desktop. I've had limited success pushing that to Ustream, but again it's been a while and I think what I was doing won't work anymore.

If you just want to stream a file rather than your desktop (I'm thinking when you say, "A window," you mean, "VLC"), I can point you in the right direction to get that working with Livestream (maybe Ustream). I'm clumsily figuring out how to do this through experimentation. It's not fantastic but it works with Livestream.

Justin.tv has scripts that can stream from VLC to their service, as well.

http://apiwiki.justin.tv/mediawiki/index.php/Linux_Broadcasting_API

user128108

Posted 2012-04-13T03:00:02.927

Reputation:

http://www.ws4gl.org/ website seems very outdated, and all links point to the Wayback Machine. I suppose the latest version is available at https://sourceforge.net/projects/webcamstudio/ – Denilson Sá Maia – 2016-02-12T15:18:47.137

"WEBCAMSTUDIO IS NO MORE MAINTAINED" :/ – Raphael – 2016-09-05T13:00:06.460

Oh wow this is very interesting. I'm trying to stream live gameplay of some games. I already know how to capture into a video file from ffmpeg, I wonder if I can open that same file in vlc and somehow stream it as it's being written. Thanks for the info. – bkconrad – 2012-04-13T15:28:58.573

2

First, appear.in probably does what you want without any hassle (I'm not affiliated): http://appear.in/

Second, you can stream to Twitch or other services using OBS, which recently added linux support(!): https://obsproject.com/

OBS also solves the much harder problem of muxing system sound and audio input while screen capturing on Ubuntu (not solved by anything in the universe repo that I've found so far).

I don't have any awesome unix-y solutions. But those worked for me in the real world.

bkconrad

Posted 2012-04-13T03:00:02.927

Reputation: 611

OBS Studio on Debian: https://tracker.debian.org/pkg/obs-studio

– myrdd – 2019-05-27T19:44:50.417