zerowalker
3rd December 2013, 11:43
Is there a way to scan a video file for errors?
When i say errors i mean like, missing stuff, glaps etc, that can occur from example if you download a file incomplete and such?
I made a script with ffmpeg after reading around but not even sure what it does.
for %%a in ("*.mp4*") do ffmpeg -v error -i "%%a" -f null - 2> "%%a".log
I am not trying to detect anything special, just if the file is incomplete. As playing through looking for it hand by hand isnīt really an option.
When i say errors i mean like, missing stuff, glaps etc, that can occur from example if you download a file incomplete and such?
I made a script with ffmpeg after reading around but not even sure what it does.
for %%a in ("*.mp4*") do ffmpeg -v error -i "%%a" -f null - 2> "%%a".log
I am not trying to detect anything special, just if the file is incomplete. As playing through looking for it hand by hand isnīt really an option.