Pierre-Emmanuel Jacquier 44a9a75891 Refacto m3u
Signed-off-by: Pierre-Emmanuel Jacquier <pierre-emmanuel.jacquier@epitech.eu>
2019-02-27 14:19:29 +01:00
2019-02-26 20:24:26 +01:00
2019-02-27 14:19:29 +01:00
2019-02-26 17:35:12 +01:00
2019-02-26 17:35:12 +01:00
2019-02-26 17:35:12 +01:00
2019-02-26 17:35:12 +01:00
2019-02-27 12:50:52 +01:00

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

#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

start proxy server example:

poxy-server --m3u-url http://iptvexample.net/iptvm3ufile.m3u \ # or local m3u file
            --port 8080 \ # port you want to expose your proxy
            --hostname proxyserver.com # hostname of your machine running this proxy
  • give you the m3u file on a specific endpoint http://poxyserver.com:8080/iptv.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

Languages
Go 99.2%
Dockerfile 0.8%