this post was submitted on 19 May 2026
363 points (98.4% liked)

Technology

84796 readers
4097 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Appoxo@lemmy.dbzer0.com 2 points 12 hours ago (1 children)

Dispatcharr is pretty neat for m3u streams.
Working great with jellyfin

[–] ITGuyLevi@programming.dev 1 points 11 hours ago (1 children)

Nice! I'm giving it a go with some dumb free m3u's now and so far it's been pretty great. I haven't tied it into Jellyfin or Plex yet but one I decide on a decent iptv provider it'll be happening.

[–] Appoxo@lemmy.dbzer0.com 2 points 5 hours ago* (last edited 5 hours ago)

Had some issues with streams not loading in Jellyfin.
I needed to set up a user-agent and streaming-profile like this:
User-Agent: Lavf/61.9.107
Streaming profile:
-> command: ffmpeg
-> parameters: -http_persistent 0 -extension_picky 0 -i {streamUrl} -c:v copy -c:a copy -fflags +genpts+discardcorrupt -b:v 4M -maxrate 4M -bufsize 8M -f mpegts pipe:1

This is (still depending on your m3u source) to avoid most of the transcoding or double transcoding of the streams :)

The dispatcharr page is mostly self-explanatory but had some issues with the m3u and epg.
Make sure to properly align your streams with the epg guide you are pulling.
Do all (M3U and EPG XMLTV) through dispatcharr
Provide these to Jellyfin:
M3U: http://dispatcharr:9191/output/m3u/ActiveChannels
XML EPG: http://dispatcharr:9191/output/epg/ActiveChannels?tvg_id_source=tvg_id

(Notice: I am using docker. I also set up a group for channels so I can de-/activate channels however I please without deleting and recreating them constantly.)