5,710
edits
Changes
→capture
==C920==
===capturesoftware===
*boneCV - https://github.com/derekmolloy/boneCV/
===capturing===*capture 300 frames of H264 at 1920 x 1080 to output.raw:<syntaxhighlight lang="bash">capture -F -o -c 300 > output.raw</syntaxhighlight>*convert to mpg4:<syntaxhighlight lang="bash">raw2mpg4</syntaxhighlight>or<syntaxhighlight lang="bash">ffmpeg -f h264 -i output.raw -vcodec copy output.mp4</syntaxhighlight> ===formats===
<syntaxhighlight lang="bash">
v4l2-ctl --list-formats-ext
v4l2-ctl --set-fmt-video=width=960,height=720,pixelformat=1
</syntaxhighlight>
*
===streaming===
*RTP - http://derekmolloy.ie/streaming-video-using-rtp-on-the-beaglebone-black/