6

I have a file that when I run ffpmeg -i on it will display a time of 351909:41:29.64.

I know I didn't record for 40 + years. Any suggestions on what would be the best way to fix this?

I appreciate any and all answers!

Regards,

Ron
  • 61

1 Answers1

9

There is an old related bug report, marked as fixed. about this: Incorrect duration displayed in webm file. This seems to be related to the fact that a webm file doesn't contain an index of all frames, but only keyframes.

First option is to rewrap the WebM

ffmpeg -i current.webm -c copy -fflags +genpts new.webm
Gyan
  • 38,955