EPG
Utilities for downloading the EPG (Electronic Program Guide) for thousands of TV channels from hundreds of sources.
IMPORTANT: We are no longer able to provide pre-made guides due to the disabling of GitHub Actions (Read more: https://github.com/orgs/iptv-org/discussions/12#discussioncomment-5219050). This repository now contains only utilities and configurations for downloading guides yourself.
Table of contents
- π How to use?
πΊ Playlistsπ Database- π¨βπ» API
- π Resources
π¬ Discussionsπ Contribution- Β© License
How to use?
To download the guide from one of the supported sites you must have Node.js installed on your computer first.
You will also need to install Git to follow these instructions.
After installing them, you need to open the Console (or Terminal if you have macOS) and type the following command:
git clone --depth 1 -b master https://github.com/iptv-org/epg.git
Then also through the Console navigate to the just downloaded epg
folder:
cd epg
And install all the necessary dependencies:
npm install
Now choose one of the sources (their complete list can be found in the /sites folder) and start downloading the guide using the command:
# Windows
set SITE=example.com&& npm run grab
# Linux/macOS
SITE=example.com npm run grab
After the download is completed in the current directory will appear a new folder guides
, which will store all XML files:
guides
βββ en
βββ example.com.xml
Also you can make these guides available via URL by running your own server:
npm run serve
After that all the downloaded guides will be available at a link like this:
http://localhost:3000/guides/en/example.com.xml
In addition, they will be available on your local network at:
http://<your_local_ip_address>:3000/guides/en/example.com.xml
Playlists
Playlists with already linked guides can be found in the iptv-org/iptv repository.
Database
All channel data is taken from the iptv-org/database repository. If you find any errors please open a new issue there.
API
The API documentation can be found in the iptv-org/api repository.
Resources
Links to other useful IPTV-related resources can be found in the iptv-org/awesome-iptv repository.
Discussions
If you have a question or an idea, you can post it in the Discussions tab.
Contribution
Please make sure to read the Contributing Guide before sending issue or a pull request.
And thank you to everyone who has already contributed!