2024-03-30, 05:00 PM
Perfect. The problem is most likely with the file itself. There is a command you can run on the server to "repackage" the file without re-encoding. Poorly authored MKVs can cause issues like what you are describing and repackaging the file resolves it.
The paths are assuming your server is on Linux.
Code:
/usr/lib/jellyfin-ffmpeg/ffmpeg -fflags genpts -i "/path/to/video.mkv" -map 0:v -map 0:a -map 0:s -map_chapters 0 -c:v copy -c:a copy -c:s copy outputFile.mkv
The paths are assuming your server is on Linux.