Comment on jellyfin freezes on TV every 2 minutes
container is mkv, codec says AVC
that surely is the issue. you can convert it to mp4 with ffmpeg: ffmpeg -i input.mkv -c copy output.mp4 If you want to keep subtitles this will probably work: ffmpeg -i input.mkv -map 0 -c copy -c:s mov_text output.mp4
ffmpeg -i input.mkv -c copy output.mp4
ffmpeg -i input.mkv -map 0 -c copy -c:s mov_text output.mp4
Out of curiosity, why would that be a problem?
in my case if I use mkv it starts transcoding and mp4 works fine on every device (desktop, android app, Chromecast, browser)
om1k@sopuli.xyz 10 months ago
that surely is the issue. you can convert it to mp4 with ffmpeg:
ffmpeg -i input.mkv -c copy output.mp4
If you want to keep subtitles this will probably work:ffmpeg -i input.mkv -map 0 -c copy -c:s mov_text output.mp4
momsi@lemmy.world 10 months ago
Out of curiosity, why would that be a problem?
om1k@sopuli.xyz 10 months ago
in my case if I use mkv it starts transcoding and mp4 works fine on every device (desktop, android app, Chromecast, browser)