ビデオループバックデバイスを使用してWebカメラを偽造しますか?


16

Google+ハングアウトでウェブカメラのソースとしてループされたビデオクリップを使用したい。v4l2loopbackをインストールし、ビデオループバックデバイスを作成しました。しかし、ビデオフレームをデバイスに書き込む方法がわかりません。指定されたは次のとおりです。

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

そのため、gst-launchのマニュアルページを読んで、何が起こっているのかを理解しようとした後、私は弱々しい試みをしました。

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

その結果:

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.

私は、29.97 fps、320x240、およびmp4コンテナー(Youtubeから)でh264ビデオを使用しようとしているクリップです。

回答:


12

gst-launchマンページが、我々は最初のビデオをデコードする必要があることを教えてくれるし、そうするための最も簡単な方法は、このようなものです:

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

gst-launchルートとして実行する必要はなく、[location]相対的なものにすることもできます!


11

mplayerでv4l2loopbackを使用するだけです。

  1. ダウンロードして、
  2. コンパイル(makeおよびsu -c 'make install'
  3. でモジュールをロードしsu -c 'modprobe v4l2loopback'
  4. 次にexamples/yuv4mpeg_to_v4l2.c、v4l2loopbackソースフォルダーのファイルの1行を

    v.fmt.pix.pixelformat = V4L2_PIX_FMT_YUV420;
    

    v.fmt.pix.pixelformat = V4L2_PIX_FMT_YVU420;
    
  5. makeこのフォルダで行います。

  6. 次に、次のexamplesようなディレクトリから実行します。

    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
    

    ここmovie.mp4で、ビデオファイルの名前に置き換えます。そして/dev/video0、ループバックデバイスと交換します。

MPlayerは、あらゆるWebストリーム、あらゆる種類のビデオファイルなどを再生できます。ドイツのニュースサイトであるhttp://www.tagesschau.deのファイルを使用してテストしました。

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

この答えは、v.fmt.pix.pixelformat = V4L2_PIX_FMT_YVU420; まったく同じものに変更する必要はありませんか?
kkron 14年

2
@kkron:2行(前と後)を文字ごとに比較すると、違いがわかります。;-)ヒント:YUVおよびYVU。
エリック14年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.