• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Troubleshooting Need Help with Setting Up Live TV using Cabernet on Jellyfin

    Pages (2): 1 2 Next »

     
    • 0 Vote(s) - 0 Average

    Need Help with Setting Up Live TV using Cabernet on Jellyfin

    Elle221LL
    Offline

    Junior Member

    Posts: 1
    Threads: 1
    Joined: 2023 Dec
    Reputation: 0
    #1
    2023-12-03, 05:24 PM
    Hey all,
    I'm quite new to setting up live TV and I'm trying to get it working with Cabernet in Jellyfin. Cabernet is a tool for controlling IPTV streams and works with plugins like DaddyLive, Pluto TV, XUMO, and supports M3U/XMLTV.XML files (useful for SamsungTV, STIRR, DistroTV, Plex TV, etc.).
    I followed the Docker setup steps from their GitHub (https://github.com/cabernetwork/cabernet) but I'm hitting some snags. Here's my progress:
    Docker Compose Setup: Did this part successfully:
    version: '3'
    services:
      cabernet:
        image: ghcr.io/cabernetwork/cabernet:latest
        ports:
          - "6077:6077"
        volumes:
          - /mnt/portainer/cabernetworkConfused-faceapp/data

    Got it up at http://192.168.0.101:6077/
    Plugin Installation: Installed DaddyLive from the plugins section.
    Enabling Stream Providers: Turned it on and saved the changes.
    Restarting via Web Interface: Restarted Cabernet through its web interface.

    Next, in Jellyfin:
    Tried to add an M3U tuner in Live TV.
    Entered URL: http://192.168.0.101:6077
    Now, I'm stuck with this error:
    "Alert: There was an error saving the TV provider. Please ensure it is accessible and try again."

    I even checked out this Reddit post (https://www.reddit.com/r/selfhosted/comments/17pq1ku/how_is_everyone_doing_livetv_self_hosted_in_2023/) hoping to find some guidance on setting it up correctly, but no luck. Most discussions don't get into the nitty-gritty of setup.

    As someone completely new to live TV setups, I'm at a bit of a loss. Any advice, tips, or step-by-step guidance would be really appreciated.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #2
    2023-12-03, 05:58 PM
    We would need to see your logs, assuming this is a Jellyfin problem.

    Honestly, you might have better luck on TVHeadEnd's forum.

    https://github.com/cabernetwork/cabernet#6-forum
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    topnomi
    Offline

    Junior Member

    Posts: 2
    Threads: 0
    Joined: 2023 Jul
    Reputation: 0
    Country:United States
    #3
    2023-12-04, 02:29 AM
    the containers don't see the host at it's lan ip address, they see it in a separate docker network, and you cannot assume what address they will use. If you set a container name in the compose, you can use that name as a hostname to connect to each other.
    SilveryAbaba
    Offline

    Junior Member

    Posts: 11
    Threads: 3
    Joined: 2024 Jan
    Reputation: 0
    #4
    2024-11-04, 08:32 PM
    (2023-12-04, 02:29 AM)topnomi Wrote: the containers don't see the host at it's lan ip address, they see it in a separate docker network, and you cannot assume what address they will use.  If you set a container name in the compose, you can use that name as a hostname to connect to each other.

    I just got mine set up like that (imgur link)

    but then every time my server restarts I'll have to manually reinput the docker ip for cabernet (172.18.0.4 here). Is there a way to input this automatically?
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #5
    2024-11-04, 09:40 PM
    Does Jellyfin start before cabernet?
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    SilveryAbaba
    Offline

    Junior Member

    Posts: 11
    Threads: 3
    Joined: 2024 Jan
    Reputation: 0
    #6
    2024-11-05, 04:11 PM
    (2024-11-04, 09:40 PM)TheDreadPirate Wrote: Does Jellyfin start before cabernet?

    Currently there is not a specific order, besides Jellyfin depending on caddy, so it may start after cabernet? I wouldn't mind changing the order if that could help.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #7
    2024-11-05, 05:28 PM
    You could add cabernet as a depends_on for Jellyfin. To ensure it is up before Jellyfin starts. I'm ASSUMING the issue is that Jellyfin starts before cabernet.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    SilveryAbaba
    Offline

    Junior Member

    Posts: 11
    Threads: 3
    Joined: 2024 Jan
    Reputation: 0
    #8
    2024-11-06, 12:49 PM
    (2024-11-05, 05:28 PM)TheDreadPirate Wrote: You could add cabernet as a depends_on for Jellyfin.  To ensure it is up before Jellyfin starts.  I'm ASSUMING the issue is that Jellyfin starts before cabernet.

    I added it as a depends_on yesterday, and when docker started today the ip addresses did their normal roll up, while jellyfin retained the old IP's so behavior did not change.
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,375
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #9
    2024-11-06, 02:20 PM
    Can you share your full jellyfin log via pastebin?
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    SilveryAbaba
    Offline

    Junior Member

    Posts: 11
    Threads: 3
    Joined: 2024 Jan
    Reputation: 0
    #10
    2024-11-06, 08:05 PM
    (2024-11-06, 02:20 PM)TheDreadPirate Wrote: Can you share your full jellyfin log via pastebin?

    Sure, I had to trim a LOT because it was exceeding pastebin's limit. It seemed like a bunch of repeat items though so I hope you see something pertinent there.
    https://pastebin.com/75mwGfxN
    Pages (2): 1 2 Next »

    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode