iptv/.readme/template.md

83 lines
2.0 KiB
Markdown
Raw Normal View History

2019-10-09 04:33:52 +02:00
# IPTV
2020-09-17 22:31:10 +02:00
Collection of 5000+ publicly available IPTV channels from all over the world.
2019-10-09 04:33:52 +02:00
Internet Protocol television (IPTV) is the delivery of television content over Internet Protocol (IP) networks.
## Usage
To watch IPTV you just need to paste this link `https://iptv-org.github.io/iptv/index.m3u` to any player with support M3U-playlists.
![VLC Network Panel](preview.png)
2019-11-02 12:08:02 +01:00
Also you can instead use one of these playlists:
2019-10-09 04:33:52 +02:00
- `https://iptv-org.github.io/iptv/index.country.m3u` (grouped by country)
- `https://iptv-org.github.io/iptv/index.category.m3u` (grouped by category)
2019-10-31 12:59:08 +01:00
- `https://iptv-org.github.io/iptv/index.language.m3u` (grouped by language)
2019-10-09 04:33:52 +02:00
Or select one of the playlists from the list below.
## Playlists by category
#include "./.readme/_categories.md"
2019-10-09 04:33:52 +02:00
2019-10-31 12:59:08 +01:00
## Playlists by language
#include "./.readme/_languages.md"
2019-10-31 12:59:08 +01:00
2019-10-09 04:33:52 +02:00
## Playlists by country
#include "./.readme/_countries.md"
2019-10-09 04:33:52 +02:00
2020-05-04 16:02:18 +02:00
## For Developers
In addition to the above methods, you can also get a list of all available channels in JSON format.
To do this, you just have to make a GET request to:
```
2020-05-06 17:02:54 +02:00
https://iptv-org.github.io/iptv/channels.json
2020-05-04 16:02:18 +02:00
```
If successful, you should get the following response:
```
[
...
{
"name": "CNN",
"logo": "https://i.imgur.com/ilZJT5s.png",
"url": "http://ott-cdn.ucom.am/s27/index.m3u8",
"category": "News",
"language": [
{
"code": "eng",
"name": "English"
}
],
"country": {
"code": "us",
"name": "United States"
},
"tvg": {
"id": "cnn.us",
"name": "CNN",
"url": "http://epg.streamstv.me/epg/guide-usa.xml.gz"
}
},
...
]
```
2019-10-09 04:33:52 +02:00
## Resources
You can find links to various IPTV related resources in this repository [iptv-org/awesome-iptv](https://github.com/iptv-org/awesome-iptv).
2019-10-09 04:33:52 +02:00
## Contribution
Please make sure to read the [Contributing Guide](.github/CONTRIBUTING.md) before making a pull request.
If you find an error or have any suggestions on how to organize a playlist, please send an [issue](https://github.com/iptv-org/iptv/issues).