I was looking for the same. When I record part of a video with VLC's red button, some resulting mp4 videos played choppy.
Finally I used the fabulous
ffmpeg to easilly reindex them.
I saved a BAT file to Shell:sendto so I can reindex files by right clicking them (one by one) then SendTo->reindex.bat.
You'll have to install ffmpeg or search for it in your system. Use the correct path in the code.
(this obvious code moves original file to TEMP, copies it with ffmpeg to original path, then deletes it from temp)
Code: Select all
set tempo=%temp%\%~xn1
move %1 "%tempo%"
"path\to\ffmpeg\ffmpeg.exe" -i "%tempo%" -c copy %1
del "%tempo%
THANKS VLC's and ffmpeg's guys!!