mirror of
https://github.com/pierre-emmanuelJ/iptv-proxy.git
synced 2026-03-12 14:13:59 +01:00
Add readme
Signed-off-by: Pierre-Emmanuel Jacquier <pierre-emmanuel.jacquier@epitech.eu>
This commit is contained in:
45
README.md
Normal file
45
README.md
Normal file
@@ -0,0 +1,45 @@
|
||||
# Iptv Proxy
|
||||
|
||||
## Description
|
||||
|
||||
Iptv Proxy is a tool to convert an iptv m3u file
|
||||
|
||||
into a web proxy server And give a new m3u file
|
||||
|
||||
with the new routes to the proxy server
|
||||
|
||||
### Example
|
||||
|
||||
original iptv m3u file
|
||||
```m3u
|
||||
#EXTM3U
|
||||
#EXTINF:-1 tvg-ID="examplechanel1.com" tvg-name="chanel1" tvg-logo="http://ch.xyz/logo1.png" group-title="USA HD",CHANEL1-HD
|
||||
http://iptvexample.net:1234/12/test/1
|
||||
#EXTINF:-1 tvg-ID="examplechanel2.com" tvg-name="chanel2" tvg-logo="http://ch.xyz/logo2.png" group-title="USA HD",CHANEL2-HD
|
||||
http://iptvexample.net:1234/13/test/2
|
||||
#EXTINF:-1 tvg-ID="examplechanel3.com" tvg-name="chanel3" tvg-logo="http://ch.xyz/logo3.png" group-title="USA HD",CHANEL3-HD
|
||||
http://iptvexample.net:1234/14/test/3
|
||||
#EXTINF:-1 tvg-ID="examplechanel4.com" tvg-name="chanel4" tvg-logo="http://ch.xyz/logo4.png" group-title="USA HD",CHANEL4-HD
|
||||
http://iptvexample.net:1234/15/test/4
|
||||
```
|
||||
|
||||
What proxy IPTV do
|
||||
- convert chanels url to new endpoints
|
||||
- convert original m3u file with new routes
|
||||
- give you the m3u file on a specific endpoint `http://poxyserver.com:8080/iptv.m3u`
|
||||
|
||||
```m3u
|
||||
#EXTM3U
|
||||
#EXTINF:-1 tvg-ID="examplechanel1.com" tvg-name="chanel1" tvg-logo="http://ch.xyz/logo1.png" group-title="USA HD",CHANEL1-HD
|
||||
http://poxyserver.com:8080/12/test/1
|
||||
#EXTINF:-1 tvg-ID="examplechanel2.com" tvg-name="chanel2" tvg-logo="http://ch.xyz/logo2.png" group-title="USA HD",CHANEL2-HD
|
||||
http://poxyserver.com:8080/13/test/2
|
||||
#EXTINF:-1 tvg-ID="examplechanel3.com" tvg-name="chanel3" tvg-logo="http://ch.xyz/logo3.png" group-title="USA HD",CHANEL3-HD
|
||||
http://poxyserver.com:8080/14/test/3
|
||||
#EXTINF:-1 tvg-ID="examplechanel4.com" tvg-name="chanel4" tvg-logo="http://ch.xyz/logo4.png" group-title="USA HD",CHANEL4-HD
|
||||
http://poxyserver.com:8080/15/test/4
|
||||
```
|
||||
|
||||
## Installation
|
||||
|
||||
TODO
|
||||
Reference in New Issue
Block a user