I am having trouble figuring out how to determine if faststart is set on an MP4 video.
I understand that "moov atom" is the data that needs to be located at the beginning of the file for faststart to be enabled, instead of at the end of the file.
I specifically want to use ffmpeg or ffprobe to determine if it has been moved to the beginning or not already.
On a side note, I understand I can run the following command to move it from the end to the beginning (but I want to find out if it is already there):
ffmpeg -i infile.mp4 -map 0 -c:v copy -c:a copy -c:s copy -c:d copy -c:t copy -movflags +faststart outfile.mp4