¿Falsifica una cámara web con un dispositivo de video loopback?

16

Quiero usar un videoclip en bucle como fuente de mi cámara web en un Hangout de Google+. Instalé v4l2loopback y creé un dispositivo de video loopback . Pero no he descubierto cómo escribir los cuadros de video en el dispositivo. El ejemplo dado es:

gst-launch videotestsrc ! v4l2sink device=/dev/video1

Entonces, después de leer la página del manual para gst-launch e intentar comprender lo que estaba sucediendo, hice mi débil intento:

sudo gst-launch-0.10 filesrc location=/home/briankb/Videos/darthvaderdancing.mp4 ! v4l2sink device=/dev/video0

Lo que resultó en:

Setting pipeline to PAUSED ...
libv4l2: error getting pixformat: Invalid argument
Pipeline is PREROLLING ...
Pipeline is PREROLLED ...
Setting pipeline to PLAYING ...

(gst-launch-0.10:12622): GStreamer-CRITICAL **: gst_caps_get_structure: assertion `GST_IS_CAPS (caps)' failed
New clock: GstSystemClock

(gst-launch-0.10:12622): GStreamer-CRITICAL **: gst_structure_get_name: assertion `structure != NULL' failed
Caught SIGSEGV accessing address (nil)
#0  0x00007fc1890f0b03 in poll () from /lib/x86_64-linux-gnu/libc.so.6
#1  0x00007fc18962bff6 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x00007fc18962c45a in g_main_loop_run ()
#3  0x00007fc189b5c4cb in gst_bus_poll ()
#4  0x0000000000404587 in ?? ()
#5  0x0000000000403c34 in ?? ()
#6  0x00007fc18902b76d in __libc_start_main ()
#7  0x00000000004043bd in ?? ()
#8  0x00007fff88253ed8 in ?? ()
#9  0x000000000000001c in ?? ()
#10 0x0000000000000006 in ?? ()
#11 0x00007fff882548c4 in ?? ()
#12 0x00007fff882548d4 in ?? ()
#13 0x00007fff882548dc in ?? ()
#14 0x00007fff88254904 in ?? ()
#15 0x00007fff88254906 in ?? ()
#16 0x00007fff8825490f in ?? ()
#17 0x0000000000000000 in ?? ()
Spinning.  Please run 'gdb gst-launch 12622' to continue debugging, Ctrl-C to quit, or Ctrl-\ to dump core.

El clip que estoy tratando de usar es un video h264 a 29.97 fps, 320x240 y en un contenedor mp4 (es de Youtube).

isuldor
fuente

Respuestas:

12

Las gst-launchpáginas de manual nos dicen que primero debemos decodificar el video, y la forma más fácil de hacerlo es así:

gst-launch-0.10 filesrc location=[location] ! decodebin ! v4l2sink device=/dev/video0

gst-launchno necesita ejecutarse como root, ¡y también [location]puede ser relativo!

小 太郎
fuente
11

Simplemente use v4l2loopback con mplayer .

  1. Descargalo,
  2. compilarlo ( makey su -c 'make install'),
  3. cargar el módulo con su -c 'modprobe v4l2loopback',
  4. luego cambie una línea en el archivo examples/yuv4mpeg_to_v4l2.cde la carpeta de origen v4l2loopback de

    v.fmt.pix.pixelformat = V4L2_PIX_FMT_YUV420;
    

    a

    v.fmt.pix.pixelformat = V4L2_PIX_FMT_YVU420;
    
  5. y hacer makeen esta carpeta.

  6. Luego ejecútelo desde el examplesdirectorio así:

    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
    

    donde reemplazas movie.mp4con el nombre de tu archivo de video. Y reemplace /dev/video0con su dispositivo de bucle invertido.

MPlayer puede reproducir cualquier transmisión web, todo tipo de archivos de video, etc. Lo acabo de probar con un archivo de http://www.tagesschau.de que es un sitio de noticias alemán.

TS=$(wget 'http://www.tagesschau.de'$(wget http://www.tagesschau.de -q -O - | grep 'Letzte Sendung' | sed -e 's%.*href="%%' -e 's%".*%%') -q -O - | grep '\.webm\.webm' | sed -e 's%.*href="%%' -e 's%\.webm\.webm".*%.webm.webm%')
./yuv4mpeg_to_v4l2 < /tmp/pipe &
mplayer $TS -vf scale=480:360 -vo yuv4mpeg:file=/tmp/pipe
erik
fuente
Esta respuesta dice cambiar v.fmt.pix.pixelformat = V4L2_PIX_FMT_YVU420; exactamente lo mismo, ¿eso significa que no es necesario ningún cambio?
kkron
2
@kkron: compare las dos líneas (antes y después) carácter por carácter, y notará la diferencia. ;-) Sugerencia: YUV y YVU.
erik