Hi, as the title says, when streaming to the jellyfin app an a fire TV, the video freezes every two minutes. This happens when direct streaming, so it shouldn’t be a transcoding issue. Useing the website it works just fine. Any idea how I can find out what this is?
Edit: I just noticed, when forcing transcoding by limiting the quality (Bitrate) on the client to lower values, it does not freeze…
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don’t control.
Rules:
Be civil: we’re here to support and learn from one another. Insults won’t be tolerated. Flame wars are frowned upon.
No spam posting.
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it’s not obvious why your post topic revolves around selfhosting, please include details to make it clear.
Don’t duplicate the full text of your blog or github here. Just post the link for folks to click.
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
No trolling.
Resources:
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
you could double check the codec with mediainfo. also check it is mp4.
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
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)