The commandline used is
Code: Select all
ffmpeg -ss 600 -i file:"input.mkv" -threads 0 -vframes 1 -filter:v select='eq(pict_type,I)' -vf "scale=iw*sar:ih, scale=600:-1" -f image2 -y "testimage.jpg"
Re-encoding the video with ffmpeg with a codec copy will also produce failure at some point as well
ffmpeg -i file:"input.mkv" -threads 0 -c copy "output.mkv"
Using ffmpeg builds from http://ffmpeg.zeranoe.com/builds/
Running the files through mkvmerge appears to fix the issue (I believe it is rewriting the indexes).
Is there a possibility that this can be fixed?
Thanks.
-ebr