2025-03-27, 01:08 PM
Are you certain the problem files are also direct playing on other devices? What you are describing usually indicates that there is something wrong with the MKV container. Though the video and audio are usually fine.
What you can try is remuxing the file to repair any issues with the MKV container.
If you are running Windows I can provide a Windows version. If you are using docker, you can open a bash shell into the container to run that command.
What you can try is remuxing the file to repair any issues with the MKV container.
Code:
/usr/lib/jellyfin-ffmpeg/ffmpeg -fflags +genpts+igndts -i "/path/to/problem/video.mkv" -map 0 -codec copy -max_muxing_queue_size 2048 -max_interleave_delta 0 -avoid_negative_ts disabled newFile.mkv
If you are running Windows I can provide a Windows version. If you are using docker, you can open a bash shell into the container to run that command.