Comment on jellyfin freezes on TV every 2 minutes
om1k@sopuli.xyz 10 months ago
you could double check the codec with mediainfo. also check it is mp4.
Comment on jellyfin freezes on TV every 2 minutes
om1k@sopuli.xyz 10 months ago
you could double check the codec with mediainfo. also check it is mp4.
momsi@lemmy.world 10 months ago
container is mkv, codec says AVC
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)