[FFmpeg-devel] [PATCH] qt-faststart: Add mode for probing faststart-ness
Gyan Doshi
gyandoshi at gmail.com
Fri Jul 27 17:24:02 EEST 2018
On 27-07-2018 07:36 PM, Tomas Härdin wrote:
> This is something the PeerTube guys need, and this seemed a
> straightforward enough approach. Feedback appreciated
Not a patch review, just a note that one can do this with ffmpeg/ffprobe
and basic *nix tools.
To check for moof,
ffmpeg -i in.mp4 -v 56 2>&1 | grep -e type:'moof'
To see if moov precedes mdat
ffmpeg -i in.mp4 -v 56 2>&1 | grep -e "type:'moov'" -e
"type:'mdat'" | head -1 | grep moov
Gyan
More information about the ffmpeg-devel
mailing list