2024-01-13, 11:10 PM
The other possibility is that the MKVs were not authored properly. I've seen issues with stuttering due to some issue with frame timestamps or something like that. I don't fully understand the low level details.
We can repackage all the streams in your MKV without having to re-encode.
Replace outputFile.mkv with whatever filename you want (don't overwrite the original).
We can repackage all the streams in your MKV without having to re-encode.
Code:
/usr/lib/jellyfin-ffmpeg/ffmpeg +genpts -i "/media/hdd/Anime/Tenchi Universe/[R2J-DarkDream] Tenchi Universe S01E06.mkv" -map 0:v -map 0:a -map 0:s -map_chapters 0 -c:v copy -c:a copy -c:s copy outputFile.mkv
Replace outputFile.mkv with whatever filename you want (don't overwrite the original).