Estou tentando fazer um gravador de vídeo para capturar vídeos dos ataques de meus parceiros para o médico dela.
Por serem imprevisíveis, o sistema precisa estar gravando constantemente, economizando clipes de 15 minutos, por exemplo.
O sistema é realmente debian, mas acho que esse é um lugar tão bom quanto qualquer outro.
Eu tenho vídeo bruto no h264 a partir de cores e sons de um microfone USB.
O Raspivid está funcionando e o microfone USB está capturando o som quando eu testei com o arecord, entretanto quaisquer arquivos que eu tenha com o avconv não são reproduzidos, eles simplesmente exibem um quadro quando abertos e depois terminam.
raspivid -t 10000 -rot 270 -w 1280 -h 720 -b 3500000 -fps 30 -n -o - |
avconv -y -ac 2 -f alsa -ar 16000 -i plughw:1 -r 30 -i pipe:0 -filter_complex asyncts=compensate=1
-c:a ac3 -c:v copy -t 300 file%04d.mkv
Informação adicional:
pi@raspberrypi:~ $ raspivid -t 10000 -rot 270 -w 1280 -h 720 -b 3500000 -fps 30 -n -o - | ffmpeg -f alsa -i plughw:1 -i pipe:0 -codec copy -f segment -segment_time 900 file%04d.mkv
ffmpeg version N-82665-gbda6f29 Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 4.9.2 (Raspbian 4.9.2-10)
configuration: --pkg-config-flags=--static --extra-cflags='-fPIC -I/root/ffmpeg_build/include' --extra-ldflags=-L/root/ffmpeg_build/lib --enable-gpl --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-nonfree --enable-pic --extra-ldexeflags=-pie --enable-shared
libavutil 55. 41.101 / 55. 41.101
libavcodec 57. 66.108 / 57. 66.108
libavformat 57. 58.101 / 57. 58.101
libavdevice 57. 2.100 / 57. 2.100
libavfilter 6. 67.100 / 6. 67.100
libswscale 4. 3.101 / 4. 3.101
libswresample 2. 4.100 / 2. 4.100
libpostproc 54. 2.100 / 54. 2.100
Guessed Channel Layout for Input Stream #0.0 : stereo
Input #0, alsa, from 'plughw:1':
Duration: N/A, start: 1480449777.042259, bitrate: 1536 kb/s
Stream #0:0: Audio: pcm_s16le, 48000 Hz, stereo, s16, 1536 kb/s
Input #1, h264, from 'pipe:0':
Duration: N/A, bitrate: N/A
Stream #1:0: Video: h264 (High), yuv420p(progressive), 1280x720, 25 fps, 25 tbr, 1200k tbn, 50 tbc
Output #0, segment, to 'file%04d.mkv':
Metadata:
encoder : Lavf57.58.101
Stream #0:0: Video: h264 (High), yuv420p(progressive), 1280x720, q=2-31, 25 fps, 25 tbr, 1k tbn, 25 tbc
Stream #0:1: Audio: pcm_s16le, 48000 Hz, stereo, s16, 1536 kb/s
Stream mapping:
Stream #1:0 -> #0:0 (copy)
Stream #0:0 -> #0:1 (copy)
[alsa @ 0x80e062f0] ALSA buffer xrun.
[segment @ 0x80e8de90] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
[h264 @ 0x80e17620] Thread message queue blocking; consider raising the thread_queue_size option (current value: 8)
[alsa @ 0x80e062f0] Thread message queue blocking; consider raising the thread_queue_size option (current value: 8)
[alsa @ 0x80e062f0] ALSA buffer xrun.ime=00:04:40.88 bitrate=N/A speed=1.01x
[alsa @ 0x80e062f0] ALSA buffer xrun.ime=00:04:45.77 bitrate=N/A speed=1.01x
[alsa @ 0x80e062f0] ALSA buffer xrun.ime=00:04:50.28 bitrate=N/A speed=1.01x
[alsa @ 0x80e062f0] ALSA buffer xrun.ime=00:04:55.84 bitrate=N/A speed=1.01x
[alsa @ 0x80e062f0] ALSA buffer xrun.ime=00:17:48.47 bitrate=N/A speed= 1x
Isso continua indefinidamente.
Eu obtive um arquivo dele, depois de tentar diferentes combinações de teclas para finalizar o comando, que terminou algum tempo depois que eu desisti, o arquivo resultante era 10s de vídeo e depois vários minutos do último quadro com áudio contínuo.