2024-08-11, 04:08 PM
(This post was last modified: 2024-08-11, 04:45 PM by theguymadmax. Edited 1 time in total.)
Jellyfin has a bug that prevents it from playing MP4 files with embedded DVDSusb subtitles. This issue has been reported several times on the forum, and I'll probably file a bug report on GitHub.
In the meantime, you can work around this problem by removing the subtitles from your MP4 file. Use the following command to process the file:
Alternatively, you could convert the file to an MKV container, which would allow you to retain the subtitle tracks.
In the meantime, you can work around this problem by removing the subtitles from your MP4 file. Use the following command to process the file:
Code:
/usr/lib/jellyfin-ffmpeg -i /path/to/input/video.mp4 -c:v copy -c:a copy -sn /path/to/output/video.mp4
Alternatively, you could convert the file to an MKV container, which would allow you to retain the subtitle tracks.
Code:
/usr/lib/jellyfin-ffmpeg -i /path/to/input/video.mp4 -c copy /path/to/output/video.mkv