├── .github └── workflows │ ├── C8.yml │ ├── CNews.yml │ ├── CStar.yml │ ├── Canal+.yml │ ├── France24.yml │ ├── France_2.yml │ ├── France_3.yml │ ├── France_4.yml │ ├── France_5.yml │ ├── LCI.yml │ ├── LEquipe21.yml │ ├── RMC_Story.yml │ ├── TF1.yml │ └── franceinfo.yml ├── IPTV ├── ALL.m3u ├── BFM.m3u ├── Liste pour @hemzaberkane.m3u ├── Officiel.m3u ├── README.md ├── Radio.m3u ├── Stream4free.m3u ├── Streaming.m3u ├── TNT.m3u └── TNTenDirect.m3u ├── Images ├── 6ter.png ├── All.png ├── Always Sunny.png ├── American Dad.png ├── Arte HD.png ├── BFM Alsace.svg ├── BFM Business.svg ├── BFM Côte d'Azur.svg ├── BFM DICI.svg ├── BFM Lille.svg ├── BFM Littoral.svg ├── BFM Lyon.svg ├── BFM Marseille.svg ├── BFM Normandie.svg ├── BFM TV.png ├── BFM Var.svg ├── BFM Île-de-France.svg ├── Bob's Burgers.jpg ├── Breaking Bad.png ├── C8.png ├── CNews.png ├── CStar.png ├── Canal+ HD.png ├── Chérie 25.png ├── DVD.png ├── Europe 2 Classics.jpg ├── Europe 2 Happy Rock Hours.jpg ├── Europe 2 Hits.jpg ├── Europe 2 New.jpg ├── Europe 2 Nouvelle Scène.jpg ├── Europe 2.jpg ├── Family Guy.png ├── Fashion TV.png ├── Films.png ├── Fire.png ├── France 2 HD.png ├── France 24.png ├── France 3 HD.png ├── France 4 HD.png ├── France 5 HD.png ├── Friends.png ├── Fun Radio Anthology.png ├── Fun Radio Electro.png ├── Fun Radio Latino.png ├── Fun Radio.png ├── Futurama.png ├── Groupe Canal+.png ├── Groupe M6.png ├── Groupe Persiana.png ├── Gulli HD.png ├── K-Net API.png ├── K-Net.png ├── L'Équipe HD.png ├── LCI.png ├── LCP.png ├── Lofi Girl.png ├── Logo.png ├── M6 HD.png ├── NRJ 12 HD.png ├── Offline.mp4 ├── Pluto TV.png ├── RMC Découverte.png ├── RMC Story.png ├── ROG.png ├── RTL.png ├── RTL2.jpg ├── Radio.png ├── Rakuten.png ├── Rick and Morty.png ├── Samsung TV Plus.png ├── Seinfeld.png ├── Simpsons.png ├── South Park.png ├── Stars.png ├── Stream4free.png ├── TF1 HD.png ├── TF1 Séries Films.png ├── TFX.png ├── TMC HD.png ├── TNT.png ├── The Big Bang Theory.png ├── The Office.jpg ├── TikTok Live Animal.png ├── Tomorrowland One World Radio Daybreak Sessions.jpg ├── Tomorrowland One World Radio.jpg ├── Unknown.png ├── Virgin Radio Classics.jpg ├── Virgin Radio Electroshock.png ├── Virgin Radio Hits.jpg ├── Virgin Radio New.png ├── Virgin Radio Nouvelle Scène.png ├── Virgin Radio Rock.png ├── Virgin Radio.png ├── W9 HD.png ├── XMLTV.png ├── XTVZ_.png ├── euronews.png ├── franceinfo.png └── iptv-org.png ├── LICENSE ├── Logiciel ├── TNT │ ├── Arte │ ├── BFMTV │ ├── C8 │ ├── CNews │ ├── CStar │ ├── CanalPlus │ ├── France2 │ ├── France3 │ ├── France4 │ ├── France5 │ ├── FranceO │ ├── Gulli │ ├── LCP │ ├── LEQUIPE21 │ ├── M6 │ ├── NRJ12 │ ├── TF1 │ ├── TF1SF │ ├── TFX │ ├── TMC │ └── W9 ├── Twitch │ ├── LesSimpsons │ ├── MaFamilleDabord │ ├── Malcolm │ └── SouthPark └── Windows │ ├── XTVZ_.bat │ └── requirements.bat ├── README.md ├── Stream ├── Info │ ├── C8.txt │ ├── CNews.txt │ ├── CStar.txt │ ├── Canal+.txt │ ├── France24.txt │ ├── LEquipe21.txt │ ├── RMC_Story.txt │ └── franceinfo.txt ├── Live │ ├── Arte.m3u8 │ ├── C8.m3u8 │ ├── CNews.m3u8 │ ├── CStar.m3u8 │ ├── Canal+.m3u8 │ ├── Cherie25.m3u8 │ ├── France24.m3u8 │ ├── France_2.m3u8 │ ├── France_3.m3u8 │ ├── France_4.m3u8 │ ├── France_5.m3u8 │ ├── LCI.m3u8 │ ├── LEquipe21.m3u8 │ ├── M6.m3u8 │ ├── Paris_Premiere.m3u8 │ ├── RMC_Story.m3u8 │ ├── TF1.m3u8 │ ├── Teva.m3u8 │ └── franceinfo.m3u8 ├── Python │ ├── C8.py │ ├── CNews.py │ ├── CStar.py │ ├── Canal+.py │ ├── France24.py │ ├── France_2.py │ ├── France_3.py │ ├── France_4.py │ ├── France_5.py │ ├── LCI.py │ ├── LEquipe21.py │ ├── RMC_Story.py │ ├── TF1.py │ └── franceinfo.py └── README.md ├── font.ttf ├── index.html └── vpnconfig.ovpn /.github/workflows/C8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/C8.yml -------------------------------------------------------------------------------- /.github/workflows/CNews.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/CNews.yml -------------------------------------------------------------------------------- /.github/workflows/CStar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/CStar.yml -------------------------------------------------------------------------------- /.github/workflows/Canal+.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/Canal+.yml -------------------------------------------------------------------------------- /.github/workflows/France24.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/France24.yml -------------------------------------------------------------------------------- /.github/workflows/France_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/France_2.yml -------------------------------------------------------------------------------- /.github/workflows/France_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/France_3.yml -------------------------------------------------------------------------------- /.github/workflows/France_4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/France_4.yml -------------------------------------------------------------------------------- /.github/workflows/France_5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/France_5.yml -------------------------------------------------------------------------------- /.github/workflows/LCI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/LCI.yml -------------------------------------------------------------------------------- /.github/workflows/LEquipe21.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/LEquipe21.yml -------------------------------------------------------------------------------- /.github/workflows/RMC_Story.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/RMC_Story.yml -------------------------------------------------------------------------------- /.github/workflows/TF1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/TF1.yml -------------------------------------------------------------------------------- /.github/workflows/franceinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/.github/workflows/franceinfo.yml -------------------------------------------------------------------------------- /IPTV/ALL.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/IPTV/ALL.m3u -------------------------------------------------------------------------------- /IPTV/BFM.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/IPTV/BFM.m3u -------------------------------------------------------------------------------- /IPTV/Liste pour @hemzaberkane.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/IPTV/Liste pour @hemzaberkane.m3u -------------------------------------------------------------------------------- /IPTV/Officiel.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/IPTV/Officiel.m3u -------------------------------------------------------------------------------- /IPTV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/IPTV/README.md -------------------------------------------------------------------------------- /IPTV/Radio.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/IPTV/Radio.m3u -------------------------------------------------------------------------------- /IPTV/Stream4free.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/IPTV/Stream4free.m3u -------------------------------------------------------------------------------- /IPTV/Streaming.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/IPTV/Streaming.m3u -------------------------------------------------------------------------------- /IPTV/TNT.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/IPTV/TNT.m3u -------------------------------------------------------------------------------- /IPTV/TNTenDirect.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/IPTV/TNTenDirect.m3u -------------------------------------------------------------------------------- /Images/6ter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/6ter.png -------------------------------------------------------------------------------- /Images/All.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/All.png -------------------------------------------------------------------------------- /Images/Always Sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Always Sunny.png -------------------------------------------------------------------------------- /Images/American Dad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/American Dad.png -------------------------------------------------------------------------------- /Images/Arte HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Arte HD.png -------------------------------------------------------------------------------- /Images/BFM Alsace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/BFM Alsace.svg -------------------------------------------------------------------------------- /Images/BFM Business.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/BFM Business.svg -------------------------------------------------------------------------------- /Images/BFM Côte d'Azur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/BFM Côte d'Azur.svg -------------------------------------------------------------------------------- /Images/BFM DICI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/BFM DICI.svg -------------------------------------------------------------------------------- /Images/BFM Lille.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/BFM Lille.svg -------------------------------------------------------------------------------- /Images/BFM Littoral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/BFM Littoral.svg -------------------------------------------------------------------------------- /Images/BFM Lyon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/BFM Lyon.svg -------------------------------------------------------------------------------- /Images/BFM Marseille.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/BFM Marseille.svg -------------------------------------------------------------------------------- /Images/BFM Normandie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/BFM Normandie.svg -------------------------------------------------------------------------------- /Images/BFM TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/BFM TV.png -------------------------------------------------------------------------------- /Images/BFM Var.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/BFM Var.svg -------------------------------------------------------------------------------- /Images/BFM Île-de-France.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/BFM Île-de-France.svg -------------------------------------------------------------------------------- /Images/Bob's Burgers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Bob's Burgers.jpg -------------------------------------------------------------------------------- /Images/Breaking Bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Breaking Bad.png -------------------------------------------------------------------------------- /Images/C8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/C8.png -------------------------------------------------------------------------------- /Images/CNews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/CNews.png -------------------------------------------------------------------------------- /Images/CStar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/CStar.png -------------------------------------------------------------------------------- /Images/Canal+ HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Canal+ HD.png -------------------------------------------------------------------------------- /Images/Chérie 25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Chérie 25.png -------------------------------------------------------------------------------- /Images/DVD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/DVD.png -------------------------------------------------------------------------------- /Images/Europe 2 Classics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Europe 2 Classics.jpg -------------------------------------------------------------------------------- /Images/Europe 2 Happy Rock Hours.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Europe 2 Happy Rock Hours.jpg -------------------------------------------------------------------------------- /Images/Europe 2 Hits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Europe 2 Hits.jpg -------------------------------------------------------------------------------- /Images/Europe 2 New.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Europe 2 New.jpg -------------------------------------------------------------------------------- /Images/Europe 2 Nouvelle Scène.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Europe 2 Nouvelle Scène.jpg -------------------------------------------------------------------------------- /Images/Europe 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Europe 2.jpg -------------------------------------------------------------------------------- /Images/Family Guy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Family Guy.png -------------------------------------------------------------------------------- /Images/Fashion TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Fashion TV.png -------------------------------------------------------------------------------- /Images/Films.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Films.png -------------------------------------------------------------------------------- /Images/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Fire.png -------------------------------------------------------------------------------- /Images/France 2 HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/France 2 HD.png -------------------------------------------------------------------------------- /Images/France 24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/France 24.png -------------------------------------------------------------------------------- /Images/France 3 HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/France 3 HD.png -------------------------------------------------------------------------------- /Images/France 4 HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/France 4 HD.png -------------------------------------------------------------------------------- /Images/France 5 HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/France 5 HD.png -------------------------------------------------------------------------------- /Images/Friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Friends.png -------------------------------------------------------------------------------- /Images/Fun Radio Anthology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Fun Radio Anthology.png -------------------------------------------------------------------------------- /Images/Fun Radio Electro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Fun Radio Electro.png -------------------------------------------------------------------------------- /Images/Fun Radio Latino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Fun Radio Latino.png -------------------------------------------------------------------------------- /Images/Fun Radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Fun Radio.png -------------------------------------------------------------------------------- /Images/Futurama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Futurama.png -------------------------------------------------------------------------------- /Images/Groupe Canal+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Groupe Canal+.png -------------------------------------------------------------------------------- /Images/Groupe M6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Groupe M6.png -------------------------------------------------------------------------------- /Images/Groupe Persiana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Groupe Persiana.png -------------------------------------------------------------------------------- /Images/Gulli HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Gulli HD.png -------------------------------------------------------------------------------- /Images/K-Net API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/K-Net API.png -------------------------------------------------------------------------------- /Images/K-Net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/K-Net.png -------------------------------------------------------------------------------- /Images/L'Équipe HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/L'Équipe HD.png -------------------------------------------------------------------------------- /Images/LCI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/LCI.png -------------------------------------------------------------------------------- /Images/LCP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/LCP.png -------------------------------------------------------------------------------- /Images/Lofi Girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Lofi Girl.png -------------------------------------------------------------------------------- /Images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Logo.png -------------------------------------------------------------------------------- /Images/M6 HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/M6 HD.png -------------------------------------------------------------------------------- /Images/NRJ 12 HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/NRJ 12 HD.png -------------------------------------------------------------------------------- /Images/Offline.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Offline.mp4 -------------------------------------------------------------------------------- /Images/Pluto TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Pluto TV.png -------------------------------------------------------------------------------- /Images/RMC Découverte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/RMC Découverte.png -------------------------------------------------------------------------------- /Images/RMC Story.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/RMC Story.png -------------------------------------------------------------------------------- /Images/ROG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/ROG.png -------------------------------------------------------------------------------- /Images/RTL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/RTL.png -------------------------------------------------------------------------------- /Images/RTL2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/RTL2.jpg -------------------------------------------------------------------------------- /Images/Radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Radio.png -------------------------------------------------------------------------------- /Images/Rakuten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Rakuten.png -------------------------------------------------------------------------------- /Images/Rick and Morty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Rick and Morty.png -------------------------------------------------------------------------------- /Images/Samsung TV Plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Samsung TV Plus.png -------------------------------------------------------------------------------- /Images/Seinfeld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Seinfeld.png -------------------------------------------------------------------------------- /Images/Simpsons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Simpsons.png -------------------------------------------------------------------------------- /Images/South Park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/South Park.png -------------------------------------------------------------------------------- /Images/Stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Stars.png -------------------------------------------------------------------------------- /Images/Stream4free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Stream4free.png -------------------------------------------------------------------------------- /Images/TF1 HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/TF1 HD.png -------------------------------------------------------------------------------- /Images/TF1 Séries Films.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/TF1 Séries Films.png -------------------------------------------------------------------------------- /Images/TFX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/TFX.png -------------------------------------------------------------------------------- /Images/TMC HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/TMC HD.png -------------------------------------------------------------------------------- /Images/TNT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/TNT.png -------------------------------------------------------------------------------- /Images/The Big Bang Theory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/The Big Bang Theory.png -------------------------------------------------------------------------------- /Images/The Office.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/The Office.jpg -------------------------------------------------------------------------------- /Images/TikTok Live Animal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/TikTok Live Animal.png -------------------------------------------------------------------------------- /Images/Tomorrowland One World Radio Daybreak Sessions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Tomorrowland One World Radio Daybreak Sessions.jpg -------------------------------------------------------------------------------- /Images/Tomorrowland One World Radio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Tomorrowland One World Radio.jpg -------------------------------------------------------------------------------- /Images/Unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Unknown.png -------------------------------------------------------------------------------- /Images/Virgin Radio Classics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Virgin Radio Classics.jpg -------------------------------------------------------------------------------- /Images/Virgin Radio Electroshock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Virgin Radio Electroshock.png -------------------------------------------------------------------------------- /Images/Virgin Radio Hits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Virgin Radio Hits.jpg -------------------------------------------------------------------------------- /Images/Virgin Radio New.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Virgin Radio New.png -------------------------------------------------------------------------------- /Images/Virgin Radio Nouvelle Scène.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Virgin Radio Nouvelle Scène.png -------------------------------------------------------------------------------- /Images/Virgin Radio Rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Virgin Radio Rock.png -------------------------------------------------------------------------------- /Images/Virgin Radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/Virgin Radio.png -------------------------------------------------------------------------------- /Images/W9 HD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/W9 HD.png -------------------------------------------------------------------------------- /Images/XMLTV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/XMLTV.png -------------------------------------------------------------------------------- /Images/XTVZ_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/XTVZ_.png -------------------------------------------------------------------------------- /Images/euronews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/euronews.png -------------------------------------------------------------------------------- /Images/franceinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/franceinfo.png -------------------------------------------------------------------------------- /Images/iptv-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Images/iptv-org.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/LICENSE -------------------------------------------------------------------------------- /Logiciel/TNT/Arte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/TNT/Arte -------------------------------------------------------------------------------- /Logiciel/TNT/BFMTV: -------------------------------------------------------------------------------- 1 | color a0 2 | streamlink https://www.bfmtv.com/en-direct best > "Logs/TNT/BFM TV.txt" 3 | -------------------------------------------------------------------------------- /Logiciel/TNT/C8: -------------------------------------------------------------------------------- 1 | color a0 2 | streamlink https://www.dailymotion.com/C8TV best > "Logs/TNT/C8.txt" 3 | -------------------------------------------------------------------------------- /Logiciel/TNT/CNews: -------------------------------------------------------------------------------- 1 | color a0 2 | streamlink https://www.dailymotion.com/CNEWS best > "Logs/TNT/CNews.txt" 3 | -------------------------------------------------------------------------------- /Logiciel/TNT/CStar: -------------------------------------------------------------------------------- 1 | color a0 2 | streamlink https://www.dailymotion.com/CSTAR best > "Logs/TNT/CStar.txt" 3 | -------------------------------------------------------------------------------- /Logiciel/TNT/CanalPlus: -------------------------------------------------------------------------------- 1 | color a0 2 | streamlink https://www.dailymotion.com/CANALPLUS best > "Logs/TNT/Canal+.txt" 3 | -------------------------------------------------------------------------------- /Logiciel/TNT/France2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/TNT/France2 -------------------------------------------------------------------------------- /Logiciel/TNT/France3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/TNT/France3 -------------------------------------------------------------------------------- /Logiciel/TNT/France4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/TNT/France4 -------------------------------------------------------------------------------- /Logiciel/TNT/France5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/TNT/France5 -------------------------------------------------------------------------------- /Logiciel/TNT/FranceO: -------------------------------------------------------------------------------- 1 | color 40 2 | ping localhost -n 3 >nul 3 | -------------------------------------------------------------------------------- /Logiciel/TNT/Gulli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/TNT/Gulli -------------------------------------------------------------------------------- /Logiciel/TNT/LCP: -------------------------------------------------------------------------------- 1 | color a0 2 | streamlink https://www.dailymotion.com/LCP best > "Logs/TNT/LCP.txt" 3 | -------------------------------------------------------------------------------- /Logiciel/TNT/LEQUIPE21: -------------------------------------------------------------------------------- 1 | color a0 2 | streamlink https://www.dailymotion.com/video/x2lefik best > "Logs/TNT/L'Équipe 21.txt" 3 | -------------------------------------------------------------------------------- /Logiciel/TNT/M6: -------------------------------------------------------------------------------- 1 | color a0 2 | streamlink https://www.6play.fr/m6/direct best > "Logs/TNT/M6.txt" 3 | -------------------------------------------------------------------------------- /Logiciel/TNT/NRJ12: -------------------------------------------------------------------------------- 1 | color a0 2 | streamlink https://www.nrj-play.fr/nrj12/direct best > "Logs/TNT/NRJ 12.txt" 3 | -------------------------------------------------------------------------------- /Logiciel/TNT/TF1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/TNT/TF1 -------------------------------------------------------------------------------- /Logiciel/TNT/TF1SF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/TNT/TF1SF -------------------------------------------------------------------------------- /Logiciel/TNT/TFX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/TNT/TFX -------------------------------------------------------------------------------- /Logiciel/TNT/TMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/TNT/TMC -------------------------------------------------------------------------------- /Logiciel/TNT/W9: -------------------------------------------------------------------------------- 1 | color a0 2 | streamlink https://www.6play.fr/w9/direct best > "Logs/TNT/W9.txt" 3 | -------------------------------------------------------------------------------- /Logiciel/Twitch/LesSimpsons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/Twitch/LesSimpsons -------------------------------------------------------------------------------- /Logiciel/Twitch/MaFamilleDabord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/Twitch/MaFamilleDabord -------------------------------------------------------------------------------- /Logiciel/Twitch/Malcolm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/Twitch/Malcolm -------------------------------------------------------------------------------- /Logiciel/Twitch/SouthPark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/Twitch/SouthPark -------------------------------------------------------------------------------- /Logiciel/Windows/XTVZ_.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/Windows/XTVZ_.bat -------------------------------------------------------------------------------- /Logiciel/Windows/requirements.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Logiciel/Windows/requirements.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/README.md -------------------------------------------------------------------------------- /Stream/Info/C8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Info/C8.txt -------------------------------------------------------------------------------- /Stream/Info/CNews.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Info/CNews.txt -------------------------------------------------------------------------------- /Stream/Info/CStar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Info/CStar.txt -------------------------------------------------------------------------------- /Stream/Info/Canal+.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Info/Canal+.txt -------------------------------------------------------------------------------- /Stream/Info/France24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Info/France24.txt -------------------------------------------------------------------------------- /Stream/Info/LEquipe21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Info/LEquipe21.txt -------------------------------------------------------------------------------- /Stream/Info/RMC_Story.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Info/RMC_Story.txt -------------------------------------------------------------------------------- /Stream/Info/franceinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Info/franceinfo.txt -------------------------------------------------------------------------------- /Stream/Live/Arte.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/Arte.m3u8 -------------------------------------------------------------------------------- /Stream/Live/C8.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/C8.m3u8 -------------------------------------------------------------------------------- /Stream/Live/CNews.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/CNews.m3u8 -------------------------------------------------------------------------------- /Stream/Live/CStar.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/CStar.m3u8 -------------------------------------------------------------------------------- /Stream/Live/Canal+.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/Canal+.m3u8 -------------------------------------------------------------------------------- /Stream/Live/Cherie25.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/Cherie25.m3u8 -------------------------------------------------------------------------------- /Stream/Live/France24.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/France24.m3u8 -------------------------------------------------------------------------------- /Stream/Live/France_2.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/France_2.m3u8 -------------------------------------------------------------------------------- /Stream/Live/France_3.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/France_3.m3u8 -------------------------------------------------------------------------------- /Stream/Live/France_4.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/France_4.m3u8 -------------------------------------------------------------------------------- /Stream/Live/France_5.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/France_5.m3u8 -------------------------------------------------------------------------------- /Stream/Live/LCI.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/LCI.m3u8 -------------------------------------------------------------------------------- /Stream/Live/LEquipe21.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/LEquipe21.m3u8 -------------------------------------------------------------------------------- /Stream/Live/M6.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/M6.m3u8 -------------------------------------------------------------------------------- /Stream/Live/Paris_Premiere.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/Paris_Premiere.m3u8 -------------------------------------------------------------------------------- /Stream/Live/RMC_Story.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/RMC_Story.m3u8 -------------------------------------------------------------------------------- /Stream/Live/TF1.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/TF1.m3u8 -------------------------------------------------------------------------------- /Stream/Live/Teva.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/Teva.m3u8 -------------------------------------------------------------------------------- /Stream/Live/franceinfo.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Live/franceinfo.m3u8 -------------------------------------------------------------------------------- /Stream/Python/C8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/C8.py -------------------------------------------------------------------------------- /Stream/Python/CNews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/CNews.py -------------------------------------------------------------------------------- /Stream/Python/CStar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/CStar.py -------------------------------------------------------------------------------- /Stream/Python/Canal+.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/Canal+.py -------------------------------------------------------------------------------- /Stream/Python/France24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/France24.py -------------------------------------------------------------------------------- /Stream/Python/France_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/France_2.py -------------------------------------------------------------------------------- /Stream/Python/France_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/France_3.py -------------------------------------------------------------------------------- /Stream/Python/France_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/France_4.py -------------------------------------------------------------------------------- /Stream/Python/France_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/France_5.py -------------------------------------------------------------------------------- /Stream/Python/LCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/LCI.py -------------------------------------------------------------------------------- /Stream/Python/LEquipe21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/LEquipe21.py -------------------------------------------------------------------------------- /Stream/Python/RMC_Story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/RMC_Story.py -------------------------------------------------------------------------------- /Stream/Python/TF1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/TF1.py -------------------------------------------------------------------------------- /Stream/Python/franceinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/Python/franceinfo.py -------------------------------------------------------------------------------- /Stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/Stream/README.md -------------------------------------------------------------------------------- /font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/font.ttf -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/index.html -------------------------------------------------------------------------------- /vpnconfig.ovpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/HEAD/vpnconfig.ovpn --------------------------------------------------------------------------------