View Single Post
  #2 (permalink)  
Old 8th April 2007
J7N's Avatar
J7N J7N is offline
Senior Member
BS.Player Power User
 
Join Date: Feb 2006
Location: Cyberspace
Posts: 762
Rep Power: 0
J7N is an unknown quantity at this point
Default Re: How to Check Video Integrity in Batch Mode?

I'd like to answer myself.

To verify video files, you can use ffmpeg.exe command line codec. You configure it to encode to none format to none output file. It will read the input and show some statistics, including concealed errors.

This is the commandline:
ffmpeg -v 5 -i MEDIAFILE.VOB -f null - 2> TEXTFILE.TXT

where MEDIAFILE.VOB equals the filename of the video to be checked (without spaces) and TEXTFILE.TXT is the output file with the statistics.
Reply With Quote
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20