<style include="foundation5-styles"></style>
<style include="normalized-styles"></style>
# Stream 10s of video to a file from mxuvc
sudo mxuvc stream --time 10 --vout1=input.h264 --stats
# Stream indefinitely to a file from mxuvc
sudo mxuvc stream --vout1=input.h264 --stats
# Convert raw geo stream h264 to fragmented mp4 (1 frame per box!)
ffmpeg -r "30" -i test.h264 -acodec copy -vcodec copy -f mp4 -frag_size 1 -movflags frag_keyframe+empty_moov output2.mp4
# Trim the preceeding P frames from a raw geo h264 stream so that the SPS/PPS frames are the first!
ffmpeg -re -i input.h264 -acodec copy -vcodec copy -f h264 output.h264
# Tool for analyzing h264 frames
https://github.com/shi-yan/H264Naked
# Tool for analyzing mp4 segments
http://download.tsi.telecom-paristech.fr/gpac/mp4box.js/filereader.html