I loaded my entire Plex movie library in to Jellyfin and at first everything was going great. Realized pretty quickly some files won’t play on my Apple TV. I tried multiple Jellyfin apps for ATV but I imagine the issue is the transcoding on the backend.

I understand mixing open source software like Jellyfin with closed source Apple products is a weird combo. But I’m not willing to ditch my Apple TV right now.

I confirmed the video files that weren’t playing via Jellyfin played no problem via Plex. Plex continues to make decisions that make me want to switch to Jellyfin, but it also seems Plex’s transcoding is better. Am I doing something obviously wrong?

Edit: Looks like Raspberry Pi 5 doesn’t pay nice with Jellyfin when it comes to hardware acceleration :(
https://jellyfin.org/docs/general/post-install/transcoding/hardware-acceleration/#raspberry-pi-hardware-acceleration-support-deprecation

    • moseschrute@lemmy.mlOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      21 hours ago

      I actually already purchased infuse. Same issues with playback so I guess that means it’s definitely on the backend. Apparently the Rasbury Pi version of Jellyfin no longer supports hardware acceleration. Anyway, sound like Infuse isn’t FOSS but I did appreciate that it’s a one time purchase and not a subscription.

    • SreudianFlip@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      0
      ·
      23 hours ago

      Infuse is not free. It’s not Open. Its devs are a bit obscure.

      But, hands down, it’s the best option for tvOS. It’s the only subscription I pay for.

      • harsh3466@lemmy.ml
        link
        fedilink
        English
        arrow-up
        0
        ·
        23 hours ago

        Yeah. It’d be great if it was open source, but it is what it is.

        When I was on apple stuff it was the only subscription I paid for as well.

  • priapus@piefed.social
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 day ago

    Whenever you try to play something that needs to be transcoded Jellyfin will save the ffmpeg log. That should hopefully give you the info you need.

    If the error isnt clear, share your hardware info and transcoding settings.

  • kindenough@kbin.earth
    link
    fedilink
    arrow-up
    0
    ·
    1 day ago

    I have Home Assistant + Music Assistant that integrates Jellyfin. Works well with our iPad’s to Denon Heos and such but I haven’t tested it on my Apple TV yet, it is collecting dust because it doesn’t do Stremio without having to fudge around.

  • Trimatrix@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 day ago

    What sort of video were you trying to play? Also you said you were running it through docker via CasaOS. Things to note, you need to pass your gpu into the container. Relatively simple. Then you got to make sure hardware acceleration is enabled. Make sure HDR to SDR tone mapping is correct.

  • horse@feddit.org
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 day ago

    In my honest opinion it’s not worth trying to get Jellyfin working if you plan to use an Apple TV as the client. The only client that is halfway decent for Apple TV is Swiftfin and it’s nowhere near as polished as Plex. The watched/unwatched indicators also don’t work currently (at least for me), which is a dealbreaker imo.

    I’m running Plex and Jellyfin side by side. The only thing I’d use Jellyfin for is remote streaming. It’s a shame, because I really want to switch to Jellyfin, but it’s just not working for me because Apple TV support is so bad.

  • dalakkin@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    1 day ago

    Edit; oops, I thought you talked about both Apple and Android, I’m so used to ATV being Android tv. I might leave the comment anyway if it helps someone else.

    For Android tv, if using the official app, I would recommend downloading “Just (Video) Player” and then configuring the Jellyfin app to use external player. On my Shield the videos play much better without transcoding

  • HumanPerson@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    1 day ago

    Plex’s transcoding may be better, but jellyfin’s will work fine once you get the settings dialed in. A bit more info would be helpful, mainly: What kind of jellyfin install (docker, native package manager, podman)? What video codec is the file? Are you using hardware transcoding, and if so, what hardware?

    • moseschrute@lemmy.mlOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      1 day ago

      Docker (via CasaOS) running on a rasbury pi 5 with 16gb ram. Same exact hardware I’m running Plex on. I understand it’s not ideal hardware but I’m only looking for as good of performance as Plex.

        • moseschrute@lemmy.mlOP
          link
          fedilink
          English
          arrow-up
          0
          ·
          1 day ago

          I don’t, and you’re right that’s the first thing I should have done. I was hoping it was set and forget but I obviously have to dive a bit deeper. I guess I’m wondering before I invest a lot of time, is it possible to get an experience as good as Plex, or should I expect to hit a wall at some point? I’m happy to donate to Jellyfin devs and consider this a longer term investment but I hope it surpasses Plex.

      • MoonMelon@lemmy.ml
        link
        fedilink
        English
        arrow-up
        0
        ·
        edit-2
        18 hours ago

        I had a tricky time getting hardware encoding to work and it ultimately ended up being I needed to expose the GPU to the Docker container. The yaml config needed:

            devices:
              - /dev/dri/renderD128:/dev/dri/renderD128
              - /dev/dri/card0:/dev/dri/card0
        

        Note this was on a low-end Synology NAS with some sort of crappy intel GPU, but it actually works now, I was surprised. I only mention because before this I spent lots of time messing around with the Jellyfin settings and only the logs tipped me off. Jellyfin loves to fallback silently to CPU transcoding it seems, which I guess is good, but make troubleshooting unintuitive. Searching for log errors online gave me this solution.