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…

    • @momsiOP
      link
      English
      211 months ago

      container is mkv, codec says AVC

      • @[email protected]
        link
        fedilink
        English
        111 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

        • @momsiOP
          link
          English
          311 months ago

          Out of curiosity, why would that be a problem?

          • @[email protected]
            link
            fedilink
            English
            111 months ago

            in my case if I use mkv it starts transcoding and mp4 works fine on every device (desktop, android app, Chromecast, browser)