Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maddox/pluto-for-channels
:tv: M3U generator optimized for Channels' custom channels.
https://github.com/maddox/pluto-for-channels
channels-dvr-server custom-channels pluto
Last synced: 2 months ago
JSON representation
:tv: M3U generator optimized for Channels' custom channels.
- Host: GitHub
- URL: https://github.com/maddox/pluto-for-channels
- Owner: maddox
- License: mit
- Created: 2020-11-17T18:16:42.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-14T16:29:35.000Z (about 2 years ago)
- Last Synced: 2024-10-14T08:47:26.182Z (3 months ago)
- Topics: channels-dvr-server, custom-channels, pluto
- Language: JavaScript
- Homepage:
- Size: 273 KB
- Stars: 92
- Watchers: 23
- Forks: 29
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Pluto for Channels
This simple Docker image will generate an M3U playlist and EPG optimized for use in [Channels](https://getchannels.com) and expose them over HTTP.
[Channels](https://getchannels.com) supports [custom channels](https://getchannels.com/docs/channels-dvr-server/how-to/custom-channels/) by utilizing streaming sources via M3U playlists.
[Channels](https://getchannels.com) allows for [additional extended metadata tags](https://getchannels.com/docs/channels-dvr-server/how-to/custom-channels/#channels-extensions) in M3U playlists that allow you to give it extra information and art to make the experience better. This project adds those extra tags to make things look great in Channels.
## Set Up
Running the container is easy. Fire up the container as usual. You can set which port it runs on.
docker run -d --restart unless-stopped --name pluto-for-channels -p 8080:80 jonmaddox/pluto-for-channels
You can retrieve the playlist and EPG via the status page.
http://127.0.0.1:8080
### Optionally have multiple feeds generated
By using the `VERSIONS` env var when starting the docker container, you can tell it to create multiple feeds that can be used elsewhere.
Simply provide a comma separated list of words without spaces with the `VERSIONS` env var.
docker run -d --restart unless-stopped --name pluto-for-channels -p 8080:80 -e VERSIONS=Dad,Bob,Joe jonmaddox/pluto-for-channels
### Optionally provide a starting channel number
By using the `START` env var when starting the docker container, you can tell it to start channel numbers with this value. Original Pluto channel numbers will be added to this, keeping all of the channels in the same order they are on Pluto.
You should use a starting number greater than 10000, so that the channel numbers will be preserved but not conflict with any other channels you may have.
For example, channel 345 will be 10345. Channel 2102 will be 12102.
Simpley provide a starting number with the `START` env var.
docker run -d --restart unless-stopped --name pluto-for-channels -p 8080:80 -e START=80000 jonmaddox/pluto-for-channels
## Add Source to Channels
Once you have your Pluto M3U and EPG XML available, you can use it to [custom channels](https://getchannels.com/docs/channels-dvr-server/how-to/custom-channels/) channels in the [Channels](https://getchannels.com) app.
Add a new source in Channels DVR Server and choose `M3U Playlist`. Fill out the form using your new playlist URL.
Next, set the provider for your new source and choose custom URL.
Finally, enter your EPG xml url and set it to refresh every 6 hours.