Reputation: 151
I have a problem with incomplete videos. For instance a video whose upload failed. If you check its metadata with ffmpeg -i <filename>
you will get a duration like 1 hour but actually only 10mb have been uploaded to the server and the real duration is somewere at 7 minutes. An ugly way to find these videos would be to convert every video and compare the duration output of the converted video with the duration of the original video. Since this approach is way too CPU costly I would like to simply recalculate the duration with FFmpeg.
Is there any command or a good software for that?
Upvotes: 1
Views: 10475
Reputation: 38908
A couple of ideas and approaches:
Upvotes: 1