Channel Collections to m3u

I abandoned the collections to m3u approach a few months after I posted. Over time, it was too much effort to keep everything in sync. I don't have that code because it morphed into the system I setup afterward. I decided I wanted each user to have their own server and I wanted all channels grouped in a specific order. Where I have Pluto (and the endless channels), I wanted the user machine to only have the channels from each source that anyone in the house would watch. (turns out that's about 160 channels across all sources). Each user can administer and remove or favorites their own channels in the web admin. Each user creates their own collections if they want.

I have a "primary" channels server setup and all it does is act a the TVE tuner for my setup. It's barely configured except for the TVE source. All of the channels servers are in docker containers. Pluto, FrndlyTV and Fubo are as well.

The common element across all user channels dvrs are the m3u files that define all of the sources. They only contain possible channels and the channels are numbered with a particular schema.

The software is now a set of python functions that take a lot of the work out of the process. It's a commitment. Quick and dirty version can be done in an hour if you understand python and some basics. sqlite3 database is used and it is how I manage data post collecting the data to build out m3u files. A high quality set of m3u builds is more in the 6 hours. The number of "duplicates"/duplicates is often not obvious due to naming inconsistencies between sources. Once the data is normalize, it's all very easy. A little different the the original but you're welcome to it.

Thanks for getting back to me on this. Based on your explanation of what you have going now, I don't think it's a fit with what I'm doing in the OliveTin-for-Channels project. Mostly what I had in mind, is to add a Channels Collection option to the M3U generator I created as an OliveTin Action. I was hoping there'd either be an undocumented endpoint in the API, or a reasonably simple script to filter for a given collection.

The endpoint for collections:

http://x.x.x.x:8089/dvr/collections/channels

Thanks! Any tips or tricks on turning that into an M3U?

lol. there is the problem. in order to create the m3u you still need the source data to build out the m3u. after completing this it became apparent that this approach wasn't going to work long term. I'm sure there are ways to make this work by code, but the quality of the m3u would be questionable.

http://x.x.x.x:8090/devices/ANY/channels.m3u?format=ts

the endpoint to generate the m3u could be joined with the endpoint for collections to stitch the two together, but I couldn't get past NOT normalizing the data to get the features and quality I wanted.

@mike_here So I'm doing a bit of experimenting to see if there's any reasonable approach to this. I used the following to extract the channel identifiers from the collections endpoint:

curl http://media-server6:8089/dvr/collections/channels | jq -r '.[] | select(.name == "Up-n-Away") | .items[]'

Which resulting in the following output:

virtual-2
virtual-3
virtual-5
2.1
8
11.1
9.10
12
5.1
abc
5.25.3
5.6
9.1
fox
10
4.1
cbs
4.2
frndly-55
cc
vh1
cmt
tvland
paramount
cnn
cnni
tbs
tbsp
tnt
tntp
tru
trup
tcm
aetv
history
lifetime
msnbc
242
244
bravop
fx
fxp
fxx
fxxp
fxm
sundance
amc
557
bbca
ifc
hallmark
hallmarkmm
frndly-3
discovery
hgtv
tlc
travel
diy
ahc
disney
disneyp
freeform
freeformp
espn1
espn2
espnu
espnews
sec
acc
olympics
212
213
215
216
217
samsung-USBC600001QL
218
fs1
fs2
cbssports
btn
501
502
504
505
503
506
507
509
samsung-USBB3200012D6
samsung-USBB3500002FL
samsung-USAJ3400020KC
samsung-USBC13000065U
samsung-USAJ26000054W
samsung-USBB19000017U
samsung-USBB3200015M8
samsung-USAK3508709A
pluto-5efbd39f8c4ce900075d7698
pluto-634dacf51d90320007fcd5fa
pluto-620bfa7df72827000703ddb1
pluto-5b68a18823ecb93393cba2f1
pluto-5efbd29e4aa26700076c0d06
pluto-62f54c11b3af68000702c304
pluto-62f54c6439183b000769fb8f
reboot
exit
5MAXHD
ACMAXHD
MAXHD
MAXHDP
SZEAHD
STZENHD
MGMHD
MGMDRHD
MGMHTH
MGMMRHD
MOMAXHD
MOVIEHD
OUTMAXHD
STRZCIH
STZCHD
STZEHD
STZHD
STZHDP
STRZIBH
STZKHD
THMAXHD
SHOWHD
SHOWHDP

Easy enough, but these values are not present in the M3U endpoint data, so I can't use that as a data source. Do you know if there's another endpoint I can use that contains these values, and hopefully the data I need to build a custom M3U containing just this collection?

I appreciate your help btw, I know you've gone in another direction -- but clearly you've been down this road before. :slight_smile:

You can query all your sources with /devices. It will show each device and all its channels. From there you can fetch what you need from the channel ID's that are returned in the collection. Then just write out the m3u yourself.

Here's the format for the stream for the channel:

http://$IP:$PORT/devices/$DEVICEID/channels/$CHANNEL_NUMBER/stream.mpg?format=ts

Thanks to useful input from @mike_here and @maddox, I've added the ability to generate an M3U based on a Channel Collection to OliveTin-for-Channels:

There's a new field in the M3U generator for the Collection name, which should be left set to "none" if you're not creating a collection-specific M3U:

You can either copy and paste the resulting M3U from Logs-stdout, or the .m3u can be found in the ./data directory found under whatever you have mapped to /config in your Docker Compose:

Lastly, if you'd like to simply "host" the file so it can be added by URL to another DVR, you can use static-file-server:

version: '3.9'
services:
  static-file-server:
    image: halverneus/static-file-server:${TAG}
    container_name: static-file-server
    dns_search: ${DOMAIN}
    ports:
      - 8080:8080
    environment:
      - FOLDER=${FOLDER}
    volumes:
      - ${HOST_DIR}/static-file-server:${FOLDER}
    restart: unless-stopped

Using environment variables similar to these:

TAG=latest
DOMAIN=tailxxxxx.ts.net
FOLDER=/web
HOST_DIR=/data
1 Like

@bnhf I finally got Olivetin for Channels going on my Unraid box and this is great! The Collections generator is working pretty well with most of the channels which my CC is sourcing from SLM and m3u4u links, but my Pluto and Plex channels are missing. The Plex source is also m3u4u, and Pluto is via Pluto-for-Channels. Any ideas as to why it would exclude them? They are not shown in the m3u and xml files output from O4C. The CDVR clients see them all just fine.

I'll have a look at the code tomorrow. I'm traveling without a computer until then.

1 Like

Thanks. No rush!

Just did a quick test by adding Pluto-for-Channels via Project One-Click, and then created a new Channel Collection containing two channels from the Pluto container called "Test". From there, I used the "Generate a Channels DVR M3U Playlist" Action in OliveTin, using the Test collection, and got the expected standard output:

M3U for Collection: Test
Source M3U used: http://media-server8:8089/devices/ANY/channels.m3u
Copy & Paste M3U from here or use: /config/data/media-server8-8089/Test.m3u
Optional access by URL at http://<host:port>/media-server8-8089/Test.m3u

#EXTM3U


#EXTINF:-1 channel-id="10295" tvg-id="10295" tvg-chno="10295" tvg-logo="https://images.pluto.tv/channels/636c2b3c55d2e700074105c4/colorLogoPNG.png" tvc-guide-stationid="636c2b3c55d2e700074105c4" tvg-name="PBS Antiques Roadshow",PBS Antiques Roadshow
http://media-server8:8089/devices/ANY/channels/10295/hls/master.m3u8?

#EXTINF:-1 channel-id="10296" tvg-id="10296" tvg-chno="10296" tvg-logo="https://images.pluto.tv/channels/5ce44810b421747ae467b7cd/colorLogoPNG.png" tvc-guide-stationid="5ce44810b421747ae467b7cd" tvg-name="Antiques Roadshow UK",Antiques Roadshow UK
http://media-server8:8089/devices/ANY/channels/10296/hls/master.m3u8?

Can you give me additional details on what you're seeing, including the generated M3U?

Playing around with this feature in OliveTin. Pretty cool actually. One thing I noticed however, the guide data is not pulling through for Pluto channels:"

#EXTINF:-1 channel-id="doctor-who-classic" tvg-id="7596" tvg-chno="7596" tvg-logo="https://images.pluto.tv/channels/5ce4475cd43850831ca91ce7/colorLogoPNG.png" tvc-guide-stationid="doctor-who-classic" tvg-name="Doctor Who Classic" group-title="HD",Doctor Who Classic
http://192.168.0.2:8089/devices/ANY/channels/7596/hls/master.m3u8?

My Pluto is the docker pluto from Maddox I believe if that helps. Pretty sure it's user error, but this could make managing my TiviMate for sports only content a lot less headache (threadfin is good, but often times things get mucked up when a new channel pops up in one of my sources).

I'll work on getting that tomorrow when I'm back home. Like @jator , I'm using Pluto for Channels so its handling may be part of the issue.

Most likely the tvc-guide-stationid isn't a valid gracenote station id

Ah, I bet you're correct....

@Hagary @jator

Trying to understand a bit better what might be happening here, I grabbed a couple of hours of guide data from Channels using the following URL:

http://media-server8:8089/devices/ANY/guide/xmltv?duration=7200

Looking at this XML data in a browser, for my sample collection "Test", the data for my two 10000 series channels from Pluto (jgomez version) is present. So in this simplified example, both the M3U (as shown in a previous post) and XML data are there:

<channel id="10295">
<lcn>10295</lcn>
<display-name>PBS Antiques Roadshow</display-name>
<icon src="https://images.pluto.tv/channels/636c2b3c55d2e700074105c4/colorLogoPNG.png"/>
</channel>
<programme start="20241217072400 +0000" stop="20241217083100 +0000" channel="10295">
<title>Antiques Roadshow</title>
<sub-title>Jacksonville</sub-title>
<desc>A NASA Mercury 7 signed photo, circa 1960; an 1862 Abraham Lincoln-signed document; Tiffany & Co. gold necklace circa 1875.</desc>
<category>Reality</category>
<category>Human Interest</category>
<icon src="https://images.pluto.tv/series/64a74ea8fdd8620013043057/tile.jpg?fill=blur&fit=fill&fm=jpg&h=660&q=75&w=660"/>
<series-id system="xmltv:jgomez177">pluto/64a74ea8fdd8620013043057</series-id>
<date>19700101</date>
<previously-shown/>
<episode-num system="xmltv:jgomez177">pluto/64a74ea8fdd8620013043057/S18E31</episode-num>
<episode-num system="onscreen">S18E31</episode-num>
<episode-num system="xmltv_ns">17.30.</episode-num>
</programme>
<programme start="20241217083100 +0000" stop="20241217093800 +0000" channel="10295">
<title>Antiques Roadshow</title>
<sub-title>Vintage Providence 2014</sub-title>
<desc>Maurice Brazil Prendergast color monotype, circa 1895; Cartier ruby and diamond compact; Edward Farmer jade and gold box.</desc>
<category>Reality</category>
<category>Human Interest</category>
<icon src="https://images.pluto.tv/series/64a74ea8fdd8620013043057/tile.jpg?fill=blur&fit=fill&fm=jpg&h=660&q=75&w=660"/>
<series-id system="xmltv:jgomez177">pluto/64a74ea8fdd8620013043057</series-id>
<date>19700101</date>
<previously-shown/>
<episode-num system="xmltv:jgomez177">pluto/64a74ea8fdd8620013043057/S18E19</episode-num>
<episode-num system="onscreen">S18E19</episode-num>
<episode-num system="xmltv_ns">17.18.</episode-num>
</programme>
<programme start="20241217093800 +0000" stop="20241217104500 +0000" channel="10295">
<title>Antiques Roadshow</title>
<sub-title>Vintage Tampa</sub-title>
<desc>A fork from the Hindenburg; costume jewelry hat, circa 1950; Louis Comfort Tiffany lamp.</desc>
<category>Reality</category>
<category>Human Interest</category>
<icon src="https://images.pluto.tv/series/64a74ea8fdd8620013043057/tile.jpg?fill=blur&fit=fill&fm=jpg&h=660&q=75&w=660"/>
<series-id system="xmltv:jgomez177">pluto/64a74ea8fdd8620013043057</series-id>
<date>19700101</date>
<previously-shown/>
<episode-num system="xmltv:jgomez177">pluto/64a74ea8fdd8620013043057/S18E20</episode-num>
<episode-num system="onscreen">S18E20</episode-num>
<episode-num system="xmltv_ns">17.19.</episode-num>
</programme>

Agree.
I just tried the same collection "Test", using the same channels from Pluto (jgomez version).
As long as you put the epg url in the Custom Channel settings XMLTV Guide Data url, it works fine.


Without that, you just get the placeholder guide data.

I'm using the jonmaddox version. Wonder if that's what's causing the hiccup....

Do the channels id's match between your m3u lineup playlist channel-id= and your xmltv guide listings channel id= ?
I think that's the key.