├── .github └── workflows │ └── update_playlist.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── IPTV Filter System.py ├── LICENSE ├── Playlist ├── AllWorld.m3u ├── DENSTV.txt ├── Dunia.m3u ├── Filter.m3u ├── Formatted.m3u ├── GM-Vision.txt ├── Index.m3u ├── Jeje Vision TV.txt ├── JustryuzTV.txt ├── Korea.m3u ├── MAGELIFE.m3u ├── MayToko.m3u ├── NovanTV.m3u ├── Sanya TV.txt ├── Therium TV.txt ├── Trial.m3u ├── UnitedKingdom.m3u └── Urfan TV.txt ├── README.md ├── update_github_file.py └── website_under_maintenance.png /.github/workflows/update_playlist.yml: -------------------------------------------------------------------------------- 1 | name: Auto Update Playlist 2 | 3 | on: 4 | workflow_dispatch: # Tombol untuk menjalankan manual 5 | schedule: 6 | - cron: '0 10 * * *' # Menjalankan setiap hari jam 18:00 UTC (01:00 WIB) 7 | 8 | jobs: 9 | update: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - name: Checkout repository 13 | uses: actions/checkout@v3 14 | 15 | - name: Set up Python 16 | uses: actions/setup-python@v4 17 | with: 18 | python-version: '3.10' 19 | 20 | - name: Install dependencies 21 | run: | 22 | python -m pip install --upgrade pip 23 | pip install PyGithub requests 24 | 25 | - name: Run update script 26 | env: 27 | GITHUB_PAT: ${{ secrets.REPO_ACCESS_TOKEN }} 28 | run: python update_github_file.py # Pastikan file script python ada di root repo 29 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. 8 | 9 | ## Our Standards 10 | 11 | Examples of behavior that contributes to a positive environment for our community include: 12 | 13 | - Demonstrating empathy and kindness toward other people 14 | - Being respectful of differing opinions, viewpoints, and experiences 15 | - Giving and gracefully accepting constructive feedback 16 | - Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience 17 | - Focusing on what is best not just for us as individuals, but for the overall community 18 | 19 | Examples of unacceptable behavior include: 20 | 21 | - The use of sexualized language or imagery, and sexual attention or advances of any kind 22 | - Trolling, insulting or derogatory comments, and personal or political attacks 23 | - Public or private harassment 24 | - Publishing others’ private information, such as a physical or email address, without their explicit permission 25 | - Other conduct which could reasonably be considered inappropriate in a professional setting 26 | 27 | ## Enforcement Responsibilities 28 | 29 | Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. 32 | 33 | ## Scope 34 | 35 | This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. 36 | 37 | ## Enforcement 38 | 39 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [huffblanca@gmail.com]. All complaints will be reviewed and investigated promptly and fairly. 40 | 41 | All community leaders are obligated to respect the privacy and security of the reporter of any incident. 42 | 43 | ## Enforcement Guidelines 44 | 45 | Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: 46 | 47 | ### 1. Correction 48 | 49 | **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. 50 | 51 | **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. 52 | 53 | ### 2. Warning 54 | 55 | **Community Impact**: A violation through a single incident or series of actions. 56 | 57 | **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. 58 | 59 | ### 3. Temporary Ban 60 | 61 | **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. 62 | 63 | **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. 64 | 65 | ### 4. Permanent Ban 66 | 67 | **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. 68 | 69 | **Consequence**: A permanent ban from any sort of public interaction within the community. 70 | 71 | ## Attribution 72 | 73 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1, available at https://www.contributor-covenant.org/version/2/1/code_of_conduct.html. 74 | 75 | Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). 76 | 77 | For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. 78 | 79 | [homepage]: https://www.contributor-covenant.org 80 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to Playlist Sorter Script 2 | 3 | Thank you for your interest in contributing to Playlist Sorter Script. We're excited to have you involved. Here are some guidelines to help you get started. 4 | 5 | ## How to Contribute 6 | 7 | 1. **Fork this repository** 8 | - Click the "Fork" button at the top right of this page. 9 | 10 | 2. **Clone your fork** 11 | - Clone the repository to your local machine: 12 | ```sh 13 | git clone https://github.com/your-username/[Project Name].git 14 | ``` 15 | 16 | 3. **Create a feature branch** 17 | - Create a new branch for your feature or bugfix: 18 | ```sh 19 | git checkout -b your-feature-branch 20 | ``` 21 | 22 | 4. **Make your changes** 23 | - Implement your changes to the codebase. 24 | 25 | 5. **Commit your changes** 26 | - Commit your changes with a descriptive commit message: 27 | ```sh 28 | git commit -m "Brief description of your changes" 29 | ``` 30 | 31 | 6. **Push to GitHub** 32 | - Push your branch to your forked repository: 33 | ```sh 34 | git push origin your-feature-branch 35 | ``` 36 | 37 | 7. **Open a Pull Request** 38 | - Go to the original repository and click the "New Pull Request" button. 39 | 40 | ## Code Style Guidelines 41 | 42 | - Follow the code style standards used in this project. 43 | - Use clear and descriptive comments to explain complex code sections. 44 | - Ensure your code is formatted properly before submitting. 45 | 46 | ## Testing 47 | 48 | - Ensure all your changes are well-tested. 49 | - If you add a new feature, please add corresponding tests. 50 | - Run all existing tests to ensure they pass before submitting your pull request. 51 | 52 | ## Issues and Discussions 53 | 54 | - If you find a bug, open a new issue on the [Issues] (https://github.com/Novantama/IPTV/issues/) page. 55 | - For discussing new features or enhancements, start a new discussion or join an existing one. 56 | 57 | ## Documentation 58 | 59 | - Update documentation to reflect any changes that affect users. 60 | - Documentation is typically found in the `docs` folder or the `README.md` file. 61 | 62 | ## Code of Conduct 63 | 64 | Please read and understand our [Code of Conduct](CODE_OF_CONDUCT.md). We expect all contributors to adhere to these guidelines in all interactions within the project. 65 | 66 | ## License 67 | 68 | By contributing to this project, you agree that your contributions will be licensed under the MIT License as stated in the project. 69 | 70 | Thank you for contributing! 71 | -------------------------------------------------------------------------------- /IPTV Filter System.py: -------------------------------------------------------------------------------- 1 | import os 2 | import shutil 3 | import requests 4 | import subprocess 5 | from concurrent.futures import ThreadPoolExecutor, as_completed 6 | from tqdm import tqdm 7 | import re 8 | from collections import defaultdict 9 | import tkinter as tk 10 | from tkinter import filedialog 11 | 12 | # ======================= KONFIGURASI ======================= 13 | CHECK_FFPROBE = True 14 | CHECK_FFMPEG = True 15 | 16 | def find_executable(name, hints=[]): 17 | path = shutil.which(name) 18 | if path: 19 | return path 20 | for hint in hints: 21 | full = os.path.join(hint, name) 22 | if os.path.isfile(full): 23 | return full 24 | return None 25 | 26 | FFPROBE_PATH = find_executable("ffprobe.exe", [ 27 | r"C:\ffmpeg\bin", 28 | r"C:\Program Files\ffmpeg\bin", 29 | r"C:\Users\%USERNAME%\Documents\ffmpeg\bin" 30 | ]) 31 | FFMPEG_PATH = find_executable("ffmpeg.exe", [ 32 | r"C:\ffmpeg\bin", 33 | r"C:\Program Files\ffmpeg\bin", 34 | r"C:\Users\%USERNAME%\Documents\ffmpeg\bin" 35 | ]) 36 | 37 | if not FFPROBE_PATH or not FFMPEG_PATH: 38 | raise FileNotFoundError("ffprobe.exe atau ffmpeg.exe tidak ditemukan. Pastikan sudah ter-install dan PATH sudah diatur.") 39 | 40 | # ======================= PARAMETER ======================= 41 | HTTP_TIMEOUT = 7 42 | FF_TIMEOUT = 12 43 | MAX_WORKERS = 100 44 | FFMPEG_DURATION = 4 45 | DRM_PATTERN = re.compile(r'drm|license_|clearkey', re.IGNORECASE) 46 | 47 | # ======================= DIALOG FILE ======================= 48 | def get_file_via_dialog(title, filetypes, save=False, defaultextension=None): 49 | root = tk.Tk() 50 | root.withdraw() 51 | if save: 52 | return filedialog.asksaveasfilename( 53 | title=title, 54 | filetypes=filetypes, 55 | defaultextension=defaultextension 56 | ) 57 | else: 58 | return filedialog.askopenfilename(title=title, filetypes=filetypes) 59 | 60 | # ======================= PARSING M3U ======================= 61 | def parse_m3u(file_path): 62 | channels = [] 63 | current_meta = [] 64 | current_url = None 65 | current_group = "Unknown Group" 66 | 67 | with open(file_path, 'r', encoding='utf-8') as f: 68 | for line in f: 69 | line = line.strip() 70 | if not line: 71 | if current_url and current_meta: 72 | channels.append(create_channel(current_meta, current_url, current_group)) 73 | current_meta, current_url = [], None 74 | continue 75 | if line.startswith("http"): 76 | current_url = line 77 | if current_meta: 78 | channels.append(create_channel(current_meta, current_url, current_group)) 79 | current_meta, current_url = [], None 80 | elif line.startswith("#"): 81 | current_meta.append(line) 82 | if line.startswith("#EXTINF"): 83 | current_group = extract_group(line) 84 | if current_url and current_meta: 85 | channels.append(create_channel(current_meta, current_url, current_group)) 86 | return [ch for ch in channels if ch["metadata"]] 87 | 88 | def create_channel(meta, url, group): 89 | return {"metadata": meta, "url": url, "group": group} 90 | 91 | def extract_group(line): 92 | match = re.search(r'group-title="([^"]+)"', line) 93 | return match.group(1) if match else "Unknown Group" 94 | 95 | # ======================= VALIDASI ======================= 96 | def validate_channel(channel): 97 | url = channel["url"] 98 | meta = channel["metadata"] 99 | 100 | if has_drm(meta): 101 | return True, channel, None 102 | 103 | error_msg = None 104 | http_code = None 105 | 106 | try: 107 | response = requests.head(url, timeout=HTTP_TIMEOUT, allow_redirects=True) 108 | if response.status_code == 200: 109 | return True, channel, None 110 | else: 111 | http_code = f"HTTP {response.status_code}" 112 | except requests.exceptions.RequestException as e: 113 | error_msg = f"HTTP Error: {type(e).__name__}" 114 | 115 | if CHECK_FFPROBE and run_ffprobe(url): 116 | return True, channel, None 117 | elif CHECK_FFMPEG and run_ffmpeg(url): 118 | return True, channel, None 119 | 120 | return False, channel, error_msg or http_code or "All checks failed" 121 | 122 | def has_drm(metadata): 123 | return any(DRM_PATTERN.search(line) for line in metadata) 124 | 125 | def run_ffprobe(url): 126 | try: 127 | cmd = [FFPROBE_PATH, '-v', 'error', '-show_entries', 'format=duration', url] 128 | result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, 129 | timeout=FF_TIMEOUT, creationflags=subprocess.CREATE_NO_WINDOW) 130 | return bool(result.stdout.decode().strip()) 131 | except: 132 | return False 133 | 134 | def run_ffmpeg(url): 135 | try: 136 | cmd = [FFMPEG_PATH, '-v', 'error', '-t', str(FFMPEG_DURATION), '-i', url, '-f', 'null', '-'] 137 | result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, 138 | timeout=FF_TIMEOUT, creationflags=subprocess.CREATE_NO_WINDOW) 139 | return "Invalid data found" not in result.stderr.decode() 140 | except: 141 | return False 142 | 143 | # ======================= OUTPUT ======================= 144 | def write_m3u_output(valid_channels, http_errors, output_path): 145 | with open(output_path, 'w', encoding='utf-8') as f: 146 | f.write("#EXTM3U\n\n") 147 | if http_errors: 148 | f.write("# STATISTIK ERROR:\n") 149 | for code, count in http_errors.items(): 150 | f.write(f"# {code}: {count}\n") 151 | f.write("\n") 152 | for group in sorted(valid_channels.keys(), key=str.casefold): 153 | f.write(f"# GROUP: {group}\n") 154 | for ch in valid_channels[group]: 155 | write_channel(f, ch) 156 | 157 | def write_channel(file_obj, channel): 158 | extinf = [line for line in channel["metadata"] if line.startswith("#EXTINF")] 159 | other_meta = [line for line in channel["metadata"] if not line.startswith("#EXTINF")] 160 | for line in extinf + other_meta: 161 | file_obj.write(f"{line.strip()}\n") 162 | file_obj.write(f"{channel['url'].strip()}\n\n") 163 | 164 | def write_error_log(error_log, error_log_path): 165 | with open(error_log_path, "w", encoding="utf-8") as f: 166 | f.write("==== LOG ERROR DETAIL ====\n\n") 167 | for error_type, urls in error_log.items(): 168 | f.write(f"ERROR TYPE: {error_type}\n") 169 | f.write(f"TOTAL: {len(urls)}\n") 170 | f.write("URL TERKAIT:\n") 171 | for url in urls: 172 | f.write(f"- {url}\n") 173 | f.write("\n" + "="*50 + "\n") 174 | print(f"\nFile error log disimpan di: {os.path.abspath(error_log_path)}") 175 | 176 | def print_report(total, removed, http_errors): 177 | print(f"\n{'='*40}") 178 | print(f"Total Channel: {total}") 179 | print(f"Tersaring : {total - removed}") 180 | print(f"DiHapus : {removed}") 181 | if http_errors: 182 | print("\nStatistik Error HTTP:") 183 | for code, count in http_errors.items(): 184 | print(f"- {code}: {count}x") 185 | 186 | # ======================= MAIN ======================= 187 | def main(): 188 | print("== M3U Channel Filter ==") 189 | 190 | print("Silakan pilih file M3U input...") 191 | input_path = get_file_via_dialog("Pilih file M3U", [("M3U Files", "*.m3u")]) 192 | if not input_path: 193 | print("Batal. Tidak ada file dipilih.") 194 | return 195 | 196 | print("Pilih lokasi untuk menyimpan file hasil filter (.m3u)...") 197 | output_path = get_file_via_dialog("Simpan file output", [("M3U Files", "*.m3u")], save=True, defaultextension=".m3u") 198 | if not output_path: 199 | print("Batal. Tidak ada file output dipilih.") 200 | return 201 | 202 | print("Pilih lokasi untuk menyimpan file log error (.txt)...") 203 | log_path = get_file_via_dialog("Simpan log error", [("Text Files", "*.txt")], save=True, defaultextension=".txt") 204 | if not log_path: 205 | print("Batal. Tidak ada file log dipilih.") 206 | return 207 | 208 | if not os.path.exists(input_path): 209 | print(f"[ERROR] File input tidak ditemukan: {input_path}") 210 | return 211 | 212 | channels = parse_m3u(input_path) 213 | total = len(channels) 214 | print(f"Memulai validasi {total} channel...") 215 | 216 | valid_channels = defaultdict(list) 217 | error_log = defaultdict(list) 218 | http_errors = defaultdict(int) 219 | removed = 0 220 | 221 | with ThreadPoolExecutor(max_workers=MAX_WORKERS) as executor: 222 | futures = {executor.submit(validate_channel, ch): ch for ch in channels} 223 | for future in tqdm(as_completed(futures), total=total, desc="Memfilter", unit="ch", dynamic_ncols=True): 224 | ch = futures[future] 225 | is_valid, _, error = future.result() 226 | if is_valid: 227 | valid_channels[ch["group"]].append(ch) 228 | else: 229 | removed += 1 230 | if error: 231 | error_type = error.split(":")[0] if ":" in error else error 232 | error_log[error_type].append(ch["url"]) 233 | if "HTTP" in error_type: 234 | http_errors[error_type.split()[-1]] += 1 235 | 236 | write_m3u_output(valid_channels, http_errors, output_path) 237 | write_error_log(error_log, log_path) 238 | print_report(total, removed, http_errors) 239 | 240 | if __name__ == "__main__": 241 | main() 242 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Novantama 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Playlist/Korea.m3u: -------------------------------------------------------------------------------- 1 | http://cdns.jp-primehome.com:8000/zhongying/live/playlist.m3u8?cid=cs15 2 | 3 | #EXTINF:-1 tvg-id="BBSTV.kr" tvg-logo="https://i.imgur.com/01UmXRe.png" group-title="Religious",BBS Buddhist Broadcasting (1080p) 4 | https://vod2.abn.co.kr/IPHONE/abn.m3u8 5 | 6 | #EXTINF:-1 tvg-id="AlltheKPop.kr" tvg-logo="https://i.imgur.com/IFLXi6n.png" group-title="Undefined",All The K-POP (1080p) [Not 24/7] 7 | https://cgntvliveweb-998.acs.wecandeo.com/ms/2850/998/index.m3u8 8 | 9 | #EXTINF:-1 tvg-id="CJOnStyle.kr" tvg-logo="https://i.imgur.com/JiSfEBv.png" group-title="Shop",CJ OnStyle (540p) [FHD] 10 | http://bbstv.clouducs.com:1935/bbstv-live/livestream/playlist.m3u8 11 | 12 | #EXTINF:-1 tvg-id="BTNTV.kr" tvg-logo="https://i.imgur.com/sOoS7RQ.png" group-title="Religious",BTN TV (1080p) [FHD] 13 | http://amdlive-ch01.ctnd.com.edgesuite.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8 14 | 15 | #EXTINF:-1 tvg-id="BBCNewsAsiaPacific.uk" tvg-logo="https://i.imgur.com/REuN9RR.png" group-title="News",BBC News Asia Pacific (720p) [FHD] 16 | https://bloomberg.com/media-manifest/streams/asia-event.m3u8 17 | 18 | #EXTINF:-1 tvg-id="Cchannel.kr" tvg-logo="https://i.ibb.co/GC73Fxt/logo.png" group-title="Religious",C Channel (1080p) [Not 24/7] [HD] 19 | https://live-ch1.cjonstyle.net/cjmalllive/stream2/playlist.m3u8 20 | 21 | #EXTINF:-1 tvg-id="CJOnStylePlus.kr" tvg-logo="https://i.imgur.com/OYmOL20.png" group-title="Shop",CJ OnStyle Plus (540p) 22 | https://bloomberg.com/media-manifest/streams/asia.m3u8 23 | 24 | #EXTINF:-1 tvg-id="BloombergTVAsiaLiveEvent.hk" tvg-logo="https://i.imgur.com/OuogLHx.png" group-title="Business",Bloomberg TV Asia Live Event (720p) [HD] 25 | https://live-ch2.cjonstyle.net/cjosplus/live2/playlist.m3u8 26 | 27 | #EXTINF:-1 tvg-id="CTSTV.kr" tvg-logo="https://i.imgur.com/z3L8uNB.png" group-title="Religious",CTS기독교TV (720p) 28 | https://ythls.armelin.one/channel/UC9Ac9DjBEmNqjAYxf8V1HPA.m3u8 29 | 30 | #EXTINF:-1 tvg-id="CGNTVSouthKorea.kr" tvg-logo="https://i.imgur.com/zwZASOB.png" group-title="Religious",CGNTV (720p) [HD] 31 | https://ythls.armelin.one/channel/UCPde4guD9yFBRzkxk2PatoA.m3u8 32 | 33 | #EXTINF:-1 tvg-id="ArirangTV.kr" tvg-logo="https://i.imgur.com/Asu5pE9.png" group-title="General;News",Arirang [FHD] 34 | https://d34t5yjz1ooymj.cloudfront.net/out/v1/875039d5eba0478fa8375a06b3aa5a37/index.m3u8 35 | 36 | #EXTINF:-1 tvg-id="ChannelA.kr" tvg-logo="https://i.imgur.com/W9laHPD.png" group-title="General",Channel A [Geo-blocked] [FHD] 37 | https://ebsonair.ebs.co.kr/ebs1familypc/familypc1m/playlist.m3u8 38 | 39 | #EXTINF:-1 tvg-id="EBS2TV.kr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/db/EBS_2TV_Logo.svg/512px-EBS_2TV_Logo.svg.png" group-title="Undefined",EBS 2 (400p) [Not 24/7] 40 | https://ebsonair.ebs.co.kr/plus3familypc/familypc1m/playlist.m3u8 41 | 42 | #EXTINF:-1 tvg-id="EBSKids.kr" tvg-logo="https://i.imgur.com/62oo8Bx.png" group-title="Kids",EBS kids (400p) [Not 24/7] 43 | https://ebsonair.ebs.co.kr/ebs2familypc/familypc1m/playlist.m3u8 44 | 45 | #EXTINF:-1 tvg-id="EBSEnglish.kr" tvg-logo="https://i.imgur.com/5wLJzb0.png" group-title="Education",EBS E (400p) [Not 24/7] 46 | https://ebsonair.ebs.co.kr/ebsufamilypc/familypc1m/playlist.m3u8 47 | 48 | #EXTINF:-1 tvg-id="EBSPlus1.kr" tvg-logo="https://i.imgur.com/aCeuhon.png" group-title="Undefined",EBS+ 1 (400p) 49 | https://cdn3.wowza.com/1/ZVBYYXFLLzE0c3NC/Qk1FMURC/hls/live/playlist.m3u8 50 | 51 | #EXTINF:-1 tvg-id="EWTNAsiaPacific.us" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/c/c8/EWTN_Logo_and_Wordmark_%282016%29.svg/512px-EWTN_Logo_and_Wordmark_%282016%29.svg.png" group-title="Religious",EWTN Asia-Pacific (720p) [Not 24/7] [HD] 52 | https://ebsonair.ebs.co.kr/plus1familypc/familypc1m/playlist.m3u8 53 | 54 | #EXTINF:-1 tvg-id="EBSPlus2.kr" tvg-logo="https://i.imgur.com/pllIMGi.png" group-title="Education",EBS+ 2 (400p) 55 | https://ebsonair.ebs.co.kr/plus2familypc/familypc1m/playlist.m3u8 56 | 57 | #EXTINF:-1 tvg-id="EWTNAfricaAsia.us" tvg-logo="https://i.imgur.com/F8ZM25a.png" group-title="Undefined",EWTN Africa Asia (720p) 58 | https://cdn3.wowza.com/1/QmVNUVhTNTZSS3Uz/YWQ0aHpi/hls/live/playlist.m3u8 59 | 60 | #EXTINF:-1 tvg-id="EdailyTV.kr" tvg-logo="https://i.imgur.com/3E72tK9.png" group-title="Undefined",Edaily TV (1080p) [HD] 61 | https://gstv-gsshop.gsshop.com/gsshop_hd/gsshop_hd.stream/playlist.m3u8 62 | 63 | #EXTINF:-1 tvg-id="GongyoungHomeShopping.kr" tvg-logo="https://i.imgur.com/YL3rpd7.png" group-title="Shop",Gongyoung Shopping (720p) [HD] 64 | https://etv.publichs.com/live5.stream/playlist.m3u8 65 | 66 | #EXTINF:-1 tvg-id="GoodTV.kr" tvg-logo="https://i.ibb.co/1v913gn/logo-goodtv.png" group-title="Religious",GoodTV (1080p) 67 | http://mobliestream.c3tv.com:1935/live/goodtv.sdp/playlist.m3u8 68 | 69 | #EXTINF:-1 tvg-id="GugakTV.kr" tvg-logo="https://i.imgur.com/Ey7Htm8.png" group-title="News",GugakTV 국악방송 (1080p) [FHD] 70 | https://s28.qtcdn.co.kr/media/liveM3U8/idx/518045142/enc/1860408350/playlist.m3u8 71 | 72 | #EXTINF:-1 tvg-id="HyundaiHomeShopping.kr" tvg-logo="https://i.imgur.com/NJpECmq.png" group-title="Shop",Hyundai Home Shopping (720p) 73 | https://ythls.armelin.one/channel/UCqGxkgVnPc7arUR7MdCi99g.m3u8 74 | 75 | #EXTINF:-1 tvg-id="GSMyShop.kr" tvg-logo="https://i.imgur.com/ETPQwui.png" group-title="Shop",GS My Shop (1080p) [FHD] 76 | https://fgtvlive.fgtv.com/smil:fgtv.smil/playlist.m3u8 77 | 78 | #EXTINF:-1 tvg-id="GCN.kr" tvg-logo="https://i.imgur.com/yzwtMOC.png" group-title="Religious",GCN24 Korean (1080p) [HD] 79 | https://ythls.armelin.one/channel/UC8Sv6O3Ux8ePVqorx8aOBMg.m3u8 80 | 81 | #EXTINF:-1 tvg-id="FGTV.kr" tvg-logo="https://i.ibb.co/crxz0fd/yfgc-hearder-logo.png" group-title="Religious",FGTV (720p) [FHD] 82 | http://mediaworks.dema.mil.kr:1935/live_edge/cudo.sdp/playlist.m3u8 83 | 84 | #EXTINF:-1 tvg-id="HomeShopping.kr" tvg-logo="https://i.imgur.com/IcexRXG.png" group-title="Shop",Home & Shopping (720p) [FHD] 85 | https://gstv-myshop.gsshop.com/myshop_hd/myshop_hd.stream/playlist.m3u8 86 | 87 | #EXTINF:-1 tvg-id="GSShop.kr" tvg-logo="https://i.imgur.com/F7QDbEy.png" group-title="Shop",GS Shop (1080p) [HD] 88 | https://jcnonair-1108.acs.wecandeo.com/ms/3162/1108/index.m3u8 89 | 90 | #EXTINF:-1 tvg-id="JobplusTV.kr" tvg-logo="https://i.imgur.com/Y5Zg5SR.png" group-title="Undefined",Job Plus TV (한국직업방송) (480p) [FHD] 91 | http://live.worktv.or.kr:1935/live/wowtvlive1.sdp/playlist.m3u8 92 | 93 | #EXTINF:-1 tvg-id="KBS1TV.kr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/KBS_1_logo.svg/512px-KBS_1_logo.svg.png" group-title="Undefined",KBS 1TV [Not 24/7] 94 | https://dtvstreaming.hyundaihmall.com/newcjp3/_definst_/newcjpstream.smil/playlist.m3u8 95 | 96 | #EXTINF:-1 tvg-id="" tvg-logo="" group-title="Undefined",JCN TV (1080p) 97 | https://cdn-01.bonus-tv.ru/arirang_edge/playlist.m3u8 98 | 99 | #EXTINF:-1 tvg-id="ArirangRadio.kr" tvg-logo="https://i.imgur.com/dtfiG9k.png" group-title="General",Arirang Radio (720p) 100 | https://livejj.hyundaihmall.com:8443/live/ngrp:hmall.stream_pc/playlist.m3u8 101 | 102 | #EXTINF:-1 tvg-id="HyundaiHomeShoppingPlusShop.kr" tvg-logo="https://i.imgur.com/DoNOuZE.png" group-title="Shop",Hyundai Home Shopping Plus (720p) [HD] 103 | http://mytv.dothome.co.kr/ch/public/1.php 104 | 105 | #EXTINF:-1 tvg-id="KBS2TV.kr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/KBS_2_logo.svg/512px-KBS_2_logo.svg.png" group-title="Undefined",KBS 2TV [Not 24/7] 106 | https://btn.nowcdn.co.kr/btn/btnlive2m/playlist.m3u8 107 | 108 | #EXTINF:-1 tvg-id="BloombergTVAsia.hk" tvg-logo="https://i.imgur.com/OuogLHx.png" group-title="Business",Bloomberg TV Asia (720p) [FHD] 109 | http://mytv.dothome.co.kr/ch/public/3.php 110 | 111 | #EXTINF:-1 tvg-id="KBSDrama.kr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/KBS_DRAMA.svg/512px-KBS_DRAMA.svg.png" group-title="Series",KBS Drama (480p) 112 | http://mytv.dothome.co.kr/ch/catv/2.php 113 | 114 | #EXTINF:-1 tvg-id="KBSJoy.kr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/KBS_JOY.svg/512px-KBS_JOY.svg.png" group-title="Undefined",KBS Joy (480p) 115 | http://119.77.96.184:1935/chn05/chn05/playlist.m3u8 116 | 117 | #EXTINF:-1 tvg-id="KMTV.kr" tvg-logo="https://i.imgur.com/eysZDoU.png" group-title="Music",KMTV [HD] 118 | http://mytv.dothome.co.kr/ch/catv/4.php 119 | 120 | #EXTINF:-1 tvg-id="KCTV.kr" tvg-logo="https://i.imgur.com/IHkZpaI.png" group-title="Undefined",KCTV 광주 CH05 (720p) [Not 24/7] 121 | http://mytv.dothome.co.kr/ch/catv/5.php 122 | 123 | #EXTINF:-1 tvg-id="KBSLiveCamDokDo.kr" tvg-logo="https://i.imgur.com/7mZnPO5.png" group-title="Undefined",KBS LiveCam DokDo (540p) 124 | http://mytv.dothome.co.kr/ch/catv/6.php 125 | 126 | #EXTINF:-1 tvg-id="KBSLife.kr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/64/KBS_Life.svg/512px-KBS_Life.svg.png" group-title="Undefined",KBS Life (480p) 127 | http://mytv.dothome.co.kr/ch/catv/3.php 128 | 129 | #EXTINF:-1 tvg-id="KBSKids.kr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/KBS_kids.svg/512px-KBS_kids.svg.png" group-title="Kids",KBS Kids (480p) 130 | https://hlive.ktv.go.kr/live/klive_h.stream/playlist.m3u8 131 | 132 | #EXTINF:-1 tvg-id="" tvg-logo="" group-title="Undefined",Korean Song Channel (720p) [FHD] 133 | http://live.kytv.co.kr:8080/hls/stream.m3u8 134 | 135 | #EXTINF:-1 tvg-id="LotteHomeShopping.kr" tvg-logo="https://i.imgur.com/dJeNehc.png" group-title="Shop",Lotte Home Shopping (720p) 136 | http://andong.webcasting.co.kr/live/mbc/playlist.m3u8 137 | 138 | #EXTINF:-1 tvg-id="HLKUDTV.kr" tvg-logo="https://i.imgur.com/jiFOYi5.png" group-title="Undefined",MBC Busan (부산MBC) (360p) [Not 24/7] 139 | https://ythls.armelin.one/channel/UCF8AeLlUbEpKju6v1H6p8Eg.m3u8 140 | 141 | #EXTINF:-1 tvg-id="KTV.kr" tvg-logo="https://i.ibb.co/WkrLDJW/Screenshot-20230714-135036-removebg-preview.png" group-title="Legislative",Korea TV (1080p) [FHD] 142 | http://kbs-dokdo.gscdn.com/dokdo_300/dokdo_300.stream/playlist.m3u8 143 | 144 | #EXTINF:-1 tvg-id="KBSStory.kr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7e/KBS_Story.svg/512px-KBS_Story.svg.png" group-title="Undefined",KBS Story (480p) 145 | https://pchlslivesw.lotteimall.com/live/livestream/lotteimalllive_mp4.m3u8 146 | 147 | #EXTINF:-1 tvg-id="HLAWDTV.kr" tvg-logo="https://i.imgur.com/vYXAkgy.png" group-title="Undefined",MBC Andong (안동 MBC) (360p) [Not 24/7] [HD] 148 | http://123.254.72.24:1935/tvlive/livestream2/playlist.m3u8 149 | 150 | #EXTINF:-1 tvg-id="HLCNDTV.kr" tvg-logo="https://i.imgur.com/wmGJgYh.png" group-title="Undefined",MBC Gwangju (광주 MBC) (1080p) [Geo-blocked] [Not 24/7] [FHD] 151 | https://mgugaklive.nowcdn.co.kr/gugakvideo/gugakvideo.stream/playlist.m3u8 152 | 153 | #EXTINF:-1 tvg-id="GugbangTV.kr" tvg-logo="https://i.imgur.com/f1tz5fg.png" group-title="Undefined",Gugbang TV (1080p) [Not 24/7] [FHD] 154 | http://211.33.246.4:32954/cj_live/myStream.sdp/playlist.m3u8 155 | 156 | #EXTINF:-1 tvg-id="HLCTDTV.kr" tvg-logo="https://i.imgur.com/LlYQR8m.png" group-title="Undefined",MBC Daegu (대구 MBC) (480p) [Not 24/7] [HD] 157 | https://ns1.tjmbc.co.kr/live/myStream.sdp/playlist.m3u8 158 | 159 | #EXTINF:-1 tvg-id="MBCDrama.kr" tvg-logo="https://i.imgur.com/Q20rqnX.png" group-title="Series",MBC Drama (480p) [Geo-blocked] [HD] 160 | https://stream.chmbc.co.kr/TV/myStream/playlist.m3u8 161 | 162 | #EXTINF:-1 tvg-id="HLAODTV.kr" tvg-logo="https://i.imgur.com/uR0gScb.png" group-title="Undefined",MBC Chungbuk (MBC 충북) (720p) [Not 24/7] [HD] 163 | https://ythls.armelin.one/channel/UC-VbFgagk6GJGDJgRQIMpZw.m3u8 164 | 165 | #EXTINF:-1 tvg-id="HLAQDTV.kr" tvg-logo="https://i.imgur.com/FGsKCH3.png" group-title="Undefined",MBC Gangwon (MBC 강원영동) (1080p) [Not 24/7] [FHD] 166 | http://nonghyup.flive.skcdn.com/nonghyup/_definst_/nhlive/playlist.m3u8 167 | 168 | #EXTINF:-1 tvg-id="NSHomeShopping.kr" tvg-logo="https://i.imgur.com/Q9xsDQo.png" group-title="Shop",NS Home Shopping (720p) [HD] 169 | https://media.joycorp.co.kr:4443/live/ngrp:live_all/playlist.m3u8 170 | 171 | #EXTINF:-1 tvg-id="NHTV.kr" tvg-logo="https://i.imgur.com/DfECkgB.png" group-title="Undefined",NHTV (720p) [HD] 172 | http://vod.mpmbc.co.kr:1935/live/encoder-tv/playlist.m3u8 173 | 174 | #EXTINF:-1 tvg-id="MBCNet.kr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/MBCNET_%EB%A1%9C%EA%B3%A0.svg/512px-MBCNET_%EB%A1%9C%EA%B3%A0.svg.png" group-title="Undefined",MBC Net (480p) [Geo-blocked] [HD] 175 | https://ythls.armelin.one/channel/UCnfwIKyFYRuqZzzKBDt6JOA.m3u8 176 | 177 | #EXTINF:-1 tvg-id="NBS.kr" tvg-logo="https://i.imgur.com/pOSroOE.png" group-title="Undefined",NBS Korea Agricultural Broadcasting (720p) [FHD] 178 | https://github.com/BellezaEmporium/IPTV_Exception/raw/master/channels/kr/natv.m3u8 179 | 180 | #EXTINF:-1 tvg-id="HLQSDTV.kr" tvg-logo="https://i.imgur.com/oWB3ApR.png" group-title="General",OBS Gyeongin TV (OBS경인TV) (540p) [Not 24/7] [HD] 181 | https://wowza.jejumbc.com/live/tv_jejumbc/playlist.m3u8 182 | 183 | #EXTINF:-1 tvg-id="HLAMDTV.kr" tvg-logo="https://i.imgur.com/5oraHc0.png" group-title="Undefined",MBC Mokpo (목포 MBC) (720p) [Not 24/7] 184 | https://livestream.nsmall.com/IPHONE/nsmallMobile.m3u8 185 | 186 | #EXTINF:-1 tvg-id="NSShopPlus.kr" tvg-logo="https://i.imgur.com/7KmXNci.png" group-title="Shop",NS Shop Plus (720p) 187 | https://5ee1ec6f32118.streamlock.net/live/livetv/playlist.m3u8 188 | 189 | #EXTINF:-1 tvg-id="HLCQDTV.kr" tvg-logo="https://i.imgur.com/HCbvAiM.png" group-title="Undefined",MBC Daejeon (대전 MBC) (720p) [Not 24/7] 190 | http://d26sxnc75smwvh.cloudfront.net/livehttporigin/rutclive_720p2.stream/playlist.m3u8 191 | 192 | #EXTINF:-1 tvg-id="HLDRDTV.kr" tvg-logo="https://i.imgur.com/zVunmpQ.png" group-title="Undefined",SBS CJB (540p) [Not 24/7] [HD] 193 | https://live.knou.ac.kr/knou1/live1/playlist.m3u8 194 | 195 | #EXTINF:-1 tvg-id="PaxEconomyTV.kr" tvg-logo="https://i.imgur.com/Ncd4CL3.png" group-title="Business",Pax Economy TV (1080p) [Not 24/7] [FHD] 196 | https://shoppstream.nsmall.com/IPHONE/mobile.m3u8 197 | 198 | #EXTINF:-1 tvg-id="NationalAssemblyTV.kr" tvg-logo="https://i.imgur.com/UKdB8vD.png" group-title="Legislative",National Assembly TV (720p) 199 | http://123.140.197.22/stream/1/play.m3u8 200 | 201 | #EXTINF:-1 tvg-id="HLDQDTV.kr" tvg-logo="https://i.imgur.com/byss0Ld.png" group-title="Undefined",SBS JTV (406p) [Not 24/7] 202 | https://5c3639aa99149.streamlock.net/live_TV/tv/playlist.m3u8 203 | 204 | #EXTINF:-1 tvg-id="MTN.kr" tvg-logo="https://i.imgur.com/MS0lqoG.png" group-title="Undefined",MTN (720p) [FHD] 205 | http://1.222.207.80:1935/live/cjbtv/playlist.m3u8 206 | 207 | #EXTINF:-1 tvg-id="HLCGDTV.kr" tvg-logo="https://i.imgur.com/ABdmZMc.png" group-title="Undefined",SBS G1 (360p) [Not 24/7] 208 | https://ythls.armelin.one/channel/UC6UEuBvk-0rmV4FUu0LDiTw.m3u8 209 | 210 | #EXTINF:-1 tvg-id="RTV.kr" tvg-logo="https://i.imgur.com/Vhp7yR7.png" group-title="Undefined",RTV (720p) [FHD] 211 | https://vod.obs.co.kr:444/live/obsstream1/tv.stream/playlist.m3u8 212 | 213 | #EXTINF:-1 tvg-id="OCN.kr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/9/95/OCN_Logo.svg/512px-OCN_Logo.svg.png" group-title="Movies;Series",OCN (576p) 214 | http://61.82.49.4:1935/live/_definst_/tv.stream/playlist.m3u8 215 | 216 | #EXTINF:-1 tvg-id="HLKJDTV.kr" tvg-logo="https://i.imgur.com/iAz0Psw.png" group-title="Undefined",SBS JIBS (720p) [Not 24/7] [HD] 217 | http://1.245.74.5:1935/live/tv/.m3u8 218 | 219 | #EXTINF:-1 tvg-id="HLDPDTV.kr" tvg-logo="https://i.imgur.com/BBCoqIf.png" group-title="Undefined",SBS UBC (540p) [Not 24/7] [HD] 220 | https://stream1.knn.co.kr/hls/9ly4534y7dm2xfa123r2_tv/index.m3u8 221 | 222 | #EXTINF:-1 tvg-id="SBSNews.kr" tvg-logo="https://i.imgur.com/VY6uEE9.png" group-title="News",SBS News (1080p) [Not 24/7] 223 | http://61.85.197.53:1935/jtv_live/myStream/playlist.m3u8 224 | 225 | #EXTINF:-1 tvg-id="HLDHDTV.kr" tvg-logo="https://i.imgur.com/Srsw4Mi.png" group-title="Undefined",SBS KBC (1080p) [Not 24/7] 226 | http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8 227 | 228 | #EXTINF:-1 tvg-id="HLDGDTV.kr" tvg-logo="https://i.imgur.com/gaBq1Lz.png" group-title="Undefined",SBS KNN (1080p) [Not 24/7] [FHD] 229 | https://live.shoppingntmall.com/live/10011.m3u8 230 | 231 | #EXTINF:-1 tvg-id="TBSTV.kr" tvg-logo="https://i.imgur.com/iOnWS6V.png" group-title="Undefined",TBS Seoul (720p) 232 | https://cdntv.tbs.seoul.kr/tbs/tbs_tv_web.smil/playlist.m3u8 233 | 234 | #EXTINF:-1 tvg-id="TBSeFM.kr" tvg-logo="https://tbs.seoul.kr/common/images/gnb/logo.png" group-title="General",TBS eFM (1080p) [Not 24/7] [FHD] 235 | https://liveout.catenoid.net/live-02-shinsegaetvshopping/shinsegaetvshopping_720p/playlist.m3u8 236 | 237 | #EXTINF:-1 tvg-id="ShoppingNT.kr" tvg-logo="https://i.imgur.com/BgbJp5X.png" group-title="Shop",Shopping NT (720p) [HD] 238 | https://ythls.armelin.one/channel/UCkinYTS9IHqOEwR1Sze2JTw.m3u8 239 | 240 | #EXTINF:-1 tvg-id="HLDEDTV.kr" tvg-logo="https://i.imgur.com/jknoVmp.png" group-title="Undefined",SBS TBC (540p) [Geo-blocked] [Not 24/7] [FHD] 241 | http://59.23.231.102:1935/live/UBCstream/playlist.m3u8 242 | 243 | #EXTINF:-1 tvg-id="SENTV.kr" tvg-logo="https://i.imgur.com/FimaHhq.png" group-title="Undefined",SEN TV (720p) [Not 24/7] 244 | https://ythls.armelin.one/channel/UC3p-0EWA8OXko2EUDUXAy5w.m3u8 245 | 246 | #EXTINF:-1 tvg-id="STB.kr" tvg-logo="https://i.imgur.com/MTGJD0m.png" group-title="Undefined",STB (720p) [HD] 247 | https://ott.tv5monde.com/Content/HLS/Live/channel(pacifique)/variant.m3u8 248 | 249 | #EXTINF:-1 tvg-id="TomatoTV.kr" tvg-logo="https://i.imgur.com/g8UJus1.png" group-title="General",Tomato TV (720p) [Not 24/7] [FHD] 250 | https://liveout.catenoid.net/live-05-wshopping/wshopping_1500k/playlist.m3u8 251 | 252 | #EXTINF:-1 tvg-id="WBCTV.kr" tvg-logo="https://i.imgur.com/IkFev3L.png" group-title="Undefined",WBC TV (1080p) [HD] 253 | https://ythls.armelin.one/channel/UCHjDAeTbO4fQilomLD-kaXg.m3u8 254 | 255 | #EXTINF:-1 tvg-id="TVChosun.kr" tvg-logo="https://i.imgur.com/62EwaCG.png" group-title="General",TV Chosun (720p) [FHD] 256 | #EXTVLCOPT:http-referrer=http://broadcast.tvchosun.com/onair/on.cstv 257 | https://ythls.armelin.one/channel/UCgJ5pT6S2NuTVP-6-AlLZew.m3u8 258 | 259 | #EXTINF:-1 tvg-id="WShopping.kr" tvg-logo="https://i.imgur.com/hfXjVJd.png" group-title="Shop",W Shopping (720p) [FHD] 260 | https://ythls.armelin.one/channel/UChlgI3UHCOnwUGzWzbJ3H5w.m3u8 261 | 262 | #EXTINF:-1 tvg-id="YTNDMB.kr" tvg-logo="https://i.imgur.com/50VQSBk.png" group-title="Undefined",YTN DMB (720p) [Not 24/7] [FHD] 263 | https://ythls.armelin.one/channel/UC38IlqMxZ_YtFg3eSGmmJnQ.m3u8 264 | 265 | #EXTINF:-1 tvg-id="YTNScience.kr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/YTN_%EC%82%AC%EC%9D%B4%EC%96%B8%EC%8A%A4_%EB%A1%9C%EA%B3%A0_%EB%89%B4.png/512px-YTN_%EC%82%AC%EC%9D%B4%EC%96%B8%EC%8A%A4_%EB%A1%9C%EA%B3%A0_%EB%89%B4.png" group-title="Science",YTN Science (720p) [HD] 266 | https://ythls.armelin.one/channel/UCZdBJIbJz0P9xyFipgOj1fA.m3u8 267 | 268 | #EXTINF:-1 tvg-id="YTN2.kr" tvg-logo="https://i.imgur.com/g6Nhwmb.png" group-title="Education",YTN2 (720p) [Not 24/7] [FHD] 269 | https://ythls.armelin.one/channel/UCDww6ExpwQS0TzmREIOo40Q.m3u8 270 | 271 | #EXTINF:-1 tvg-id="YonhapNewsTV.kr" tvg-logo="https://i.imgur.com/3aLkU2I.png" group-title="General",Yonhap News TV (1080p) [FHD] 272 | https://ythls.armelin.one/channel/UCTHCOPwqNfZ0uiKOvFyhGwg.m3u8 273 | 274 | #EXTINF:-1 tvg-id="ZarokTV.iq" tvg-logo="https://i.imgur.com/o0eevnb.png" group-title="Animation;Education;Family;Kids;Music",Zarok TV Sorani (720p) [FHD] 275 | https://cdnlive179.smartucc.kr/smartlive/312/46324be24454bd98f785039457ac695d/playlist.m3u8 276 | 277 | #EXTINF:-1 tvg-id="WBSTV.kr" tvg-logo="https://i.imgur.com/Lhz1Egi.png" group-title="Religious",WBS TV (720p) [FHD] 278 | https://zindisorani.zaroktv.com.tr/hls/stream.m3u8 279 | 280 | #EXTINF:-1 tvg-id="tvN.kr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/6/67/Logo_tvN.svg/512px-Logo_tvN.svg.png" group-title="Entertainment;Series",tvN Asia (Indonesian Subtitle) (576p) [HD] 281 | -------------------------------------------------------------------------------- /Playlist/UnitedKingdom.m3u: -------------------------------------------------------------------------------- 1 | https://feeds.intoday.in/aajtak/api/aajtakhd/master.m3u8 2 | 3 | #EXTINF:-1 tvg-id="AathavanTV.uk" tvg-logo="https://i.imgur.com/LEVEhTH.png" group-title="United Kingdom",Aathavan TV [FHD] 4 | https://cdnamd-hls-globecast.akamaized.net/live/ramdisk/akaal_tv/hls1_smart_akaal/akaal_tv.m3u8 5 | 6 | #EXTINF:-1 tvg-id="AlbUKTV.uk" tvg-logo="https://i.imgur.com/TMg4Kxi.png" group-title="United Kingdom",AlbUK TV [SD] 7 | http://albuk.dyndns.tv:1935/albuk/albuk.stream/playlist.m3u8 8 | 9 | #EXTINF:-1 tvg-id="AlHiwarTV.uk" tvg-logo="https://i.imgur.com/UjOxwdd.png" group-title="United Kingdom",Alhiwar TV [FHD] 10 | https://mn-nl.mncdn.com/alhiwar_live/smil:alhiwar.smil/playlist.m3u8 11 | 12 | #EXTINF:-1 tvg-id="AlmagharibiaTV.uk" tvg-logo="https://i.imgur.com/XE6OWcb.png" group-title="United Kingdom",Almagharibia TV [FHD] 13 | https://live-anandtv.anandmedia.net/anandtvapp/anandtv/index.m3u8 14 | 15 | #EXTINF:-1 tvg-id="AngelTVEurope.in" tvg-logo="https://i.imgur.com/qKLEGU7.png" group-title="United Kingdom",Angel TV Europe [HD] 16 | https://ythls.armelin.one/channel/UCwKS2U-DwjPZZvM6mSXPKgA.m3u8 17 | 18 | #EXTINF:-1 tvg-id="AnandTV.uk" tvg-logo="https://i.imgur.com/5VOPFzs.png" group-title="United Kingdom",Anand TV [FHD] 19 | https://vs-hls-push-ww-live.akamaized.net/x=4/i=urn:bbc:pips:service:bbc_news_channel_hd/t=3840/v=pv14/b=5070016/main.m3u8 20 | 21 | #EXTINF:-1 tvg-id="BBCNewsArabic.uk" tvg-logo="https://i.imgur.com/wgIUsFu.png" group-title="United Kingdom",BBC News Arabic 22 | https://stream.ecable.tv/afrobeats/index.m3u8 23 | 24 | #EXTINF:-1 tvg-id="AhlulbaytTV.uk" tvg-logo="https://i.imgur.com/lNGJGjy.png" group-title="United Kingdom",Ahlulbayt TV [FHD] 25 | https://ythls.armelin.one/channel/UCelk6aHijZq-GJBBB9YpReA.m3u8 26 | 27 | #EXTINF:-1 tvg-id="BBCOneEast.uk" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8b/BBC_One_logo_2021.svg/512px-BBC_One_logo_2021.svg.png" group-title="United Kingdom",BBC One East [Geo-blocked] [FHD] 28 | http://ott-cdn.ucom.am/s24/index.m3u8 29 | 30 | #EXTINF:-1 tvg-id="BENTelevision.uk" tvg-logo="https://i.imgur.com/DUAjjvT.png" group-title="United Kingdom",BEN Television (576p) [SD] 31 | https://bloomberg.com/media-manifest/streams/eu.m3u8 32 | 33 | #EXTINF:-1 tvg-id="BoxHits.uk" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/4f/Box_Hits_2016.png" group-title="United Kingdom",Box Hits (576p) [HD] 34 | https://bloomberg.com/media-manifest/streams/eu-event.m3u8 35 | 36 | #EXTINF:-1 tvg-id="BloombergTVEurope.uk" tvg-logo="https://i.imgur.com/OuogLHx.png" group-title="United Kingdom",Bloomberg TV Europe [HD] 37 | https://webstreaming-11.viewmedia.tv/web_153/Stream/playlist.m3u8 38 | 39 | #EXTINF:-1 tvg-id="BeanoTV.uk" tvg-logo="https://i.imgur.com/IKHFZDJ.png" group-title="United Kingdom",Beano TV [SD] 40 | https://run-br-uk.otteravision.com/run/br_uk/br_uk_720.m3u8 41 | 42 | #EXTINF:-1 tvg-id="BritAsiaTV.uk" tvg-logo="https://i.imgur.com/ULm80XF.png" group-title="United Kingdom",Brit Asia Live (US Pacific) 43 | https://cnn-cnninternational-1-eu.rakuten.wurl.tv/playlist.m3u8 44 | 45 | #EXTINF:-1 tvg-id="ChannelS.uk" tvg-logo="https://i.imgur.com/hJxFLvF.png" group-title="United Kingdom",Channel S (576p) [HD] 46 | https://uksono1-samsunguk.amagi.tv/playlist.m3u8 47 | 48 | #EXTINF:-1 tvg-id="Cruise1stTV.uk" tvg-logo="https://i.imgur.com/L1bysJS.png" group-title="United Kingdom",Cruise1st TV [Geo-blocked] [FHD] 49 | https://cdn3.wowza.com/1/T2NXeHF6UGlGbHY3/WFluRldQ/hls/live/playlist.m3u8 50 | 51 | #EXTINF:-1 tvg-id="ElshaddaiTelevisionNetwork.uk" tvg-logo="https://i.imgur.com/iw5XaLi.png" group-title="United Kingdom",Elshaddai Television Network [HD] 52 | https://ythls.armelin.one/channel/UC9r76Tzp5HxeQG7SqZwV3OA.m3u8 53 | 54 | #EXTINF:-1 tvg-id="DeenTV.uk" tvg-logo="https://i.imgur.com/Zp62Nbd.png" group-title="United Kingdom",Deen TV (576p) [FHD] 55 | https://discoverfilm-discoverfilm-1-nl.samsung.wurl.tv/playlist.m3u8 56 | 57 | #EXTINF:-1 tvg-id="DunyaNewsUK.uk" tvg-logo="https://i.imgur.com/dtrTfZC.png" group-title="United Kingdom",Dunya News (UK Feed) [HD] 58 | https://ap02.iqplay.tv:8082/iqb8002/d33ntv/playlist.m3u8 59 | 60 | #EXTINF:-1 tvg-id="DiscoverFilm.uk" tvg-logo="https://i.imgur.com/oMnpsQ5.png" group-title="United Kingdom",DiscoverFilm 61 | https://5d00db0e0fcd5.streamlock.net/7586/7586/playlist.m3u8 62 | 63 | #EXTINF:-1 tvg-id="EmanChannel.uk" tvg-logo="https://i.imgur.com/ugn0DWe.png" group-title="United Kingdom",Eman Channel (576p) 64 | https://fashiontv-fashiontv-5-nl.samsung.wurl.tv/playlist.m3u8 65 | 66 | #EXTINF:-1 tvg-id="FashionTelevision.uk" tvg-logo="https://i.imgur.com/b4KYkyd.png" group-title="United Kingdom",Fashion TV (England) [FHD] 67 | https://ythls.armelin.one/channel/UC2ZoBzeCXrZcMz4f82eMe-g.m3u8 68 | 69 | #EXTINF:-1 tvg-id="FashionTVEurope.fr" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Fashion_TV_logo.svg/512px-Fashion_TV_logo.svg.png" group-title="United Kingdom",Fashion TV [FHD] 70 | https://ukintl.dunyanews.tv/liveuk/ngrp:dunyalive_all/playlist.m3u8 71 | 72 | #EXTINF:-1 tvg-id="EDGEsport.uk" tvg-logo="https://i.imgur.com/bgQ6kz7.png" group-title="United Kingdom",EDGEsport [HD] 73 | https://cdn-apse1-prod.tsv2.amagi.tv/linear/amg01076-lightningintern-gbnewsnz-samsungnz/playlist.m3u8 74 | 75 | #EXTINF:-1 tvg-id="GarshomTV.uk" tvg-logo="https://i.imgur.com/KnbwUyb.png" group-title="United Kingdom",Garshom TV [FHD] 76 | https://spi-filmstream-1-in.samsung.wurl.tv/playlist.m3u8 77 | 78 | #EXTINF:-1 tvg-id="GBNews.uk" tvg-logo="https://upload.wikimedia.org/wikipedia/en/thumb/3/35/GB_News_Logo.svg/512px-GB_News_Logo.svg.png" group-title="United Kingdom",GB News [HD] 79 | https://ap02.iqplay.tv:8082/iqb8002/3m9n/playlist.m3u8 80 | 81 | #EXTINF:-1 tvg-id="ExtremeSportsChannel.nl" tvg-logo="https://i.imgur.com/m7IC01U.png" group-title="United Kingdom" user-agent="ExoPlayer2/2.37",Extreme Sports 82 | #EXTVLCOPT:http-user-agent=ExoPlayer2/2.37 83 | https://edge02.odtv.az/o4/extremesport/playlist.m3u8 84 | 85 | #EXTINF:-1 tvg-id="FadakTV.uk" tvg-logo="https://i.imgur.com/MBZ4sSA.png" group-title="United Kingdom",Fadak TV 86 | https://cdn-apse1-prod.tsv2.amagi.tv/linear/amg00810-horsecountrytvl-hncfreenz-samsungnz/playlist.m3u8 87 | 88 | #EXTINF:-1 tvg-id="IdealWorldTV.uk" tvg-logo="https://i.imgur.com/su6GH7i.png" group-title="United Kingdom",Ideal World TV [HD] 89 | https://live.ishiacloud.com/haditv.co.uk/haditv7.m3u8 90 | 91 | #EXTINF:-1 tvg-id="HalaLondon.uk" tvg-logo="https://i.imgur.com/bM4VZDH.png" group-title="United Kingdom",Hala London [HD] 92 | https://live.ishiacloud.com/haditv.co.uk/haditv2.m3u8 93 | 94 | #EXTINF:-1 tvg-id="" tvg-logo="" group-title="United Kingdom",Hadi TV Turkish and Kurdish [HD] 95 | https://live.ishiacloud.com/haditv.co.uk/haditv8.m3u8 96 | 97 | #EXTINF:-1 tvg-id="" tvg-logo="" group-title="United Kingdom",Hadi TV Indonesian and Thai [HD] 98 | https://halalondon-live.ercdn.net/halalondon/halalondon.m3u8 99 | 100 | #EXTINF:-1 tvg-id="HalaLondonTVCartoon.uk" tvg-logo="https://i.imgur.com/bM4VZDH.png" group-title="United Kingdom",Hala London TV Cartoon 101 | https://ythls.armelin.one/channel/UCJbgGTpBWuC87VFIKTTO4RQ.m3u8 102 | 103 | #EXTINF:-1 tvg-id="IqraBangla.uk" tvg-logo="https://i.imgur.com/BZBZAeC.png" group-title="United Kingdom",Iqra Bangla [FHD] 104 | https://live-islamtv-urdu.simplestreamcdn.com/live7/islamtv_urdu/bitrate1.isml/live.m3u8 105 | 106 | #EXTINF:-1 tvg-id="JewelleryMaker.uk" tvg-logo="https://i.imgur.com/O7SdkBh.png" group-title="United Kingdom",Jewelery Maker [SD] 107 | https://og2qd3aal7an-hls-live.5centscdn.com/garshomtv/d0dbe915091d400bd8ee7f27f0791303.sdp/playlist.m3u8 108 | 109 | #EXTINF:-1 tvg-id="GemsTV.uk" tvg-logo="https://i.imgur.com/WgaJufI.png" group-title="United Kingdom",Gems TV [SD] 110 | https://webstreaming.viewmedia.tv/web_020/Stream/playlist.m3u8 111 | 112 | #EXTINF:-1 tvg-id="KissTV.uk" tvg-logo="https://i.imgur.com/cmwa5Wh.png" group-title="United Kingdom",KISS TV [Geo-blocked] [SD] 113 | https://lo2-1.gemporia.com/abrjewellerymaker/smil:livestream.smil/playlist.m3u8 114 | 115 | #EXTINF:-1 tvg-id="KICCTV.uk" tvg-logo="https://i.imgur.com/4kU1VNx.png" group-title="United Kingdom",KICCTV (576p) [HD] 116 | https://live-kto.akamaized.net/hls/live/2033284/KTO/master.m3u8 117 | 118 | #EXTINF:-1 tvg-id="KalsanTV.uk" tvg-logo="https://i.imgur.com/AqyY1bR.png" group-title="United Kingdom",Kalsan TV (576p) [SD] 119 | https://ap02.iqplay.tv:8082/iqb8002/ka1s0n/playlist.m3u8 120 | 121 | #EXTINF:-1 tvg-id="KanshiTV.uk" tvg-logo="https://i.imgur.com/w6uXMrK.png" group-title="United Kingdom",Kanshi TV 122 | https://chlivemta1.akamaized.net/hls/live/2008145/mta2/playlist.m3u8 123 | 124 | #EXTINF:-1 tvg-id="MTA3AlArabia.uk" tvg-logo="https://i.imgur.com/m3PEldJ.png" group-title="United Kingdom",MTA3 Al-Arabia [FHD] 125 | https://live.kanshitv.co.uk/mobile/kanshitvkey.m3u8 126 | 127 | #EXTINF:-1 tvg-id="Kerrang.uk" tvg-logo="https://i.imgur.com/3mwf8Uq.png" group-title="United Kingdom",Kerrang (576p) [Geo-blocked] [HD] 128 | https://cdn.lwuk.live/live/smil:lwukweb.smil/playlist.m3u8 129 | 130 | #EXTINF:-1 tvg-id="MMSomaliTV.uk" tvg-logo="https://i.imgur.com/k8nz8Q2.jpg" group-title="United Kingdom",MM Somali TV 131 | https://chlivemta1.akamaized.net/hls/live/2008145/mta1/playlist.m3u8 132 | 133 | #EXTINF:-1 tvg-id="MTA2Europe.uk" tvg-logo="https://i.imgur.com/aVts0sz.png" group-title="United Kingdom",MTA2 Europe [FHD] 134 | https://chlivemta1.akamaized.net/hls/live/2010556/mta3alarabia/playlist.m3u8 135 | 136 | #EXTINF:-1 tvg-id="MTA4Africa.uk" tvg-logo="https://i.imgur.com/lmVeQQX.png" group-title="United Kingdom",MTA4 Africa [FHD] 137 | https://chlivemta.akamaized.net/hls/live/2010555/mtaafrica1/playlist.m3u8 138 | 139 | #EXTINF:-1 tvg-id="MTA5Africa.uk" tvg-logo="https://i.imgur.com/9Cobb2i.png" group-title="United Kingdom",MTA5 Africa [FHD] 140 | https://chlivemta.akamaized.net/hls/live/2010555/mtaafrica2/playlist.m3u8 141 | 142 | #EXTINF:-1 tvg-id="MTA6Asia.uk" tvg-logo="https://i.imgur.com/nhCNPJI.png" group-title="United Kingdom",MTA6 Asia [FHD] 143 | https://livemtaasia.akamaized.net/hls/live/2039224/mtaasia2/playlist.m3u8 144 | 145 | #EXTINF:-1 tvg-id="MTA8America.uk" tvg-logo="https://i.imgur.com/CF6X9wB.png" group-title="United Kingdom",MTA8 America [FHD] 146 | https://cdn.mediavisionuk.com:9000/MMTV/index.m3u8 147 | 148 | #EXTINF:-1 tvg-id="MTA1World.uk" tvg-logo="https://i.imgur.com/bYiRfAg.png" group-title="United Kingdom",MTA1 World 149 | https://livemtaasia.akamaized.net/hls/live/2039224/mta6asia/playlist.m3u8 150 | 151 | #EXTINF:-1 tvg-id="MTA7Asia.uk" tvg-logo="https://i.imgur.com/3Nl8Tpu.png" group-title="United Kingdom",MTA7 Asia [FHD] 152 | https://bcovlive-a.akamaihd.net/r2d2c4ca5bf57456fb1d16255c1a535c8/eu-west-1/6058004203001/playlist.m3u8 153 | 154 | #EXTINF:-1 tvg-id="MagnavisionTV.uk" tvg-logo="https://i.imgur.com/mUHixbi.png" group-title="United Kingdom",Magna Vision [HD] 155 | https://lightning-now90s-samsungnz.amagi.tv/playlist.m3u8 156 | 157 | #EXTINF:-1 tvg-id="NTVEurope.bd" tvg-logo="https://europentv.ntvbd.com/sites/all/themes/sloth/logo.png" group-title="United Kingdom",NTV Europe [HD] 158 | https://chlivemta.akamaized.net/hls/live/2016718/mta8/playlist.m3u8 159 | 160 | #EXTINF:-1 tvg-id="MUTV.uk" tvg-logo="https://d2n0069hmnqmmx.cloudfront.net/epgdata/1.0/newchanlogos/512/512/skychb1834.png" group-title="United Kingdom",MUTV [FHD] 161 | https://webstreaming.viewmedia.tv/web_030/Stream/playlist.m3u8 162 | 163 | #EXTINF:-1 tvg-id="MoonbugKids.uk" tvg-logo="https://i.imgur.com/vZHtxQb.png" group-title="United Kingdom",Moonbug Kids [SD] 164 | https://lnc-nbc-news-now.tubi.video/master.m3u8 165 | 166 | #EXTINF:-1 tvg-id="NOWRock.uk" tvg-logo="https://i.imgur.com/GuM4GnX.png" group-title="United Kingdom",NOW Rock [FHD] 167 | https://lightning-now70s-samsungnz.amagi.tv/playlist.m3u8 168 | 169 | #EXTINF:-1 tvg-id="Now80s.uk" tvg-logo="https://i.imgur.com/YyPnMeB.png" group-title="United Kingdom",Now 80's [HD] 170 | https://lightning-now80s-samsungnz.amagi.tv/playlist.m3u8 171 | 172 | #EXTINF:-1 tvg-id="PBSAmerica.uk" tvg-logo="https://upload.wikimedia.org/wikipedia/en/4/43/PBS_America_logo.png" group-title="United Kingdom",PBS America [HD] 173 | https://moonbug-rokuus.amagi.tv/playlist.m3u8 174 | 175 | #EXTINF:-1 tvg-id="NBCNewsNOW.us" tvg-logo="https://i.imgur.com/JZt2qh5.png" group-title="United Kingdom",NBC News Now [FHD] 176 | https://live-sonybebanjo.simplestreamcdn.com/live8/popmax/bitrate1.isml/live.m3u8 177 | 178 | #EXTINF:-1 tvg-id="PlutoTVAnimals.uk" tvg-logo="https://i.imgur.com/KuPue6S.png" group-title="United Kingdom",Pluto TV Animals (England) [SD] 179 | https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5ce44810b421747ae467b7cd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS 180 | 181 | #EXTINF:-1 tvg-id="" tvg-logo="" group-title="United Kingdom",Pluto TV BBC Food 182 | https://edge-i.evrideo.tv/8808fff1-2262-4c92-8cf4-359adbb692ca_1000026794_HLS/manifest.m3u8 183 | 184 | #EXTINF:-1 tvg-id="NoorTV.uk" tvg-logo="https://i.imgur.com/DlKgIuQ.png" group-title="United Kingdom",Noor TV (480p) [FHD] 185 | https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fb5836fe745b600070fc743/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS 186 | 187 | #EXTINF:-1 tvg-id="PlutoTVBiography.uk" tvg-logo="https://i.imgur.com/MwuIHbX.png" group-title="United Kingdom",Pluto TV Biography 188 | https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ce44810b421747ae467b7cd/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ce44810b421747ae467b7cd&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=621&terminate=false&userId= 189 | 190 | #EXTINF:-1 tvg-id="" tvg-logo="" group-title="United Kingdom",Pluto TV Antiques Roadshow UK 191 | https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4af2a24f1c5ab2d298776b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS 192 | 193 | #EXTINF:-1 tvg-id="" tvg-logo="" group-title="United Kingdom",Pluto TV Classic Movies (England) 194 | https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5fb5844bf5514d0007945bda/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS 195 | 196 | #EXTINF:-1 tvg-id="" tvg-logo="" group-title="United Kingdom",Pluto TV BBC Home 197 | https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf8ea0d000120009bcad83/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf8ea0d000120009bcad83&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=550&terminate=false&userId= 198 | 199 | #EXTINF:-1 tvg-id="" tvg-logo="" group-title="United Kingdom",Pluto TV Antiques Roadshow UK (240p) 200 | https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddf930548ff9b00090d5686/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ddf930548ff9b00090d5686&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=500&terminate=false&userId= 201 | 202 | #EXTINF:-1 tvg-id="PlutoTVMotor.uk" tvg-logo="https://i.imgur.com/LSrfnpB.png" group-title="Auto",Pluto TV Motor (England) (480p) 203 | https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e46ae801f347500099d461a/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=35f76fb0-e986-11eb-a0af-c3b401f46211&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=2fac39a7-56bc-492e-ae1e-3f6fb6cef1bc 204 | 205 | #EXTINF:-1 tvg-id="PlutoTVConspiracy.uk" tvg-logo="https://i.imgur.com/sr0kYSH.png" group-title="United Kingdom",Pluto TV Conspiracy (480p) 206 | https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d134a74ca91eedee1630faa/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d134a74ca91eedee1630faa&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=903&terminate=false&userId= 207 | 208 | #EXTINF:-1 tvg-id="PlutoTVClassicTV.uk" tvg-logo="https://i.imgur.com/hGdXRMd.png" group-title="United Kingdom",Pluto TV Classic TV 209 | https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ad8d3a31b95267e225e4e09/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ad8d3a31b95267e225e4e09&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=50&terminate=false&userId= 210 | 211 | #EXTINF:-1 tvg-id="PlutoTVParanormal.uk" tvg-logo="https://i.imgur.com/udxOeQJ.png" group-title="United Kingdom",Pluto TV Paranormal (England) 212 | https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5db0510962948d000961d3c6/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5db0510962948d000961d3c6&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=576&terminate=false&userId= 213 | 214 | #EXTINF:-1 tvg-id="PlutoTVMovies.uk" tvg-logo="https://i.imgur.com/i51xfAn.png" group-title="United Kingdom",Pluto TV Movies (England) (684p) 215 | https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d4af2ffa9506ab29cf38c38/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d4af2ffa9506ab29cf38c38&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=216&terminate=false&userId= 216 | 217 | #EXTINF:-1 tvg-id="PlutoTVRetroDrama.uk" tvg-logo="https://i.imgur.com/a2xIDMJ.png" group-title="United Kingdom",Pluto TV Retro Drama 218 | https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dde47b63585b500099f74ec/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=1&deviceId=5dde47b63585b500099f74ec&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=DE&serverSideAds=false&sid=5204e9ec-0585-11eb-a18c-0242ac110002&terminate=false&userId= 219 | 220 | #EXTINF:-1 tvg-id="PlutoTVRomance.uk" tvg-logo="https://i.imgur.com/0jHyTvu.png" group-title="United Kingdom",Pluto TV Romance 221 | https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d4ae94ef1a1bbb350ca41bb/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS 222 | 223 | #EXTINF:-1 tvg-id="PlutoTVCrime.uk" tvg-logo="https://i.imgur.com/QwEpDY9.png" group-title="United Kingdom",Pluto TV Crime (England) 224 | https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/6081310e48d3200007afaf3b/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8bf322-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=0727f4fb-ea0b-4814-bb58-fdf3c4534220 225 | 226 | #EXTINF:-1 tvg-id="PlutoTVStandUp.uk" tvg-logo="https://i.imgur.com/cZdUQDe.png" group-title="United Kingdom",Pluto TV Stand Up 227 | https://qvcuk-live.akamaized.net/hls/live/2097112/qex/master.m3u8 228 | 229 | #EXTINF:-1 tvg-id="QVCStyle.uk" tvg-logo="https://i.imgur.com/6HZlLL3.png" group-title="United Kingdom",QVC UK Style (540p) [SD] 230 | https://qvcuk-live.akamaized.net/hls/live/2097112/qst/master.m3u8 231 | 232 | #EXTINF:-1 tvg-id="QwestTVJazzBeyond.fr" tvg-logo="https://i.imgur.com/89yWH5L.png" group-title="United Kingdom",Qwest TV Jazz & Beyond [Geo-blocked] [SD] 233 | https://qvcuk-live.akamaized.net/hls/live/2097112/qby/master.m3u8 234 | 235 | #EXTINF:-1 tvg-id="QVCExtra.uk" tvg-logo="https://i.imgur.com/TIe5T9Z.png" group-title="United Kingdom",QVC UK Extra (540p) [SD] 236 | https://qvcuk-live.akamaized.net/hls/live/2097112/qvc/master.m3u8 237 | 238 | #EXTINF:-1 tvg-id="QVCBeauty.uk" tvg-logo="https://i.imgur.com/ZBHtqk1.png" group-title="United Kingdom",QVC UK Beauty (540p) [SD] 239 | https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5dc2c00abfed110009d97243/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS 240 | 241 | #EXTINF:-1 tvg-id="PlutoTVSports.uk" tvg-logo="https://i.imgur.com/LW77x7g.png" group-title="United Kingdom",Pluto TV Sports 242 | https://rakuten-actionmovies-1-eu.rakuten.wurl.tv/playlist.m3u8 243 | 244 | #EXTINF:-1 tvg-id="RakutenTVComedyMovies.uk" tvg-logo="https://i.imgur.com/NJYEYE3.png" group-title="United Kingdom",Rakuten Comedy Movies UK [HD] 245 | https://rakuten-comedymovies-1-eu.rakuten.wurl.tv/playlist.m3u8 246 | 247 | #EXTINF:-1 tvg-id="RakutenTVFamilyMovies.uk" tvg-logo="https://i.imgur.com/NJYEYE3.png" group-title="Family;Movies",Rakuten Family UK [HD] 248 | https://rakuten-family-1-eu.rakuten.wurl.tv/playlist.m3u8 249 | 250 | #EXTINF:-1 tvg-id="" tvg-logo="" group-title="United Kingdom",Rakuten Shows UK [HD] 251 | https://rakuten-tvshows-1-eu.rakuten.wurl.tv/playlist.m3u8 252 | 253 | #EXTINF:-1 tvg-id="RakutenTVSpotlight.uk" tvg-logo="https://i.imgur.com/NJYEYE3.png" group-title="United Kingdom",Rakuten Spotlight UK [HD] 254 | https://rakuten-topfree-1-eu.rakuten.wurl.tv/playlist.m3u8 255 | 256 | #EXTINF:-1 tvg-id="RealStories.uk" tvg-logo="https://i.imgur.com/PG15QKA.png" group-title="United Kingdom",Real Stories [HD] 257 | https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ea18cd42ee5410007e349dc/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5ea18cd42ee5410007e349dc&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=200&terminate=false&userId= 258 | 259 | #EXTINF:-1 tvg-id="PlutoTVFood.uk" tvg-logo="https://i.imgur.com/HTLo1GG.png" group-title="United Kingdom",Pluto TV Food (England) 260 | http://tv.sheffieldlive.org/hls/main.m3u8 261 | 262 | #EXTINF:-1 tvg-id="SonyEntertainmentTelevisionAsiaHD.in" tvg-logo="https://i.imgur.com/VjmM2DO.png" group-title="United Kingdom",Sony Entertainment Television Asia HD 263 | https://dai.google.com/linear/hls/event/dBdwOiGaQvy0TA1zOsjV6w/master.m3u8 264 | 265 | #EXTINF:-1 tvg-id="SportyStuffTV.uk" tvg-logo="https://i.imgur.com/6s1YGSV.png" group-title="United Kingdom",SportyStuff TV [FHD] 266 | https://tbn-jw.cdn.vustreams.com/live/tbn-uk/live.isml/.m3u8 267 | 268 | #EXTINF:-1 tvg-id="TJC.uk" tvg-logo="https://i.imgur.com/fk5rEje.png" group-title="United Kingdom",TJC [HD] 269 | https://live-uk.s4c-cdn.co.uk/out/v1/a0134f1fd5a2461b9422b574566d4442/live_uk.m3u8 270 | 271 | #EXTINF:-1 tvg-id="STV.uk" tvg-logo="https://i.imgur.com/KiOnQnD.png" group-title="United Kingdom",STV [Geo-blocked] [FHD] 272 | https://cdn-shop-lc-01.akamaized.net/Content/HLS_HLS/Live/channel(TJCOTT)/index.m3u8 273 | 274 | #EXTINF:-1 tvg-id="TVOne.uk" tvg-logo="https://i.imgur.com/qkbRslf.png" group-title="United Kingdom",TV One (576p) [FHD] 275 | https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/60812fc8539963000707d1e1/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c8bf321-e98a-11eb-a932-2f3c780ff9ff&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=7ebb5004-1cd6-44bb-990a-082fdcdcba6d 276 | 277 | #EXTINF:-1 tvg-id="PlutoTVSherlock.uk" tvg-logo="https://i.imgur.com/SL3FNcm.png" group-title="United Kingdom",Pluto TV Sherlock 278 | https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d135e29a52c94dfe543c5d3/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS 279 | 280 | #EXTINF:-1 tvg-id="QVC.uk" tvg-logo="https://i.imgur.com/6TWUVrh.png" group-title="United Kingdom",QVC UK (540p) 281 | https://dhx-teletubbies-2-it.samsung.wurl.tv/playlist.m3u8 282 | 283 | #EXTINF:-1 tvg-id="TheBox.uk" tvg-logo="https://i.imgur.com/e1Cf4Li.png" group-title="United Kingdom",The Box UK (576p) [Geo-blocked] [HD] 284 | https://rakuten-guardian-1-ie.samsung.wurl.tv/playlist.m3u8 285 | 286 | #EXTINF:-1 tvg-id="TopGear.uk" tvg-logo="https://i.imgur.com/S6Su6QH.png" group-title="Auto;Entertainment",Top Gear [HD] 287 | https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60d356a534f63f000850cdd7/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS 288 | 289 | #EXTINF:-1 tvg-id="V2BEATTV.uk" tvg-logo="https://i.imgur.com/PXGqyLn.png" group-title="United Kingdom",V2BEAT 290 | https://live-talktv-ssai.simplestreamcdn.com/v1/master/774d979dd66704abea7c5b62cb34c6815fda0d35/talktv-live/index.m3u8 291 | 292 | #EXTINF:-1 tvg-id="Teletubbies.uk" tvg-logo="https://i.imgur.com/J9iWjWL.png" group-title="United Kingdom",Teletubbies [FHD] 293 | https://ap02.iqplay.tv:8082/iqb8002/t5kb86/playlist.m3u8 294 | 295 | #EXTINF:-1 tvg-id="TalkTV.uk" tvg-logo="https://i.imgur.com/KxHWpQB.png" group-title="United Kingdom",TalkTV [HD] 296 | https://cdn-apse1-prod.tsv2.amagi.tv/linear/amg00426-littledotstudio-wondernz-samsungnz/playlist.m3u8 297 | 298 | #EXTINF:-1 tvg-id="ZaireTV.uk" tvg-logo="https://i.imgur.com/64TMPXM.jpg" group-title="United Kingdom",Zaire TV [HD] 299 | https://live-hochanda.simplestreamcdn.com/hochanda/live.m3u8 300 | 301 | #EXTINF:-1 tvg-id="TheGuardian.uk" tvg-logo="https://i.imgur.com/o9AYq9V.png" group-title="United Kingdom",The Guardian [HD] 302 | http://stream02.vnet.am/HTB/mono.m3u8 303 | 304 | #EXTINF:-1 tvg-id="RTRPlanetaEurope.ru" tvg-logo="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3c/RTR-Planeta_Logo.svg/512px-RTR-Planeta_Logo.svg.png" group-title="United Kingdom",РТР Планета Евро 305 | https://abr.de1se01.v2beat.live/playlist.m3u8 306 | 307 | #EXTINF:-1 tvg-id="VoxAfrica.uk" tvg-logo="https://upload.wikimedia.org/wikipedia/fr/thumb/6/63/Voxafrica-1.png/512px-Voxafrica-1.png" group-title="United Kingdom",VoxAfrica [HD] 308 | https://ap02.iqplay.tv:8082/iqb8002/i09/playlist.m3u8 309 | 310 | #EXTINF:-1 tvg-id="" tvg-logo="" group-title="United Kingdom",n TV (US Eastern) 311 | https://player.smotrim.ru/iframe/stream/live_id/4941 312 | 313 | -------------------------------------------------------------------------------- /Playlist/Urfan TV.txt: -------------------------------------------------------------------------------- 1 | #EXTM3U 2 | 3 | ################################################################################################################################# 4 | ###### JANGAN DICOPY ATAU DICOMOT YA, APALAGI DIREBRANDING DAN DIJUAL LAGI ATAU DIBAGIKAN SEMBARANGAN, PLAYLIST INI GRATIS ###### 5 | ################################################################################################################################# 6 | 7 | #EXTM3U billed-msg="Novantama TV", url-tvg="https://s.urfan.web.id/epgxmlgz" refresh="3600" 8 | 9 | 10 | ########################## 11 | ######## LPP TVRI ######## 12 | ########################## 13 | 14 | #EXTINF:-1 tvg-id="TVRINasional.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvri.png",TVRI Nasional 15 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 16 | https://ott-balancer.tvri.go.id/live/eds/Nasional/hls/Nasional.m3u8 17 | 18 | #EXTINF:-1 tvg-id="TVRIWorld.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvriworld.png",TVRI World 19 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 20 | https://ott-balancer.tvri.go.id/live/eds/TVRIWorld/hls/TVRIWorld.m3u8 21 | 22 | #EXTINF:-1 tvg-id="TVRISport.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvrisport.png",TVRI Sport 23 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 24 | https://ott-balancer.tvri.go.id/live/eds/SportHD/hls/SportHD.m3u8 25 | 26 | 27 | ########################### 28 | ######## MNC GROUP ######## 29 | ########################### 30 | 31 | #EXTINF:-1 tvg-id="RCTI.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rcti.png",RCTI 32 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 33 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 34 | #EXTVLCOPT:http-referrer=https://visionplus.id 35 | https://testfunctionlive.mncnow.id/live/eds/RCTI-DD/sa_dash_vmx/RCTI-DD.mpd 36 | 37 | #EXTINF:-1 tvg-id="MNCTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mnctv.png",MNCTV 38 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 39 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 40 | #EXTVLCOPT:http-referrer=https://visionplus.id 41 | https://testfunctionlive.mncnow.id/live/eds/MNCTV-HD/sa_dash_vmx/MNCTV-HD.mpd 42 | 43 | #EXTINF:-1 tvg-id="GTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/gtv.png",GTV 44 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 45 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 46 | #EXTVLCOPT:http-referrer=https://visionplus.id 47 | https://testfunctionlive.mncnow.id/live/eds/GTV-HD/sa_dash_vmx/GTV-HD.mpd 48 | 49 | #EXTINF:-1 tvg-id="iNews.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/inews.png",iNews 50 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 51 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 52 | #EXTVLCOPT:http-referrer=https://visionplus.id 53 | https://testfunctionlive.mncnow.id/live/eds/iNewsTV-HDD/sa_dash_vmx/iNewsTV-HDD.mpd 54 | 55 | 56 | ############################# 57 | ######## EMTEK GROUP ######## 58 | ############################# 59 | 60 | #EXTINF:-1 tvg-id="SCTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sctv.png",SCTV 61 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 62 | #EXTVLCOPT:http-referrer=http://dens.tv 63 | http://op-group1-swiftservehd-1.dens.tv/h/h217/02.m3u8 64 | 65 | #EXTINF:-1 tvg-id="SCTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sctv.png",SCTV HD 66 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 67 | https://streaming.indihometv.com/atm/DASH/sctv/manifest.mpd 68 | 69 | #EXTINF:-1 tvg-id="Indosiar.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/indosiar.png",Indosiar 70 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 71 | #EXTVLCOPT:http-referrer=http://dens.tv 72 | http://op-group1-swiftservehd-1.dens.tv/h/h207/02.m3u8 73 | 74 | #EXTINF:-1 tvg-id="Indosiar.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/indosiar.png",Indosiar HD 75 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 76 | https://streaming.indihometv.com/atm/DASH/indosiar/manifest.mpd 77 | 78 | #EXTINF:-1 tvg-id="OChannel.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/moji.png",Moji 79 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 80 | https://cdn08jtedge.indihometv.com/dassdvr/134/ochannel/manifest.mpd 81 | 82 | #EXTINF:-1 tvg-id="MentariTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mentari.png",Mentari TV 83 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 84 | https://cdn08jtedge.indihometv.com/dassdvr/134/mentaritv/manifest.mpd 85 | 86 | 87 | ############################ 88 | ######## VIVA GROUP ######## 89 | ############################ 90 | 91 | #EXTINF:-1 tvg-id="ANTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/antv.png",ANTV 92 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 93 | https://flv.intechmedia.net/live/ch108.m3u8 94 | 95 | #EXTINF:-1 tvg-id="tvOne.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvone.png",tvOne 96 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 97 | https://ythls.urfan.web.id/stream/yNKvkPJl-tg/master.m3u8 98 | 99 | #EXTINF:-1 tvg-id="tvOne.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvone.png",tvOne HD 100 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 101 | https://streaming.indihometv.com/atm/DASH/tvone/manifest.mpd 102 | 103 | #EXTINF:-1 tvg-id="vtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/vtv.png",VTV 104 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 105 | https://flv.intechmedia.net/live/ch107.m3u8 106 | 107 | 108 | ############################# 109 | ######## TRANS MEDIA ######## 110 | ############################# 111 | 112 | #EXTINF:-1 tvg-id="TransTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/transtv.png",Trans TV HD 113 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 114 | https://streaming.indihometv.com/atm/DASH/transtv/manifest.mpd 115 | 116 | #EXTINF:-1 tvg-id="TransTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/transtv.png",Trans TV 117 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 118 | https://video.detik.com/transtv/smil:transtv.smil/index.m3u8 119 | 120 | #EXTINF:-1 tvg-id="Trans7.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/trans7.png",Trans 7 HD 121 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 122 | https://streaming.indihometv.com/atm/DASH/trans7/manifest.mpd 123 | 124 | #EXTINF:-1 tvg-id="Trans7.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/trans7.png",Trans 7 125 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 126 | https://video.detik.com/trans7/smil:trans7.smil/index.m3u8 127 | 128 | #EXTINF:-1 tvg-id="CNNIndonesia.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cnnid.png",CNN Indonesia 129 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 130 | https://live.cnnindonesia.com/livecnn/smil:cnntv.smil/index.m3u8 131 | 132 | #EXTINF:-1 tvg-id="CNBCIndonesia.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cnbcid.png",CNBC Indonesia 133 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 134 | https://live.cnbcindonesia.com/livecnbc/smil:cnbctv.smil/index.m3u8 135 | 136 | 137 | ############################# 138 | ######## MEDIA GROUP ######## 139 | ############################# 140 | 141 | #EXTINF:-1 tvg-id="MetroTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/metrotv.png",Metro TV 142 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 143 | https://ythls.urfan.web.id/stream/XKueVSGTk2o/master.m3u8 144 | 145 | #EXTINF:-1 tvg-id="magnachannel.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/magna.png",Magna Channel 146 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 147 | https://flv.intechmedia.net/live/ch111.m3u8 148 | 149 | #EXTINF:-1 tvg-id="bnchannel.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/bn.png",BN Channel 150 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 151 | https://flv.intechmedia.net/live/ch112.m3u8 152 | 153 | #EXTINF:-1 tvg-id="metroglobenetwork.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mgn.png",Metro Globe Network 154 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 155 | https://edge.medcom.id/live-edge/smil:mgnch.smil/playlist.m3u8 156 | 157 | 158 | ################################# 159 | ######## KOMPAS GRAMEDIA ######## 160 | ################################# 161 | 162 | #EXTINF:-1 tvg-id="KompasTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/kompastv.png",Kompas TV 163 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 164 | https://ythls.urfan.web.id/stream/DOOrIxw5xOw/master.m3u8 165 | 166 | 167 | ############################## 168 | ######## NETMEDIATAMA ######## 169 | ############################## 170 | 171 | #EXTINF:-1 tvg-id="Net.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/net.png",NET 172 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 173 | https://ythls.urfan.web.id/stream/UC1-ATnDVEwKT6-0aEeJ2ibA/master.m3u8 174 | 175 | 176 | ############################### 177 | ######## RAJAWALI CORP ######## 178 | ############################### 179 | 180 | #EXTINF:-1 tvg-id="RajawaliTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rtv.png",RTV 181 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 182 | https://flv.intechmedia.net/live/ch115.m3u8 183 | 184 | 185 | ###################### 186 | ###### LAIN-LAIN ##### 187 | ###################### 188 | 189 | #EXTINF:-1 tvg-id="nusantaratv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/nusantaratv.png",Nusantara TV 190 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 191 | https://nusantaratv.siar.us/nusantaratv/live/playlist.m3u8 192 | 193 | #EXTINF:-1 tvg-id="seatoday.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/seatoday.png",SEA TODAY 194 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 195 | https://flv.intechmedia.net/live/ch106.m3u8 196 | 197 | #EXTINF:-1 tvg-id="GARUDATV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/garudatv.png",Garuda TV 198 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 199 | https://etv-cdn.kdb.co.id/GarudaTV-Stream/index.m3u8 200 | 201 | #EXTINF:-1 tvg-id="IDTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/idtv.png",IDTV 202 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 203 | https://b1world.beritasatumedia.com/Beritasatu/B1World_manifest.m3u8 204 | 205 | #EXTINF:-1 tvg-id="MTATV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mtatv.png",MTA TV HD 206 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 207 | https://ythls.urfan.web.id/stream/UC1ZobjxMwDBcUcbI1z6F5VA/master.m3u8 208 | 209 | #EXTINF:-1 tvg-id="MTATV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mtatv.png",MTA TV 210 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 211 | https://streaming.indihometv.com/atm/DASH/mtatv/manifest.mpd 212 | 213 | #EXTINF:-1 tvg-id="daaitv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/daaitv.png",DAAITV 214 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 215 | https://dacastmmd.mmdlive.lldns.net/dacastmmd/683cc426c19442a4ba31c53be5c963bb/index.m3u8 216 | 217 | #EXTINF:-1 tvg-id="Maxstream.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/maxstream.png",MAXSTREAM 218 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 219 | https://cdn08jtedge.indihometv.com/dassdvr/194/maxstream/manifest.mpd 220 | 221 | #EXTINF:-1 tvg-id="tvkesehatan.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvkesehatan.png",TV Kesehatan 222 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 223 | https://5bf7b725107e5.streamlock.net/tvkesehatan/tvkesehatan/playlist.m3u8 224 | 225 | #EXTINF:-1 tvg-id="Digione.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/digione.png",Digione 226 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 227 | https://cdn-telkomsel-01.akamaized.net/Content/HLS/Live/channel(d2f582be-366c-4cce-9476-1b524dc854e9)/index.m3u8 228 | 229 | #EXTINF:-1 tvg-id="RRINET.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rrinettv.png",RRI NET 230 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 231 | https://rrinet.rri.co.id/hls/live.m3u8 232 | 233 | #EXTINF:-1 tvg-id="BeritaSatu.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/btv.png",BTV 234 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 235 | https://b1news.beritasatumedia.com/Beritasatu/B1News_1280x720.m3u8 236 | 237 | #EXTINF:-1 tvg-id="GPRTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/gprtv.png",GPR TV 238 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 239 | https://ythls.urfan.web.id/stream/UCn-Ex0zXXTVElhMr12o0zwA/master.m3u8 240 | 241 | #EXTINF:-1 tvg-id="IndonesianaTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/indonesiana.png",Indonesiana TV 242 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 243 | https://dgwubfppws111.cloudfront.net/out/v1/667a86e35ddd496c886fa11598dc184d/index_1.m3u8 244 | 245 | 246 | ######################## 247 | ######## DAERAH ######## 248 | ######################## 249 | 250 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/jurnaltv.png",Jurnal TV 251 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 252 | https://5bf7b725107e5.streamlock.net/jurnaltv/jurnaltv/playlist.m3u8 253 | 254 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/saliratv.png",Salira TV 255 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 256 | https://5bf7b725107e5.streamlock.net/saliratv/saliratv/playlist.m3u8 257 | 258 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pktv.png",PK TV 259 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 260 | https://ams.juraganstreaming.com:5443/LiveApp/streams/pktv.m3u8 261 | 262 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/banjartv.png",Banjar TV 263 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 264 | https://banjartv.siar.us/banjartv/live/playlist.m3u8 265 | 266 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/dtvi.png",dTVi 267 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 268 | https://e.siar.us/live/dtvi.m3u8 269 | 270 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/batiktv.png",Batik TV 271 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 272 | https://ythls.urfan.web.id/stream/UCfVhsa1PMBkqYQOqIojVjPA/master.m3u8 273 | 274 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ficom.png",FICOM CHANNEL 275 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 276 | https://v3.siar.us/ficomchannel/live/playlist.m3u8 277 | 278 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/simakmur.png",SiMakmur TV 279 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 280 | https://ythls.urfan.web.id/stream/UCp0Vb-bWRsJ9rci26TCXV7g/master.m3u8 281 | 282 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Yogyakarta 283 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 284 | https://ott-balancer.tvri.go.id/live/eds/Jogjakarta/hls/Jogjakarta.m3u8 285 | 286 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Jawa Tengah 287 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 288 | https://ott-balancer.tvri.go.id/live/eds/Jateng/hls/Jateng.m3u8 289 | 290 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Bali 291 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 292 | https://ott-balancer.tvri.go.id/live/eds/Bali/hls/Bali.m3u8 293 | 294 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Jakarta 295 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 296 | https://ott-balancer.tvri.go.id/live/eds/DKI/hls/DKI.m3u8 297 | 298 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Jawa Barat 299 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 300 | https://ott-balancer.tvri.go.id/live/eds/Jabar/hls/Jabar.m3u8 301 | 302 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Jawa Timur 303 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 304 | https://ott-balancer.tvri.go.id/live/eds/Jatim/hls/Jatim.m3u8 305 | 306 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Aceh 307 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 308 | https://ott-balancer.tvri.go.id/live/eds/Aceh/hls/Aceh.m3u8 309 | 310 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Bengkulu 311 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 312 | https://ott-balancer.tvri.go.id/live/eds/Bengkulu/hls/Bengkulu.m3u8 313 | 314 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Gorontalo 315 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 316 | https://ott-balancer.tvri.go.id/live/eds/Gorontalo/hls/Gorontalo.m3u8 317 | 318 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Jambi 319 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 320 | https://ott-balancer.tvri.go.id/live/eds/Jambi/hls/Jambi.m3u8 321 | 322 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Kalimantan Barat 323 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 324 | https://ott-balancer.tvri.go.id/live/eds/Kalbar/hls/Kalbar.m3u8 325 | 326 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Kalimantan Selatan 327 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 328 | https://ott-balancer.tvri.go.id/live/eds/Kalsel/hls/Kalsel.m3u8 329 | 330 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Kalimantan Timur 331 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 332 | https://ott-balancer.tvri.go.id/live/eds/Kaltim/hls/Kaltim.m3u8 333 | 334 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Kalimantan Tengah 335 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 336 | https://ott-balancer.tvri.go.id/live/eds/Kalteng/hls/Kalteng.m3u8 337 | 338 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Lampung 339 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 340 | https://ott-balancer.tvri.go.id/live/eds/Lampung/hls/Lampung.m3u8 341 | 342 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Ambon 343 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 344 | https://ott-balancer.tvri.go.id/live/eds/Ambon/hls/Ambon.m3u8 345 | 346 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Nusa Tenggara Barat 347 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 348 | https://ott-balancer.tvri.go.id/live/eds/NTB/hls/NTB.m3u8 349 | 350 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Nusa Tenggara Timur 351 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 352 | https://ott-balancer.tvri.go.id/live/eds/NTT/hls/NTT.m3u8 353 | 354 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Papua 355 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 356 | https://ott-balancer.tvri.go.id/live/eds/Papua/hls/Papua.m3u8 357 | 358 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Papua Barat 359 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 360 | https://ott-balancer.tvri.go.id/live/eds/Pabar/hls/Pabar.m3u8 361 | 362 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Riau 363 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 364 | https://ott-balancer.tvri.go.id/live/eds/Riau/hlstl/Riau.m3u8 365 | 366 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Sulawesi Barat 367 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 368 | https://ott-balancer.tvri.go.id/live/eds/Sulbar/hls/Sulbar.m3u8 369 | 370 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Sulawesi Selatan 371 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 372 | https://ott-balancer.tvri.go.id/live/eds/Sulsel/hls/Sulsel.m3u8 373 | 374 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Sulawesi Tengah 375 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 376 | https://ott-balancer.tvri.go.id/live/eds/Sulteng/hls/Sulteng.m3u8 377 | 378 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Sulawesi Tenggara 379 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 380 | https://ott-balancer.tvri.go.id/live/eds/Sultra/hls/Sultra.m3u8 381 | 382 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Sulawesi Utara 383 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 384 | https://ott-balancer.tvri.go.id/live/eds/Sulut/hls/Sulut.m3u8 385 | 386 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Sumatera Barat 387 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 388 | https://ott-balancer.tvri.go.id/live/eds/Sumbar/hls/Sumbar.m3u8 389 | 390 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Sumatera Selatan 391 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 392 | https://ott-balancer.tvri.go.id/live/eds/Sumsel/hls/Sumsel.m3u8 393 | 394 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Sumatera Utara 395 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 396 | https://ott-balancer.tvri.go.id/live/eds/Sumut/hls/Sumut.m3u8 397 | 398 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvridaerah.png",TVRI Bangka Belitung 399 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 400 | https://ott-balancer.tvri.go.id/live/eds/Babel/hls/Babel.m3u8 401 | 402 | #EXTINF:-1 tvg-id="madutv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/madutv.png",Madu TV 403 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 404 | https://re1.siar.us/madutv/hd720/playlist.m3u8 405 | 406 | #EXTINF:-1 tvg-id="InspiraTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/inspiratv.png",Inspira TV 407 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 408 | https://inspiratv.siar.us/inspiratv/live/playlist.m3u8 409 | 410 | #EXTINF:-1 tvg-id="SangajiTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sangajitv.png",Sangaji TV 411 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 412 | https://cdn.gunadarma.ac.id/streams/sangajitv/ingestsangajitv.m3u8 413 | 414 | #EXTINF:-1 tvg-id="TATV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tatv.png",TATV 415 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 416 | https://tatv.siar.us/tatv/live.sdp/playlist.m3u8 417 | 418 | #EXTINF:-1 tvg-id="tvku.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvku.png",TVKU 419 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 420 | http://103.30.1.14:8080/hls/live.m3u8 421 | 422 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvtabalong.png",TV Tabalong 423 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 424 | https://5bf7b725107e5.streamlock.net/tvtabalong/tvtabalong/playlist.m3u8 425 | 426 | #EXTINF:-1 tvg-id="UGTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ugtv.png",UGTV 427 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 428 | https://cdn.gunadarma.ac.id/streams/ugtv/ingestugtv.m3u8 429 | 430 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/arektv.png",Arek TV 431 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 432 | https://ams.juraganstreaming.com:5443/LiveApp/streams/arektv.m3u8 433 | 434 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/batutv.png",Batu TV 435 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 436 | http://117.103.69.219:8080/live/streaming/index.m3u8 437 | 438 | #EXTINF:-1 tvg-id="jawapostv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/jawapostv.png",Jawa Pos TV 439 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 440 | https://v2.siar.us/jawapostv/live/playlist.m3u8 441 | 442 | #EXTINF:-1 tvg-id="jtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/jtv.png",JTV 443 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 444 | https://63b2dc7196c38.streamlock.net:1937/ch2/myStream/index.m3u8 445 | 446 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/kstv.png",Kilisuci TV 447 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 448 | https://5bf7b725107e5.streamlock.net:443/kstv/kstv/playlist.m3u8 449 | 450 | #EXTINF:-1 tvg-id="saktitv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/saktitv.png",Sakti TV 451 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 452 | https://saktitv.siar.us/saktitv/live/playlist.m3u8 453 | 454 | #EXTINF:-1 tvg-id="Bali TV" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/balitv.png",Bali TV 455 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 456 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 457 | #EXTVLCOPT:http-referrer=https://visionplus.id 458 | https://testfunctionlive.mncnow.id/live/eds/BaliTV/sa_dash_vmx/BaliTV.mpd 459 | 460 | #EXTINF:-1 tvg-id="jaktv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/jaktv.png",JakTV 461 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 462 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 463 | #EXTVLCOPT:http-referrer=https://visionplus.id 464 | https://testfunctionlive.mncnow.id/live/eds/JakTV/sa_dash_vmx/JakTV.mpd 465 | 466 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/lingkartv.png",Lingkar TV 467 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 468 | https://lingkartv.my.id/hls/lingkartv.m3u8 469 | 470 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/bantentv.png",Banten TV 471 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 472 | https://5bf7b725107e5.streamlock.net:443/bantentv/bantentv/playlist.m3u8 473 | 474 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/jogjatv.png",Jogja TV 475 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 476 | https://stream.jogjatv.co.id/jtvlive/stream/index.m3u8 477 | 478 | #EXTINF:-1 tvg-id="dutatv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/dutatv.png",Duta TV 479 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 480 | https://dutatv.siar.us/dutatv/live/playlist.m3u8 481 | 482 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/simpang5tv.png",Simpang5 TV 483 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 484 | http://63b2dc7196c38.streamlock.net:1935/ch4/myStream/playlist.m3u8 485 | 486 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/bmstv.png",BMSTV 487 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 488 | https://5bf7b725107e5.streamlock.net/bmstv/bmstv/playlist.m3u8 489 | 490 | #EXTINF:-1 tvg-id="pujatvaceh.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pujatv.png",Puja TV 491 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 492 | https://v6.siar.us/pujatv/live/playlist.m3u8 493 | 494 | #EXTINF:-1 tvg-id="kawanuatv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/kawanuatv.png",Kawanua TV 495 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 496 | http://63b2dc7196c38.streamlock.net:1935/ch18/myStream/playlist.m3u8 497 | 498 | #EXTINF:-1 tvg-id="brtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/brtv.png",BRTV 499 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 500 | https://e1.siar.us/badartv/live/playlist.m3u8 501 | 502 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/smtv.png",SMTV 503 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 504 | http://63b2dc7196c38.streamlock.net:1935/ch25/myStream/playlist.m3u8 505 | 506 | #EXTINF:-1 tvg-id="rctv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rctv.png",RCTV 507 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 508 | https://v10.siar.us/rctv/live/playlist.m3u8 509 | 510 | #EXTINF:-1 tvg-id="batamtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/batamtv.png",Batam TV 511 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 512 | http://63b2dc7196c38.streamlock.net:1935/ch5/myStream/playlist.m3u8 513 | 514 | #EXTINF:-1 tvg-id="jpmtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/jpm.png",JPMTV 515 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 516 | http://63b2dc7196c38.streamlock.net:1935/ch6/myStream/playlist.m3u8 517 | 518 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/hbtv.png",Huma Betang TV 519 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 520 | https://v3.siar.us/humabetangtv/live/playlist.m3u8 521 | 522 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/bandungtv.png",Bandung TV 523 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 524 | http://202.150.153.254:443/bandungtvWEBSITE.m3u8 525 | 526 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/bungotv.png",Bungo TV 527 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 528 | https://5bf7b725107e5.streamlock.net/bungotv/bungotv/playlist.m3u8 529 | 530 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/jitv.png",JITV 531 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 532 | https://mam.jogjaprov.go.id:1937/tv/jitv_720p/playlist.m3u8 533 | 534 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/radartv.png",Radar TV 535 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 536 | http://103.140.188.211:1935/radartv/myStream/playlist.m3u8 537 | 538 | 539 | ######################## 540 | ######## DAKWAH ######## 541 | ######################## 542 | 543 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/muitv.png",MUI TV 544 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 545 | https://mui.siar.us/mui/live/playlist.m3u8 546 | 547 | #EXTINF:-1 tvg-id="insantv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/insantv.png",Insan TV 548 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 549 | https://flv.intechmedia.net/live/ch1.m3u8 550 | 551 | #EXTINF:-1 tvg-id="ashiiltv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ashiiltv.png",Ashiil TV 552 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 553 | https://flv.intechmedia.net/live/ch2.m3u8 554 | 555 | #EXTINF:-1 tvg-id="ahsantv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ahsantv.png",Ahsan TV 556 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 557 | https://flv.intechmedia.net/live/ch4.m3u8 558 | 559 | #EXTINF:-1 tvg-id="muadztv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/muadztv.png",Muadz TV 560 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 561 | https://flv.intechmedia.net/live/ch5.m3u8 562 | 563 | #EXTINF:-1 tvg-id="rasyaadtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rasyaadtv.png",Rasyaad TV 564 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 565 | https://flv.intechmedia.net/live/ch6.m3u8 566 | 567 | #EXTINF:-1 tvg-id="izzahtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/izzahtv.png",Izzah TV 568 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 569 | https://flv.intechmedia.net/live/ch28.m3u8 570 | 571 | #EXTINF:-1 tvg-id="hijrahtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/hijrahtv.png",Hijrah TV 572 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 573 | https://flv.intechmedia.net/live/ch8.m3u8 574 | 575 | #EXTINF:-1 tvg-id="alimantv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/alimantv.png",Al Iman TV 576 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 577 | https://flv.intechmedia.net/live/ch9.m3u8 578 | 579 | #EXTINF:-1 tvg-id="niagatv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/niagatv.png",Niaga TV 580 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 581 | https://flv.intechmedia.net/live/ch10.m3u8 582 | 583 | #EXTINF:-1 tvg-id="binbaztv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/binbaztv.png",BinBaz TV 584 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 585 | https://flv.intechmedia.net/live/ch22.m3u8 586 | 587 | #EXTINF:-1 tvg-id="salamtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/salamtv.png",Salam TV 588 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 589 | https://flv.intechmedia.net/live/ch12.m3u8 590 | 591 | #EXTINF:-1 tvg-id="tvsunnah.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvsunnah.png",TV Sunnah 592 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 593 | https://flv.intechmedia.net/live/ch16.m3u8 594 | 595 | #EXTINF:-1 tvg-id="sjptv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sjptv.png",SunnahJalanPasti TV 596 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 597 | https://flv.intechmedia.net/live/ch17.m3u8 598 | 599 | #EXTINF:-1 tvg-id="medstv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/medstv.png",MedSTV 600 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 601 | https://flv.intechmedia.net/live/ch23.m3u8 602 | 603 | #EXTINF:-1 tvg-id="naajiyatv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/naajiyatv.png",Naajiya TV 604 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 605 | https://flv.intechmedia.net/live/ch7.m3u8 606 | 607 | #EXTINF:-1 tvg-id="madinahtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/madinahtv.png",Madinah TV 608 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 609 | https://flv.intechmedia.net/live/ch13.m3u8 610 | 611 | #EXTINF:-1 tvg-id="mekahtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mekahtv.png",Mekah TV 612 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 613 | https://flv.intechmedia.net/live/ch14.m3u8 614 | 615 | #EXTINF:-1 tvg-id="alfurqontv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/alfurqontv.png",Al Furqon TV 616 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 617 | https://flv.intechmedia.net/live/ch24.m3u8 618 | 619 | #EXTINF:-1 tvg-id="RodjaTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rodjatv.png",Rodja TV 620 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 621 | https://flv.intechmedia.net/live/ch26.m3u8 622 | 623 | #EXTINF:-1 tvg-id="mgitv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mgitv.png",MGI TV 624 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 625 | https://flv.intechmedia.net/live/ch25.m3u8 626 | 627 | #EXTINF:-1 tvg-id="puldapiitv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/puldapiitv.png",PULDAPII TV 628 | #EXTVLCOPT:http-user-agent=YouTV/1.7.15-prod.release+b793db87 ExoPlayerLib/2.19.1 629 | https://flv.intechmedia.net/live/ch15.m3u8 630 | 631 | #EXTINF:-1 tvg-id="surautv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/surautv.png",Surau TV 632 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 633 | https://ams.juraganstreaming.com:5443/LiveApp/streams/surautv.m3u8 634 | 635 | #EXTINF:-1 tvg-id="deikids.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/deikids.png",DeiKids TV 636 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 637 | https://e.siar.us/live/deikidstv.m3u8 638 | 639 | #EXTINF:-1 tvg-id="madanitv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/madanitv.png",Madani TV 640 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 641 | https://stream.asianastream.com/madani/madanitv.smil/playlist.m3u8 642 | 643 | #EXTINF:-1 tvg-id="tv10.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tv10.png",TV10 644 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 645 | https://video1.earthcam.com/myearthcam/641f889a7774a38d5fc93dc76c4aeded.flv/playlist.m3u8 646 | 647 | #EXTINF:-1 tvg-id="khbtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/khbtv.png",KHB TV 648 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 649 | https://ythls.urfan.web.id/stream/UCJHC3VbFsp7kJ2NxPGltwiw/master.m3u8 650 | 651 | #EXTINF:-1 tvg-id="rifqantv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rifqantv.png",Rifqan TV 652 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 653 | https://ythls.urfan.web.id/stream/UCkrLd1cy4AUOp1pAdu1Ru7Q/master.m3u8 654 | 655 | #EXTINF:-1 tvg-id="srbtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/srbtv.png",SRB TV 656 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 657 | https://ythls.urfan.web.id/stream/UC3_QdDQnRVRDJzq56JTO_Zw/master.m3u8 658 | 659 | #EXTINF:-1 tvg-id="artvisi.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/artvisi.png",ARTVISI 660 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 661 | https://streaming.yufid.com/hls/artvisi.m3u8 662 | 663 | #EXTINF:-1 tvg-id="sunnahtv.sa" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sunnahtv.png",Sunnah TV 664 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 665 | https://ythls.urfan.web.id/stream/UCROKYPep-UuODNwyipe6JMw/master.m3u8 666 | 667 | #EXTINF:-1 tvg-id="AlQuranAlKareemTV.sa" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/qurantv.png",Qur'an TV 668 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 669 | https://ythls.urfan.web.id/stream/UCos52azQNBgW63_9uDJoPDA/master.m3u8 670 | 671 | #EXTINF:-1 tvg-id="MTATV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mtatv.png",MTA TV HD 672 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 673 | https://ythls.urfan.web.id/stream/UC1ZobjxMwDBcUcbI1z6F5VA/master.m3u8 674 | 675 | #EXTINF:-1 tvg-id="MTATV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mtatv.png",MTA TV 676 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 677 | https://streaming.indihometv.com/atm/DASH/mtatv/manifest.mpd 678 | 679 | #EXTINF:-1 tvg-id="MuhammadiyahTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvmu.png",tvMu 680 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 681 | https://e.siar.us/live/tvmu.m3u8 682 | 683 | #EXTINF:-1 tvg-id="MQTV.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mqtv.png",MQTV 684 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 685 | https://5bf7b725107e5.streamlock.net/mqtv/mqtv/playlist.m3u8 686 | 687 | #EXTINF:-1 tvg-id="TV9Nusantara.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tv9.png",tv9 Nusantara 688 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 689 | https://5bf7b725107e5.streamlock.net/tv9/tv9/playlist.m3u8 690 | 691 | #EXTINF:-1 tvg-id="alwafatarim.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/alwafa.png",Al Wafa Tarim TV 692 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 693 | https://ammedia.siar.us/ammedia/live/playlist.m3u8 694 | 695 | #EXTINF:-1 tvg-id="muslimtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/muslimtv.png",Muslim TV 696 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 697 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 698 | #EXTVLCOPT:http-referrer=https://visionplus.id 699 | https://testfunctionlive.mncnow.id/live/eds/MNCMuslim/sa_dash_vmx/MNCMuslim.mpd 700 | 701 | #EXTINF:-1 tvg-id="tawaftv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tawaftv.png",Tawaf TV 702 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 703 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 704 | #EXTVLCOPT:http-referrer=https://visionplus.id 705 | https://testfunctionlive.mncnow.id/live/eds/TawafTV/sa_dash_vmx/TawafTV.mpd 706 | 707 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/wesaltv.png",Wesal TV 708 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 709 | https://ams.juraganstreaming.com:5443/LiveApp/streams/wesaltv.m3u8 710 | 711 | 712 | ########################## 713 | ####### INFORMASI ######## 714 | ########################## 715 | 716 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 717 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 718 | https://iptv.urfan.web.id/info.m3u8 719 | 720 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 721 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 722 | https://iptv.urfan.web.id/info.m3u8 723 | 724 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 725 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 726 | https://iptv.urfan.web.id/info.m3u8 727 | 728 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 729 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 730 | https://iptv.urfan.web.id/info.m3u8 731 | 732 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 733 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 734 | https://iptv.urfan.web.id/info.m3u8 735 | 736 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Kami Tidak Bertanggungjawab Atas Isi Siaran 737 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 738 | https://iptv.urfan.web.id/info.m3u8 739 | 740 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Kami Hanya Mempermudah Untuk Penginputan URL 741 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 742 | https://iptv.urfan.web.id/info.m3u8 743 | 744 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",URL Tersebut Redirect Ke Server Lain Di Internet 745 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 746 | https://iptv.urfan.web.id/info.m3u8 747 | 748 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Kami Tidak Mengambil Keuntungan Apapun 749 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 750 | https://iptv.urfan.web.id/info.m3u8 751 | 752 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Jika Mendapatkan Playlist Ini Dengan Membayar 753 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 754 | https://iptv.urfan.web.id/info.m3u8 755 | 756 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Silahkan Minta Kembali Uangnya Ke Penjual 757 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 758 | https://iptv.urfan.web.id/info.m3u8 759 | 760 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Jika Terjadi Kendala Silahkan Refresh 761 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 762 | https://iptv.urfan.web.id/info.m3u8 763 | 764 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 765 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 766 | https://iptv.urfan.web.id/info.m3u8 767 | 768 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 769 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 770 | https://iptv.urfan.web.id/info.m3u8 771 | 772 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 773 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 774 | https://iptv.urfan.web.id/info.m3u8 775 | 776 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 777 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 778 | https://iptv.urfan.web.id/info.m3u8 779 | 780 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 781 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 782 | https://iptv.urfan.web.id/info.m3u8 783 | 784 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 785 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 786 | https://iptv.urfan.web.id/info.m3u8 787 | 788 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 789 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 790 | https://iptv.urfan.web.id/info.m3u8 791 | 792 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 793 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 794 | https://iptv.urfan.web.id/info.m3u8 795 | 796 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 797 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 798 | https://iptv.urfan.web.id/info.m3u8 799 | 800 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 801 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 802 | https://iptv.urfan.web.id/info.m3u8 803 | 804 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 805 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 806 | https://iptv.urfan.web.id/info.m3u8 807 | 808 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 809 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 810 | https://iptv.urfan.web.id/info.m3u8 811 | 812 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 813 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 814 | https://iptv.urfan.web.id/info.m3u8 815 | 816 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 817 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 818 | https://iptv.urfan.web.id/info.m3u8 819 | 820 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 821 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 822 | https://iptv.urfan.web.id/info.m3u8 823 | 824 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 825 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 826 | https://iptv.urfan.web.id/info.m3u8 827 | 828 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 829 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 830 | https://iptv.urfan.web.id/info.m3u8 831 | 832 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 833 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 834 | https://iptv.urfan.web.id/info.m3u8 835 | 836 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 837 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 838 | https://iptv.urfan.web.id/info.m3u8 839 | 840 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 841 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 842 | https://iptv.urfan.web.id/info.m3u8 843 | 844 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 845 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 846 | https://iptv.urfan.web.id/info.m3u8 847 | 848 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 849 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 850 | https://iptv.urfan.web.id/info.m3u8 851 | 852 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 853 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 854 | https://iptv.urfan.web.id/info.m3u8 855 | 856 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 857 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 858 | https://iptv.urfan.web.id/info.m3u8 859 | 860 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 861 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 862 | https://iptv.urfan.web.id/info.m3u8 863 | 864 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 865 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 866 | https://iptv.urfan.web.id/info.m3u8 867 | 868 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 869 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 870 | https://iptv.urfan.web.id/info.m3u8 871 | 872 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 873 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 874 | https://iptv.urfan.web.id/info.m3u8 875 | 876 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 877 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 878 | https://iptv.urfan.web.id/info.m3u8 879 | 880 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 881 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 882 | https://iptv.urfan.web.id/info.m3u8 883 | 884 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 885 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 886 | https://iptv.urfan.web.id/info.m3u8 887 | 888 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 889 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 890 | https://iptv.urfan.web.id/info.m3u8 891 | 892 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 893 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 894 | https://iptv.urfan.web.id/info.m3u8 895 | 896 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 897 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 898 | https://iptv.urfan.web.id/info.m3u8 899 | 900 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 901 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 902 | https://iptv.urfan.web.id/info.m3u8 903 | 904 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 905 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 906 | https://iptv.urfan.web.id/info.m3u8 907 | 908 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 909 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 910 | https://iptv.urfan.web.id/info.m3u8 911 | 912 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 913 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 914 | https://iptv.urfan.web.id/info.m3u8 915 | 916 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 917 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 918 | https://iptv.urfan.web.id/info.m3u8 919 | 920 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 921 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 922 | https://iptv.urfan.web.id/info.m3u8 923 | 924 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 925 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 926 | https://iptv.urfan.web.id/info.m3u8 927 | 928 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 929 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 930 | https://iptv.urfan.web.id/info.m3u8 931 | 932 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 933 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 934 | https://iptv.urfan.web.id/info.m3u8 935 | 936 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 937 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 938 | https://iptv.urfan.web.id/info.m3u8 939 | 940 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 941 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 942 | https://iptv.urfan.web.id/info.m3u8 943 | 944 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 945 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 946 | https://iptv.urfan.web.id/info.m3u8 947 | 948 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 949 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 950 | https://iptv.urfan.web.id/info.m3u8 951 | 952 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 953 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 954 | https://iptv.urfan.web.id/info.m3u8 955 | 956 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 957 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 958 | https://iptv.urfan.web.id/info.m3u8 959 | 960 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 961 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 962 | https://iptv.urfan.web.id/info.m3u8 963 | 964 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 965 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 966 | https://iptv.urfan.web.id/info.m3u8 967 | 968 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 969 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 970 | https://iptv.urfan.web.id/info.m3u8 971 | 972 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 973 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 974 | https://iptv.urfan.web.id/info.m3u8 975 | 976 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 977 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 978 | https://iptv.urfan.web.id/info.m3u8 979 | 980 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 981 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 982 | https://iptv.urfan.web.id/info.m3u8 983 | 984 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 985 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 986 | https://iptv.urfan.web.id/info.m3u8 987 | 988 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 989 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 990 | https://iptv.urfan.web.id/info.m3u8 991 | 992 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 993 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 994 | https://iptv.urfan.web.id/info.m3u8 995 | 996 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 997 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 998 | https://iptv.urfan.web.id/info.m3u8 999 | 1000 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 1001 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1002 | https://iptv.urfan.web.id/info.m3u8 1003 | 1004 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 1005 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1006 | https://iptv.urfan.web.id/info.m3u8 1007 | 1008 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 1009 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1010 | https://iptv.urfan.web.id/info.m3u8 1011 | 1012 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 1013 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1014 | https://iptv.urfan.web.id/info.m3u8 1015 | 1016 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 1017 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1018 | https://iptv.urfan.web.id/info.m3u8 1019 | 1020 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 1021 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1022 | https://iptv.urfan.web.id/info.m3u8 1023 | 1024 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 1025 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1026 | https://iptv.urfan.web.id/info.m3u8 1027 | 1028 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 1029 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1030 | https://iptv.urfan.web.id/info.m3u8 1031 | 1032 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 1033 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1034 | https://iptv.urfan.web.id/info.m3u8 1035 | 1036 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 1037 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1038 | https://iptv.urfan.web.id/info.m3u8 1039 | 1040 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 1041 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1042 | https://iptv.urfan.web.id/info.m3u8 1043 | 1044 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",iptv.urfan.web.id 1045 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1046 | https://iptv.urfan.web.id/info.m3u8 1047 | 1048 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Gratis 1049 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1050 | https://iptv.urfan.web.id/info.m3u8 1051 | 1052 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Playlist Ini Tanpa Donasi 1053 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1054 | https://iptv.urfan.web.id/info.m3u8 1055 | 1056 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Diperjualbelikan 1057 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1058 | https://iptv.urfan.web.id/info.m3u8 1059 | 1060 | #EXTINF:-1 tvg-id="iptv.urfan.web.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/info.png",Tidak Boleh Dibundling Untuk Jualan 1061 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1062 | https://iptv.urfan.web.id/info.m3u8 1063 | 1064 | 1065 | ###################### 1066 | ######## ANAK ######## 1067 | ###################### 1068 | 1069 | #EXTINF:-1 tvg-id="aniplus.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/aniplus.png",ANIPLUS 1070 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1071 | #EXTVLCOPT:http-referrer=http://dens.tv 1072 | http://op-group1-swiftservehd-1.dens.tv/h/h201/02.m3u8 1073 | 1074 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cikids.png",Cinemachi Kids 1075 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1076 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1077 | #EXTVLCOPT:http-referrer=https://visionplus.id 1078 | https://testfunctionlive.mncnow.id/live/eds/Cinemachi-Kids-HD/sa_dash_vmx/Cinemachi-Kids-HD.mpd 1079 | 1080 | #EXTINF:-1 tvg-id="Funplanet.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/funplanet.png",Fun Planet 1081 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1082 | https://cdn-telkomsel-01.akamaized.net/Content/HLS/Live/channel(c99739b1-0748-4a2a-b586-2501837adf20)/index.m3u8 1083 | 1084 | #EXTINF:-1 tvg-id="MyKidz.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mykidz.png",My Kidz 1085 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1086 | #EXTVLCOPT:http-referrer=http://dens.tv 1087 | http://op-group1-swiftservesd-1.dens.tv/h/h191/index.m3u8 1088 | 1089 | #EXTINF:-1 tvg-id="AnimaxAsia.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/animax.png",Animax 1090 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1091 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1092 | #EXTVLCOPT:http-referrer=https://visionplus.id 1093 | https://testfunctionlive.mncnow.id/live/eds/Animax/sa_dash_vmx/Animax.mpd 1094 | 1095 | #EXTINF:-1 tvg-id="moonbugkids.us" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/moonbug.png",Moonbug Kids 1096 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1097 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1098 | #EXTVLCOPT:http-referrer=https://visionplus.id 1099 | https://testfunctionlive.mncnow.id/live/eds/BabyTV-NewHD/sa_dash_vmx/BabyTV-NewHD.mpd 1100 | 1101 | #EXTINF:-1 tvg-id="cbeebiesasia.uk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cbeebies.png",CBeebies 1102 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1103 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1104 | #EXTVLCOPT:http-referrer=https://visionplus.id 1105 | https://testfunctionlive.mncnow.id/live/eds/Cbeebies/sa_dash_vmx/Cbeebies.mpd 1106 | 1107 | #EXTINF:-1 tvg-id="ebskids.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ebskids.png",EBS Kids 1108 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1109 | https://ebsonair.ebs.co.kr/ebsufamilypc/familypc1m/playlist.m3u8 1110 | 1111 | #EXTINF:-1 tvg-id="kidstv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/kidstv.png",Kids TV 1112 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1113 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1114 | #EXTVLCOPT:http-referrer=https://visionplus.id 1115 | https://testfunctionlive.mncnow.id/live/eds/KidsChannel/sa_dash_vmx/KidsChannel.mpd 1116 | 1117 | #EXTINF:-1 tvg-id="moonbugkids.us" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/moonbug.png",Moonbug Kids 1118 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1119 | https://moonbug-rokuus.amagi.tv/playlist.m3u8 1120 | 1121 | #EXTINF:-1 tvg-id="nickjrasia.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/nickjr.png",Nick Jr. Asia 1122 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1123 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1124 | #EXTVLCOPT:http-referrer=https://visionplus.id 1125 | https://testfunctionlive.mncnow.id/live/eds/NickJr-HDD/sa_dash_vmx/NickJr-HDD.mpd 1126 | 1127 | #EXTINF:-1 tvg-id="nickelodeonasia.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/nick.png",Nickelodeon Asia 1128 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1129 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1130 | #EXTVLCOPT:http-referrer=https://visionplus.id 1131 | https://testfunctionlive.mncnow.id/live/eds/Nickelodeon/sa_dash_vmx/Nickelodeon.mpd 1132 | 1133 | #EXTINF:-1 tvg-id="pbskids.us" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pbskids.png",PBS Kids 1134 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1135 | https://2-fss-2.streamhoster.com/pl_140/amlst:200914-1298290/playlist.m3u8 1136 | 1137 | #EXTINF:-1 tvg-id="spacetoonarabic.ae" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/spacetoon.png",Spacetoon 1138 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1139 | https://shls-spacetoon-prod-dub.shahid.net/out/v1/6240b773a3f34cca95d119f9e76aec02/index.m3u8 1140 | 1141 | #EXTINF:-1 tvg-id="zoomoo.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/zoomoo.png",Zoo Moo 1142 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1143 | https://zoomoo-samsungau.amagi.tv/playlist.m3u8 1144 | 1145 | 1146 | ###################### 1147 | ####### BERITA ####### 1148 | ###################### 1149 | 1150 | #EXTINF:-1 tvg-id="cna.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cna.png",CNA 1151 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1152 | https://d2e1asnsl7br7b.cloudfront.net/4c152bfc7ad2463d928bfbec0990eaeb/index.m3u8 1153 | 1154 | #EXTINF:-1 tvg-id="liputan6.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/liputan6.png",Liputan 6 1155 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1156 | https://ythls.urfan.web.id/stream/UC1QpnGo11epfexw1bIiTHTg/master.m3u8 1157 | 1158 | #EXTINF:-1 tvg-id="aljazeeraenglish.qa" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/aljazeera.png",Al-Jazeera English 1159 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1160 | https://live-hls-web-aje.getaj.net/AJE/index.m3u8 1161 | 1162 | #EXTINF:-1 tvg-id="aljazeera.qa" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/aljazeera.png",Al-Jazeera Arab 1163 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1164 | https://live-hls-web-aja.getaj.net/AJA/index.m3u8 1165 | 1166 | #EXTINF:-1 tvg-id="bbcworldnewsasiapacific.uk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/bbc.png",BBC World News 1167 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1168 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1169 | #EXTVLCOPT:http-referrer=https://visionplus.id 1170 | https://testfunctionlive.mncnow.id/live/eds/BBCWorldNews/sa_dash_vmx/BBCWorldNews.mpd 1171 | 1172 | #EXTINF:-1 tvg-id="bloombergtvasia.hk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/bloomberg.png",Bloomberg 1173 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1174 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1175 | #EXTVLCOPT:http-referrer=https://visionplus.id 1176 | https://testfunctionlive.mncnow.id/live/eds/Bloomberg/sa_dash_vmx/Bloomberg.mpd 1177 | 1178 | #EXTINF:-1 tvg-id="cgtn.cn" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cgtn.png",CGTN 1179 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1180 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1181 | #EXTVLCOPT:http-referrer=https://visionplus.id 1182 | https://testfunctionlive.mncnow.id/live/eds/CGTN/sa_dash_vmx/CGTN.mpd 1183 | 1184 | #EXTINF:-1 tvg-id="cnbcasia.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cnbcasia.png",CNBC Asia 1185 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1186 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1187 | #EXTVLCOPT:http-referrer=https://visionplus.id 1188 | https://testfunctionlive.mncnow.id/live/eds/CNBC/sa_dash_vmx/CNBC.mpd 1189 | 1190 | #EXTINF:-1 tvg-id="dwenglish.de" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/dwtv.png",DW 1191 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1192 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1193 | #EXTVLCOPT:http-referrer=https://visionplus.id 1194 | https://testfunctionlive.mncnow.id/live/eds/DW/sa_dash_vmx/DW.mpd 1195 | 1196 | #EXTINF:-1 tvg-id="dwenglish.de" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/dwtv.png",DW HD 1197 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1198 | https://dwamdstream102.akamaized.net/hls/live/2015525/dwstream102/stream05/streamPlaylist.m3u8 1199 | 1200 | #EXTINF:-1 tvg-id="euronewsenglish.fr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/euronewstv.png",EuroNews 1201 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1202 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1203 | #EXTVLCOPT:http-referrer=https://visionplus.id 1204 | https://testfunctionlive.mncnow.id/live/eds/EuroNews/sa_dash_vmx/EuroNews.mpd 1205 | 1206 | #EXTINF:-1 tvg-id="foxnewschannel.us" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/foxnews.png",FOX News Channel 1207 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1208 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1209 | #EXTVLCOPT:http-referrer=https://visionplus.id 1210 | https://testfunctionlive.mncnow.id/live/eds/FoxNews/sa_dash_vmx/FoxNews.mpd 1211 | 1212 | #EXTINF:-1 tvg-id="france24english.fr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/france24.png",France 24 1213 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1214 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1215 | #EXTVLCOPT:http-referrer=https://visionplus.id 1216 | https://testfunctionlive.mncnow.id/live/eds/France24/sa_dash_vmx/France24.mpd 1217 | 1218 | #EXTINF:-1 tvg-id="idxchannel.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/idx.png",IDX Channel 1219 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1220 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1221 | #EXTVLCOPT:http-referrer=https://visionplus.id 1222 | https://testfunctionlive.mncnow.id/live/eds/IDX/sa_dash_vmx/IDX.mpd 1223 | 1224 | #EXTINF:-1 tvg-id="Sindownews.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sindonews.png",Sindonews TV 1225 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1226 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1227 | #EXTVLCOPT:http-referrer=https://visionplus.id 1228 | https://testfunctionlive.mncnow.id/live/eds/MNCnews-HDD/sa_dash_vmx/MNCnews-HDD.mpd 1229 | 1230 | #EXTINF:-1 tvg-id="nhkworldjapan.jp" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/nhkworld.png",NHK World Japan 1231 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1232 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1233 | #EXTVLCOPT:http-referrer=https://visionplus.id 1234 | https://testfunctionlive.mncnow.id/live/eds/NHKWorldTV/sa_dash_vmx/NHKWorldTV.mpd 1235 | 1236 | #EXTINF:-1 tvg-id="nhkworldpremium.jp" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/nhkworld.png",NHK World Premium 1237 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1238 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1239 | #EXTVLCOPT:http-referrer=https://visionplus.id 1240 | https://testfunctionlive.mncnow.id/live/eds/NHKWorldPremium/sa_dash_vmx/NHKWorldPremium.mpd 1241 | 1242 | #EXTINF:-1 tvg-id="ntvnews24.jp" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ntvnews.png",NTV News 24 1243 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1244 | https://n24-cdn-live-b.ntv.co.jp/ch01/index.m3u8 1245 | 1246 | #EXTINF:-1 tvg-id="rt.ru" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rusiatoday.png",Russia Today 1247 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1248 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1249 | #EXTVLCOPT:http-referrer=https://visionplus.id 1250 | https://testfunctionlive.mncnow.id/live/eds/RTEnglish/sa_dash_vmx/RTEnglish.mpd 1251 | 1252 | #EXTINF:-1 tvg-id="tv5mondeasia.fr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tv5monde.png",TV5 Monde 1253 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1254 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1255 | #EXTVLCOPT:http-referrer=https://visionplus.id 1256 | https://testfunctionlive.mncnow.id/live/eds/TV5/sa_dash_vmx/TV5.mpd 1257 | 1258 | #EXTINF:-1 tvg-id="trtworld.tr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/trtworld.png",TRT World 1259 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1260 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1261 | #EXTVLCOPT:http-referrer=https://visionplus.id 1262 | https://testfunctionlive.mncnow.id/live/eds/TRTWorld/sa_dash_vmx/TRTWorld.mpd 1263 | 1264 | #EXTINF:-1 tvg-id="voa.us" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/voatv.png",Voice of America 1265 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1266 | https://voa-ingest.akamaized.net/hls/live/2033868/tvmc03/playlist.m3u8 1267 | 1268 | 1269 | ########################### 1270 | ####### PENGETAHUAN ####### 1271 | ########################### 1272 | 1273 | #EXTINF:-1 tvg-id="ebs1tv.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ebs.png",EBS 1 1274 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1275 | https://ebsonairios.ebs.co.kr/groundwavetablet500k/tablet500k/playlist.m3u8 1276 | 1277 | #EXTINF:-1 tvg-id="ebs2tv.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ebs.png",EBS 2 1278 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1279 | https://ebsonairios.ebs.co.kr/ebs2tablet500k/tablet500k/playlist.m3u8 1280 | 1281 | #EXTINF:-1 tvg-id="bbcearthasia.uk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/bbcearth.png",BBC Earth 1282 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1283 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1284 | #EXTVLCOPT:http-referrer=https://visionplus.id 1285 | https://testfunctionlive.mncnow.id/live/eds/BBCEarth-HD/sa_dash_vmx/BBCEarth-HD.mpd 1286 | 1287 | #EXTINF:-1 tvg-id="sonybbcearth.uk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sonybbc.png",Sony BBC Earth 1288 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1289 | https://dai.google.com/linear/hls/event/6bVWYIKGS0CIa-cOpZZJPQ/master.m3u8 1290 | 1291 | #EXTINF:-1 tvg-id="cgtndocumentary.cn" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cgtndocu.png",CGTN Documentary 1292 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1293 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1294 | #EXTVLCOPT:http-referrer=https://visionplus.id 1295 | https://testfunctionlive.mncnow.id/live/eds/CGTN_Doc/sa_dash_vmx/CGTN_Doc.mpd 1296 | 1297 | #EXTINF:-1 tvg-id="crimeplusinvestigationasia.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/crime.png",Crime + Investigation 1298 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1299 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1300 | #EXTVLCOPT:http-referrer=https://visionplus.id 1301 | https://testfunctionlive.mncnow.id/live/eds/CrimeInvestigation/sa_dash_vmx/CrimeInvestigation.mpd 1302 | 1303 | #EXTINF:-1 tvg-id="historyasia.us" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/history.png",History 1304 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1305 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1306 | #EXTVLCOPT:http-referrer=https://visionplus.id 1307 | https://testfunctionlive.mncnow.id/live/eds/History/sa_dash_vmx/History.mpd 1308 | 1309 | #EXTINF:-1 tvg-id="lovenature.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/lovenature.png",Love Nature 4K 1310 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1311 | https://d18dyiwu97wm6q.cloudfront.net/playlist.m3u8 1312 | 1313 | #EXTINF:-1 tvg-id="lovenature.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/lovenature.png",Love Nature 1314 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1315 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1316 | #EXTVLCOPT:http-referrer=https://visionplus.id 1317 | https://testfunctionlive.mncnow.id/live/eds/NatGeoWild/sa_dash_vmx/NatGeoWild.mpd 1318 | 1319 | #EXTINF:-1 tvg-id="nasatv.us" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/nasatv.png",NASA TV Media 1320 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1321 | https://ntv2.akamaized.net/hls/live/2013923/NASA-NTV2-HLS/master.m3u8 1322 | 1323 | #EXTINF:-1 tvg-id="nasatvpublic.us" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/nasatv.png",NASA TV Public 1324 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1325 | https://ntv1.akamaized.net/hls/live/2014075/NASA-NTV1-HLS/master.m3u8 1326 | 1327 | #EXTINF:-1 tvg-id="outdoorchannel.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/outdoorch.png",Outdoor Channel 1328 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1329 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1330 | #EXTVLCOPT:http-referrer=https://visionplus.id 1331 | https://testfunctionlive.mncnow.id/live/eds/NatGeoChannel/sa_dash_vmx/NatGeoChannel.mpd 1332 | 1333 | 1334 | ######################## 1335 | ######### FILM ######### 1336 | ######################## 1337 | 1338 | #EXTINF:-1 tvg-id="myfamilychannel.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mfc.png",My Family Channel 1339 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1340 | #EXTVLCOPT:http-referrer=http://dens.tv 1341 | http://op-group1-swiftservesd-1.dens.tv/h/h194/index.m3u8 1342 | 1343 | #EXTINF:-1 tvg-id="mychinemaasia.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mca.png",My Cinema Asia 1344 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1345 | #EXTVLCOPT:http-referrer=http://dens.tv 1346 | http://op-group1-swiftservesd-1.dens.tv/h/h193/index.m3u8 1347 | 1348 | #EXTINF:-1 tvg-id="rockaction.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rockact.png",Rock Action 1349 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1350 | #EXTVLCOPT:http-referrer=http://dens.tv 1351 | http://op-group1-swiftservehd-1.dens.tv/h/h218/02.m3u8 1352 | 1353 | #EXTINF:-1 tvg-id="rockentertainment.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rockent.png",Rock Entertainment 1354 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1355 | #EXTVLCOPT:http-referrer=http://dens.tv 1356 | http://op-group1-swiftservehd-1.dens.tv/h/h213/02.m3u8 1357 | 1358 | #EXTINF:-1 tvg-id="ccm.hk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ccm.png",Celestial Classic Movies HD 1359 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1360 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1361 | #EXTVLCOPT:http-referrer=https://visionplus.id 1362 | https://testfunctionlive.mncnow.id/live/eds/CelestialClassic/sa_dash_vmx/CelestialClassic.mpd 1363 | 1364 | #EXTINF:-1 tvg-id="ccm.hk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ccm.png",Celestial Classic Movies 1365 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1366 | #EXTVLCOPT:http-referrer=http://dens.tv 1367 | http://op-group1-swiftservehd-1.dens.tv/h/h239/02.m3u8 1368 | 1369 | #EXTINF:-1 tvg-id="celestialmoviesindonesia.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cm.png",Celestial Movies HD 1370 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1371 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1372 | #EXTVLCOPT:http-referrer=https://visionplus.id 1373 | https://testfunctionlive.mncnow.id/live/eds/CelestialMovie/sa_dash_vmx/CelestialMovie.mpd 1374 | 1375 | #EXTINF:-1 tvg-id="celestialmoviesindonesia.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cm.png",Celestial Movies 1376 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1377 | #EXTVLCOPT:http-referrer=http://dens.tv 1378 | http://op-group1-swiftservehd-1.dens.tv/h/h212/02.m3u8 1379 | 1380 | #EXTINF:-1 tvg-id="cinemaworld.my" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cw.png",Cinema World HD 1381 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1382 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1383 | #EXTVLCOPT:http-referrer=https://visionplus.id 1384 | https://testfunctionlive.mncnow.id/live/eds/CinemaWorld/sa_dash_vmx/CinemaWorld.mpd 1385 | 1386 | #EXTINF:-1 tvg-id="galaxy.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/galaxy.png",Galaxy 1387 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1388 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1389 | #EXTVLCOPT:http-referrer=https://visionplus.id 1390 | https://testfunctionlive.mncnow.id/live/eds/Galaxy-HD/sa_dash_vmx/Galaxy-HD.mpd 1391 | 1392 | #EXTINF:-1 tvg-id="galaxypremium.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/galaxypremium.png",Galaxy Premium 1393 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1394 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1395 | #EXTVLCOPT:http-referrer=https://visionplus.id 1396 | https://testfunctionlive.mncnow.id/live/eds/GalaxyPremium-HD/sa_dash_vmx/GalaxyPremium-HD.mpd 1397 | 1398 | #EXTINF:-1 tvg-id="hitsmovies.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/hitsmovies.png",HITS Movies HD 1399 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1400 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1401 | #EXTVLCOPT:http-referrer=https://visionplus.id 1402 | https://testfunctionlive.mncnow.id/live/eds/HitsMovies/sa_dash_vmx/HitsMovies.mpd 1403 | 1404 | #EXTINF:-1 tvg-id="hitsmovies.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/hitsmovies.png",HITS Movies 1405 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1406 | #EXTVLCOPT:http-referrer=http://dens.tv 1407 | http://op-group1-swiftservehd-1.dens.tv/h/h206/02.m3u8 1408 | 1409 | #EXTINF:-1 tvg-id="imc.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/imc.png",IMC 1410 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1411 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1412 | #EXTVLCOPT:http-referrer=https://visionplus.id 1413 | https://testfunctionlive.mncnow.id/live/eds/IndonesiaMovieChannels-HD/sa_dash_vmx/IndonesiaMovieChannels-HD.mpd 1414 | 1415 | #EXTINF:-1 tvg-id="thrill.hk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/thrill.png",Thrill HD 1416 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1417 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1418 | #EXTVLCOPT:http-referrer=https://visionplus.id 1419 | https://testfunctionlive.mncnow.id/live/eds/Thrill/sa_dash_vmx/Thrill.mpd 1420 | 1421 | #EXTINF:-1 tvg-id="thrill.hk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/thrill.png",Thrill 1422 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1423 | #EXTVLCOPT:http-referrer=http://dens.tv 1424 | http://op-group1-swiftservehd-1.dens.tv/h/h240/02.m3u8 1425 | 1426 | #EXTINF:-1 tvg-id="tvnmoviesasia.hk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvnmovies.png",tvN Movies HD 1427 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1428 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1429 | #EXTVLCOPT:http-referrer=https://visionplus.id 1430 | https://testfunctionlive.mncnow.id/live/eds/tvNMovies/sa_dash_vmx/tvNMovies.mpd 1431 | 1432 | #EXTINF:-1 tvg-id="tvnmoviesasia.hk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvnmovies.png",tvN Movies 1433 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1434 | #EXTVLCOPT:http-referrer=http://dens.tv 1435 | http://op-group1-swiftservehd-1.dens.tv/h/h214/02.m3u8 1436 | 1437 | #EXTINF:-1 tvg-id="zeebioskop.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/zeebi.png",Zee Bioskop 1438 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1439 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1440 | #EXTVLCOPT:http-referrer=https://visionplus.id 1441 | https://testfunctionlive.mncnow.id/live/eds/ZeeBIOSKOP/sa_dash_vmx/ZeeBIOSKOP.mpd 1442 | 1443 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ci.png",Cinemachi 1444 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1445 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1446 | #EXTVLCOPT:http-referrer=https://visionplus.id 1447 | https://testfunctionlive.mncnow.id/live/eds/Cinemachi-HD/sa_dash_vmx/Cinemachi-HD.mpd 1448 | 1449 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ciaction.png",Cinemachi Action 1450 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1451 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1452 | #EXTVLCOPT:http-referrer=https://visionplus.id 1453 | https://testfunctionlive.mncnow.id/live/eds/Cinemachi-Action/sa_dash_vmx/Cinemachi-Action.mpd 1454 | 1455 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cimax.png",Cinemachi Max 1456 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1457 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1458 | #EXTVLCOPT:http-referrer=https://visionplus.id 1459 | https://testfunctionlive.mncnow.id/live/eds/Cinemachi-Max-HD/sa_dash_vmx/Cinemachi-Max-HD.mpd 1460 | 1461 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cixtra.png",Cinemachi Xtra 1462 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1463 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1464 | #EXTVLCOPT:http-referrer=https://visionplus.id 1465 | https://testfunctionlive.mncnow.id/live/eds/Cinemachi-Xtra-HD/sa_dash_vmx/Cinemachi-Xtra-HD.mpd 1466 | 1467 | 1468 | ######################### 1469 | ######## HIBURAN ######## 1470 | ######################### 1471 | 1472 | #EXTINF:-1 tvg-id="abcaustralia.au" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/abc.png",ABC Australia 1473 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1474 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1475 | #EXTVLCOPT:http-referrer=https://visionplus.id 1476 | https://testfunctionlive.mncnow.id/live/eds/AustraliaPlus/sa_dash_vmx/AustraliaPlus.mpd 1477 | 1478 | #EXTINF:-1 tvg-id="nadoo.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/nadoo.png",Nadoo Korean 1479 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1480 | #EXTVLCOPT:http-referrer=http://dens.tv 1481 | http://op-krgroup1-swiftservehd-1.dens.tv/h/h125/live.m3u8 1482 | 1483 | #EXTINF:-1 tvg-id="kbsworld.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/kbsworld.png",KBS World HD 1484 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1485 | https://kbsworld-ott.akamaized.net/hls/live/2002341/kbsworld/master.m3u8 1486 | 1487 | #EXTINF:-1 tvg-id="kbsworld.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/kbsworld.png",KBS World 1488 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1489 | http://op-group1-swiftservehd-1.dens.tv/h/h243/02.m3u8 1490 | 1491 | #EXTINF:-1 tvg-id="kbskorea.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/kbskorea.png",KBS Korea 1492 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1493 | http://op-group1-swiftservehd-1.dens.tv/h/h241/02.m3u8 1494 | 1495 | #EXTINF:-1 tvg-id="kplus.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/kplus.png",K+ 1496 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1497 | #EXTVLCOPT:http-referrer=http://dens.tv 1498 | http://op-group1-swiftservehd-1.dens.tv/h/h219/02.m3u8 1499 | 1500 | #EXTINF:-1 tvg-id="kplus.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/kplus.png",K+ HD 1501 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1502 | https://streaming.indihometv.com/atm/DASH/kplus/manifest.mpd 1503 | 1504 | #EXTINF:-1 tvg-id="anhuitv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/anhui.png",Anhui TV 1505 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1506 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1507 | #EXTVLCOPT:http-referrer=https://visionplus.id 1508 | https://testfunctionlive.mncnow.id/live/eds/AnhuiTV/sa_dash_vmx/AnhuiTV.mpd 1509 | 1510 | #EXTINF:-1 tvg-id="arirangworld.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/arirang.png",Arirang 1511 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1512 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1513 | #EXTVLCOPT:http-referrer=https://visionplus.id 1514 | https://testfunctionlive.mncnow.id/live/eds/Arirang/sa_dash_vmx/Arirang.mpd 1515 | 1516 | #EXTINF:-1 tvg-id="arirangworld.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/arirang.png",Arirang HD 1517 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1518 | https://amdlive-ch01-ctnd-com.akamaized.net/arirang_1ch/smil:arirang_1ch.smil/playlist.m3u8 1519 | 1520 | #EXTINF:-1 tvg-id="axnindonesia.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/axn.png",AXN 1521 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1522 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1523 | #EXTVLCOPT:http-referrer=https://visionplus.id 1524 | https://testfunctionlive.mncnow.id/live/eds/AXN/sa_dash_vmx/AXN.mpd 1525 | 1526 | #EXTINF:-1 tvg-id="cjenm.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/cjenm.png",CJ E&M 1527 | https://d50a1g0nh14ou.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/CJ-ENM-prod/e91c6419_2e45_4f6c_a646_b912658d73b8/hls/playlist.m3u8 1528 | 1529 | #EXTINF:-1 tvg-id="entertainment.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ent.png",Entertainment 1530 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1531 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1532 | #EXTVLCOPT:http-referrer=https://visionplus.id 1533 | https://testfunctionlive.mncnow.id/live/eds/MNCEntertainment/sa_dash_vmx/MNCEntertainment.mpd 1534 | 1535 | #EXTINF:-1 tvg-id="fmn.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/fmn.png",FMN 1536 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1537 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1538 | #EXTVLCOPT:http-referrer=https://visionplus.id 1539 | https://testfunctionlive.mncnow.id/live/eds/FMN/sa_dash_vmx/FMN.mpd 1540 | 1541 | #EXTINF:-1 tvg-id="Gem.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/gemtv.png",GEM HD 1542 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1543 | https://cdn08jtedge.indihometv.com/dassdvr/133/sgem/manifest.mpd 1544 | 1545 | #EXTINF:-1 tvg-id="hits.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/hits.png",HITS HD 1546 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1547 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1548 | #EXTVLCOPT:http-referrer=https://visionplus.id 1549 | https://testfunctionlive.mncnow.id/live/eds/HITS/sa_dash_vmx/HITS.mpd 1550 | 1551 | #EXTINF:-1 tvg-id="hits.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/hits.png",HITS 1552 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1553 | #EXTVLCOPT:http-referrer=http://dens.tv 1554 | http://op-group1-swiftservehd-1.dens.tv/h/h205/02.m3u8 1555 | 1556 | #EXTINF:-1 tvg-id="hunantv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/hunan.png",Hunan TV 1557 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1558 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1559 | #EXTVLCOPT:http-referrer=https://visionplus.id 1560 | https://testfunctionlive.mncnow.id/live/eds/HunanTV/sa_dash_vmx/HunanTV.mpd 1561 | 1562 | #EXTINF:-1 tvg-id="jiangsutv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/jiangsu.png",Jiangsu TV 1563 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1564 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1565 | #EXTVLCOPT:http-referrer=https://visionplus.id 1566 | https://testfunctionlive.mncnow.id/live/eds/JiangsuTV/sa_dash_vmx/JiangsuTV.mpd 1567 | 1568 | #EXTINF:-1 tvg-id="kix.hk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/kix.png",KIX HD 1569 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1570 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1571 | #EXTVLCOPT:http-referrer=https://visionplus.id 1572 | https://testfunctionlive.mncnow.id/live/eds/KIX/sa_dash_vmx/KIX.mpd 1573 | 1574 | #EXTINF:-1 tvg-id="kix.hk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/kix.png",KIX 1575 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1576 | #EXTVLCOPT:http-referrer=http://dens.tv 1577 | http://op-group1-swiftservehd-1.dens.tv/h/h220/02.m3u8 1578 | 1579 | #EXTINF:-1 tvg-id="oktv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/oktv.png",OKTV 1580 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1581 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1582 | #EXTVLCOPT:http-referrer=https://visionplus.id 1583 | https://testfunctionlive.mncnow.id/live/eds/OKTV/sa_dash_vmx/OKTV.mpd 1584 | 1585 | #EXTINF:-1 tvg-id="onetvasia.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/one.png",ONE HD 1586 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1587 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1588 | #EXTVLCOPT:http-referrer=https://visionplus.id 1589 | https://testfunctionlive.mncnow.id/live/eds/SetOne/sa_dash_vmx/SetOne.mpd 1590 | 1591 | #EXTINF:-1 tvg-id="sbstv.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sbs.png",SBSTV 1592 | https://newidco-sbs-1-eu.xiaomi.wurl.tv/playlist.m3u8 1593 | 1594 | #EXTINF:-1 tvg-id="shanghaidragontv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/dragon.png",Dragon TV 1595 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1596 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1597 | #EXTVLCOPT:http-referrer=https://visionplus.id 1598 | https://testfunctionlive.mncnow.id/live/eds/ShanghaiDragonTV/sa_dash_vmx/ShanghaiDragonTV.mpd 1599 | 1600 | #EXTINF:-1 tvg-id="tvnasia.hk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvn.png",tvN HD 1601 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1602 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1603 | #EXTVLCOPT:http-referrer=https://visionplus.id 1604 | https://testfunctionlive.mncnow.id/live/eds/tvN/sa_dash_vmx/tvN.mpd 1605 | 1606 | #EXTINF:-1 tvg-id="tvnasia.hk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tvn.png",tvN 1607 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1608 | #EXTVLCOPT:http-referrer=http://dens.tv 1609 | http://op-group1-swiftservehd-1.dens.tv/h/h215/02.m3u8 1610 | 1611 | #EXTINF:-1 tvg-id="visionprime.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/vision.png",Vision Prime 1612 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1613 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1614 | #EXTVLCOPT:http-referrer=https://visionplus.id 1615 | https://testfunctionlive.mncnow.id/live/eds/VisionPrime/sa_dash_vmx/VisionPrime.mpd 1616 | 1617 | #EXTINF:-1 tvg-id="xingkongtv.hk" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/xingkong.png",Xing Kong TV 1618 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1619 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1620 | #EXTVLCOPT:http-referrer=https://visionplus.id 1621 | https://testfunctionlive.mncnow.id/live/eds/XingKongTV/sa_dash_vmx/XingKongTV.mpd 1622 | 1623 | 1624 | ########################### 1625 | ######## GAYA HIDUP ####### 1626 | ########################### 1627 | 1628 | #EXTINF:-1 tvg-id="duniagames.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/duniagames.png",Dunia Games 1629 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1630 | https://cdn-telkomsel-01.akamaized.net/Content/HLS/Live/channel(6854467f-52fe-48ee-9822-00233c678709)/index.m3u8 1631 | 1632 | #EXTINF:-1 tvg-id="celebrities.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/celebrities.png",Celebrities TV 1633 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1634 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1635 | #EXTVLCOPT:http-referrer=https://visionplus.id 1636 | https://testfunctionlive.mncnow.id/live/eds/MNCInfotainment/sa_dash_vmx/MNCInfotainment.mpd 1637 | 1638 | #EXTINF:-1 tvg-id="okezone.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/okezone.png",Okezone TV 1639 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1640 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1641 | #EXTVLCOPT:http-referrer=https://visionplus.id 1642 | https://testfunctionlive.mncnow.id/live/eds/LifeStyleFashion/sa_dash_vmx/LifeStyleFashion.mpd 1643 | 1644 | #EXTINF:-1 tvg-id="lifetimeasia.us" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/lifetime.png",Lifetime 1645 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1646 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1647 | #EXTVLCOPT:http-referrer=https://visionplus.id 1648 | https://testfunctionlive.mncnow.id/live/eds/Lifetime/sa_dash_vmx/Lifetime.mpd 1649 | 1650 | 1651 | ######################## 1652 | ####### OLAHRAGA ####### 1653 | ######################## 1654 | 1655 | #EXTINF:-1 tvg-id="ssc.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ssc.png",SSC 1 1656 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1657 | #KODIPROP:inputstream.adaptive.license_key=d84c325f36814f39bbe59080272b10c3:550727de4c96ef1ecff874905493580f 1658 | https://ssc1-ak.akamaized.net/out/v1/c696e4819b55414388a1a487e8a45ca1/index.mpd 1659 | 1660 | #EXTINF:-1 tvg-id="ssc.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ssc.png",SSC 2 1661 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1662 | #KODIPROP:inputstream.adaptive.license_key=8bcfc55359e24bd7ad1c5560a96ddd3c:b5dcf721ab522af92a9d3bf0bd55b596 1663 | https://ssc2-ak.akamaized.net/out/v1/a16db2ec338a445a82d9c541cc9293f9/index.mpd 1664 | 1665 | #EXTINF:-1 tvg-id="ssc.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ssc.png",SSC 3 1666 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1667 | #KODIPROP:inputstream.adaptive.license_key=7de5dd08ad8041d586c2f16ccc9490a1:5e1503f3398b34f5099933fedab847ef 1668 | https://ssc3-ak.akamaized.net/out/v1/42e86125555242aaa2a12056832e7814/index.mpd 1669 | 1670 | #EXTINF:-1 tvg-id="ssc.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ssc.png",SSC 4 1671 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1672 | #KODIPROP:inputstream.adaptive.license_key=5c672f6b85a94638872d0214f7806ed4:bf8756fbb866ee2d5c701c2289dd8de3 1673 | https://ssc4-ak.akamaized.net/out/v1/5267ea5772874b0db24559d643eaad93/index.mpd 1674 | 1675 | #EXTINF:-1 tvg-id="ssc.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ssc.png",SSC 5 1676 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1677 | #KODIPROP:inputstream.adaptive.license_key=c88b512b17ab4f6cb09eb0ff4a1056ed:adc08ee1c20a734972a55c9aebbd1888 1678 | https://ssc5-ak.akamaized.net/out/v1/99289eac5a7b4319905da595afbd792b/index.mpd 1679 | 1680 | #EXTINF:-1 tvg-id="ssc.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ssc.png",SSC EXTRA 1 1681 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1682 | #KODIPROP:inputstream.adaptive.license_key=ecbc9e6fe6b145efb6658fb5cf7427f8:03c17e28911f71221acbc0b11f900401 1683 | https://ssc-extra1-ak.akamaized.net/out/v1/647c58693f1d46af92bd7e69f17912cb/index.mpd 1684 | 1685 | #EXTINF:-1 tvg-id="ssc.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ssc.png",SSC EXTRA 2 1686 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1687 | #KODIPROP:inputstream.adaptive.license_key=4d89249bd4ca4ebc9e70443265f9507d:cf074ffd2646c9c2f8513b47fa57bc30 1688 | https://ssc-extra2-ak.akamaized.net/out/v1/8b70de2b70d447ba8a7450ba90926a2d/index.mpd 1689 | 1690 | #EXTINF:-1 tvg-id="ssc.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ssc.png",SSC EXTRA 3 1691 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1692 | #KODIPROP:inputstream.adaptive.license_key=98cfd6fd4812497fb24dc75f7545f2ee:d3006ee69e77b25939728ebf30d3180a 1693 | https://ssc-extra3-ak.akamaized.net/out/v1/8f1c6c3f05ef4284a64b342891bd85ae/index.mpd 1694 | 1695 | #EXTINF:-1 tvg-id="psjtv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/psjtv.png",PSJ TV 1696 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1697 | https://play.accolamedia.id/accola/psj.stream/playlist.m3u8 1698 | 1699 | #EXTINF:-1 tvg-id="sportstars.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sportstars.png",Sportstars 1700 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1701 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1702 | #EXTVLCOPT:http-referrer=https://visionplus.id 1703 | https://testfunctionlive.mncnow.id/live/eds/MNCSports-HD/sa_dash_vmx/MNCSports-HD.mpd 1704 | 1705 | #EXTINF:-1 tvg-id="sportstars2.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sportstars2.png",Sportstars 2 1706 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1707 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1708 | #EXTVLCOPT:http-referrer=https://visionplus.id 1709 | https://testfunctionlive.mncnow.id/live/eds/MNCSports2-HD/sa_dash_vmx/MNCSports2-HD.mpd 1710 | 1711 | #EXTINF:-1 tvg-id="sportstars3.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sportstars3.png",Sportstars 3 1712 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1713 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1714 | #EXTVLCOPT:http-referrer=https://visionplus.id 1715 | https://testfunctionlive.mncnow.id/live/eds/MNCSports3-HD/sa_dash_vmx/MNCSports3-HD.mpd 1716 | 1717 | #EXTINF:-1 tvg-id="sportstars4.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sportstars4.png",Sportstars 4 1718 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1719 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1720 | #EXTVLCOPT:http-referrer=https://visionplus.id 1721 | http://testfunctionlive.mncnow.id/live/eds/Sportstar4/sa_dash_vmx/Sportstar4.mpd 1722 | 1723 | #EXTINF:-1 tvg-id="dubaisports2.ae" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/dubaisports.png",Dubai Sports 2 1724 | https://dmitwlvvll.cdn.mangomolo.com/dubaisportshd/smil:dubaisportshd.smil/chunklist.m3u8 1725 | 1726 | #EXTINF:-1 tvg-id="dubaisports3.ae" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/dubaisports.png",Dubai Sports 3 1727 | https://dmitwlvvll.cdn.mangomolo.com/dubaisportshd5/smil:dubaisportshd5.smil/chunklist.m3u8 1728 | 1729 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/fightsports.png",Fight Sports 1730 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1731 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1732 | #EXTVLCOPT:http-referrer=https://visionplus.id 1733 | https://testfunctionlive.mncnow.id/live/eds/FightSports/sa_dash_vmx/FightSports.mpd 1734 | 1735 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/impact.png",IMPACT! Wrestling 1736 | https://d2p372oxiwmcn1.cloudfront.net/hls/main.m3u8 1737 | 1738 | #EXTINF:-1 tvg-id="motorvisiontv.de" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/motorvision.png",Motorvision TV 1739 | #EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 6.2; Win64; x64;) Gecko/20100101 Firefox/20.0 1740 | https://stream.ads.ottera.tv/playlist.m3u8?network_id=535 1741 | 1742 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/redbull.png",Red Bull TV 1743 | https://rbmn-live.akamaized.net/hls/live/590964/BoRB-AT/master.m3u8 1744 | 1745 | #EXTINF:-1 tvg-id="soccerchannel.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/soccer.png",Soccer Channel 1746 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1747 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1748 | #EXTVLCOPT:http-referrer=https://visionplus.id 1749 | https://testfunctionlive.mncnow.id/live/eds/soccerchannel-test/sa_dash_vmx/soccerchannel-test.mpd 1750 | 1751 | #EXTINF:-1 tvg-id="soccerchannel2.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/soccer.png",Soccer Channel 2 1752 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1753 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1754 | #EXTVLCOPT:http-referrer=https://visionplus.id 1755 | https://testfunctionlive.mncnow.id/live/eds/Soccer-2/sa_dash_vmx/Soccer-2.mpd 1756 | 1757 | #EXTINF:-1 tvg-id="spotv.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/spotv.png",SPOTV 1758 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1759 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1760 | #EXTVLCOPT:http-referrer=https://visionplus.id 1761 | https://testfunctionlive.mncnow.id/live/eds/SPOTV-HD/sa_dash_vmx/SPOTV-HD.mpd 1762 | 1763 | #EXTINF:-1 tvg-id="spotv2.kr" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/spotv2.png",SPOTV 2 1764 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1765 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1766 | #EXTVLCOPT:http-referrer=https://visionplus.id 1767 | https://testfunctionlive.mncnow.id/live/eds/SPOTV2-HD/sa_dash_vmx/SPOTV2-HD.mpd 1768 | 1769 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mu.png",MUTV 1770 | https://bcovlive-a.akamaihd.net/r2d2c4ca5bf57456fb1d16255c1a535c8/eu-west-1/6058004203001/playlist.m3u8 1771 | 1772 | #EXTINF:-1 tvg-id="realmadridtv.es" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rm.png",Real Madrid TV 1773 | https://rmtv.akamaized.net/hls/live/2043153/rmtv-es-web/master.m3u8?hdnea=exp=1653452799~acl=/*~hmac=6fa983776826e1224ab4c19996ce92f00a1ad234617b07fd8a398160d72c19e0 1774 | 1775 | 1776 | ####################### 1777 | ######## MUSIK ######## 1778 | ####################### 1779 | 1780 | #EXTINF:-1 tvg-id="popmusic.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/popmusic.png",POP Music 1781 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1782 | https://play.accolamedia.id/accola/popmusic.stream/playlist.m3u8 1783 | 1784 | #EXTINF:-1 tvg-id="maleo.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/maleo.png",Maleo 1785 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1786 | https://play.accolamedia.id/accola/maleo.stream/playlist.m3u8 1787 | 1788 | #EXTINF:-1 tvg-id="mictv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mictv.png",MIC TV 1789 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1790 | https://v2.siar.us/mic/live/playlist.m3u8 1791 | 1792 | #EXTINF:-1 tvg-id="tvkesehatan.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/imtv.png",IMTV 1793 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1794 | https://5bf7b725107e5.streamlock.net/imtv/imtv/playlist.m3u8 1795 | 1796 | #EXTINF:-1 tvg-id="musica.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/musica.png",Musica Studios 1797 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1798 | https://ythls.urfan.web.id/stream/UCNlU3oSU8UnJ_V9uMB-cPOg/master.m3u8 1799 | 1800 | #EXTINF:-1 tvg-id="aquarius.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/aquarius.png",Aquarius Musikindo 1801 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1802 | https://ythls.urfan.web.id/stream/UCpJRmMTfdv0iPbnjo6qBw_g/master.m3u8 1803 | 1804 | #EXTINF:-1 tvg-id="nagaswara.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/nagaswara.png",Nagaswara 1805 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1806 | https://ythls.urfan.web.id/stream/UCw9QaspFztufNcEBFlwb5iw/master.m3u8 1807 | 1808 | #EXTINF:-1 tvg-id="musictv.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/musictv.png",Music TV 1809 | #KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 1810 | #KODIPROP:inputstream.adaptive.license_key=https://mrpw.ptmnc01.verspective.net/?deviceId=ZjdiMDljNTItMmYzZC0zNDcyLTllYmItY2QxNDdiYzlhZWY0 1811 | #EXTVLCOPT:http-referrer=https://visionplus.id 1812 | https://testfunctionlive.mncnow.id/live/eds/MusicChannel/sa_dash_vmx/MusicChannel.mpd 1813 | 1814 | #EXTINF:-1 tvg-id="musikindonesia.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/musikid.png",Musik Indonesia 1815 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1816 | https://cdn08jtedge.indihometv.com/dassdvr/134/musikindo/manifest.mpd 1817 | 1818 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/kpoptv.png",K-Pop TV 1819 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1820 | https://ssh101-fl.bozztv.com/ssh101/kpoptv/playlist.m3u8 1821 | 1822 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/24kpoptv.png",24hr K-Pop TV 1823 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1824 | https://live.24hrkpop.com/hls/4/stream.m3u8 1825 | 1826 | 1827 | ############################# 1828 | ######### SINGAPURA ######### 1829 | ############################# 1830 | 1831 | #EXTINF:-1 tvg-id="mewatch.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mewatch.png",mewatch 1832 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1833 | #KODIPROP:inputstream.adaptive.license_key=cdb834a4f2fd413a8e50d1a7170701d2:3d6ae85b34e8aac7488c780cea215306 1834 | https://tglmp04.akamaized.net/out/v1/6b351c6bf46a43d998e3f86b69cbce4f/manifest.mpd 1835 | 1836 | #EXTINF:-1 tvg-id="SuriaHD" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/suria.png",Suria 1837 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1838 | #KODIPROP:inputstream.adaptive.license_key=7a9ea6df52044841b0c562766e602610:b9380188b4896b25e8d419dfce938c6e 1839 | https://tglmp04.akamaized.net/out/v1/b200e885125f4787bd2329952ff28fa1/manifest.mpd 1840 | 1841 | #EXTINF:-1 tvg-id="VasanthamHD" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/vasantham.png",Vasantham 1842 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1843 | #KODIPROP:inputstream.adaptive.license_key=9970038ef6c548e39768f3a1ff6f5081:3e19d54b7bcd8bb336776fe136d48f57 1844 | https://tglmp03.akamaized.net/out/v1/14eb6e921cae41298efaa4d9db0f2875/manifest.mpd 1845 | 1846 | #EXTINF:-1 tvg-id="Channel5HD" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ch5.png",Channel 5 Singapore 1847 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1848 | #KODIPROP:inputstream.adaptive.license_key=607b7d22565c4bc3b95ff6c33ce65425:28cc5367df666c44be4382e64af64d57 1849 | https://tglmp02.akamaized.net/out/v1/5081e069e08140c9b95f89a1659cf4dd/manifest.mpd 1850 | 1851 | #EXTINF:-1 tvg-id="Channel8HD" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ch8.png",Channel 8 Singapore 1852 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1853 | #KODIPROP:inputstream.adaptive.license_key=2448fc561b0c4220a81f1008971d3088:f48eb6753f3d1774da682970c93cf260 1854 | https://tglmp02.akamaized.net/out/v1/4f6561ad194b49ae93f4e1b075afdf41/manifest.mpd 1855 | 1856 | #EXTINF:-1 tvg-id="ChannelUHD" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/chu.png",Channel U Singapore 1857 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1858 | #KODIPROP:inputstream.adaptive.license_key=0328a153c2994b279ab03ab25102fc59:2cc69eaaa858fed24c5623654daf8d3d 1859 | https://tglmp03.akamaized.net/out/v1/1057d89ee3d94148b430b5866e3a540a/manifest.mpd 1860 | 1861 | #EXTINF:-1 tvg-id="mewatchlive1.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mewatch.png",mewatch Live 1 1862 | https://tglmp04.akamaized.net/out/v1/898b1cbac7c747e3b1f3deb460e9b67e/manifest.mpd 1863 | 1864 | #EXTINF:-1 tvg-id="mewatchlive2.sg" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mewatch.png",mewatch Live 2 1865 | #KODIPROP:inputstream.adaptive.license_type=clearkey 1866 | #KODIPROP:inputstream.adaptive.license_key=60dc08aae52f4c0b806a8e43f24a12c8:30d5b579966d822b215ec51a91d8a271 1867 | https://tglmp02.akamaized.net/out/v1/3170252e3fb0453085f2f4b0f8401a6b/manifest.mpd 1868 | 1869 | 1870 | ########################## 1871 | ######## MALAYSIA ######## 1872 | ########################## 1873 | 1874 | #EXTINF:-1 tvg-id="Berita RTM" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/beritartm.png",Berita RTM 1875 | #EXTVLCOPT:http-referrer=https://rtmklik.rtm.gov.my/ 1876 | https://d25tgymtnqzu8s.cloudfront.net/smil:berita/manifest.mpd?id=5 1877 | 1878 | #EXTINF:-1 tvg-id="Sukan RTM" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sukanrtm.png",Sukan RTM 1879 | #EXTVLCOPT:http-referrer=https://rtmklik.rtm.gov.my/ 1880 | https://d25tgymtnqzu8s.cloudfront.net/smil:sukan/manifest.mpd?id=4 1881 | 1882 | #EXTINF:-1 tvg-id="Okey" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/okeyrtm.png",Okey RTM 1883 | #EXTVLCOPT:http-referrer=https://rtmklik.rtm.gov.my/ 1884 | https://d25tgymtnqzu8s.cloudfront.net/smil:okey/manifest.mpd?id=3 1885 | 1886 | #EXTINF:-1 tvg-id="tv1.my" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tv1.png",TV1 Malaysia 1887 | #EXTVLCOPT:http-referrer=https://rtmklik.rtm.gov.my/ 1888 | https://d25tgymtnqzu8s.cloudfront.net/smil:tv1/manifest.mpd?id=1 1889 | 1890 | #EXTINF:-1 tvg-id="tv2.my" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tv2.png",TV2 Malaysia 1891 | #EXTVLCOPT:http-referrer=https://rtmklik.rtm.gov.my/ 1892 | https://d25tgymtnqzu8s.cloudfront.net/smil:tv2/manifest.mpd?id=2 1893 | 1894 | #EXTINF:-1 tvg-id="TV6" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/tv6.png",TV6 Malaysia 1895 | #EXTVLCOPT:http-referrer=https://rtmklik.rtm.gov.my/ 1896 | https://d25tgymtnqzu8s.cloudfront.net/smil:tv6/manifest.mpd?id=6 1897 | 1898 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/selangortv.png",Selangor TV 1899 | https://skyios.sky4k.top/S1G_010/playlist.m3u8 1900 | 1901 | 1902 | ######################## 1903 | ######## BRUNAI ######## 1904 | ######################## 1905 | 1906 | #EXTINF:-1 tvg-id="" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sukmaindera.png",RTB Sukmaindera 1907 | #EXTVLCOPT:network-caching=1000 1908 | #EXTVLCOPT:http-referrer=https://www.rtbgo.bn/ 1909 | https://d1211whpimeups.cloudfront.net/smil:rtb1/chunklist.m3u8 1910 | 1911 | #EXTINF:-1 tvg-id="Aneka" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/aneka.png",RTB Aneka 1912 | #EXTVLCOPT:network-caching=1000 1913 | #EXTVLCOPT:http-referrer=https://www.rtbgo.bn/ 1914 | https://d1211whpimeups.cloudfront.net/smil:rtb2/chunklist.m3u8 1915 | 1916 | #EXTINF:-1 tvg-id="GoLive" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/golive.png",RTB Go Live 1917 | #EXTVLCOPT:network-caching=1000 1918 | #EXTVLCOPT:http-referrer=https://www.rtbgo.bn/ 1919 | https://d1211whpimeups.cloudfront.net/smil:rtbgo/chunklist.m3u8 1920 | 1921 | 1922 | ######################## 1923 | ######### RADIO ######## 1924 | ######################## 1925 | 1926 | #EXTINF:-1 tvg-id="isykarima.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/isykarima.png",Radio Isykarima 1927 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1928 | https://ssg.streamingmurah.com:8406/; 1929 | 1930 | #EXTINF:-1 tvg-id="dakta.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/dakta.png",Radio Dakta 1931 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1932 | http://175.103.48.4:9302/; 1933 | 1934 | #EXTINF:-1 tvg-id="rodja.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rodja.png",Radio Rodja 1935 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1936 | https://live2.radiorodja.com/rodja.mp3 1937 | 1938 | #EXTINF:-1 tvg-id="fajrifm.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/fajrifm.png",Fajri FM Bogor 1939 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1940 | https://live.radioislam.xyz:10998/; 1941 | 1942 | #EXTINF:-1 tvg-id="rdsfm.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rdsfm.png",RDS FM Solo 1943 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1944 | http://117.20.56.143:9900/studio 1945 | 1946 | #EXTINF:-1 tvg-id="RADIKS99.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/radiks99.png",RADIKS99 FM Semarang 1947 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1948 | https://i.klikhost.com/9624/stream 1949 | 1950 | #EXTINF:-1 tvg-id="POPFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/popjkt.png",POP FM Jakarta 1951 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1952 | https://i.klikhost.com/8272/stream 1953 | 1954 | #EXTINF:-1 tvg-id="POPFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/popjogja.png",POP FM Jogja 1955 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1956 | https://i.klikhost.com/9154/stream 1957 | 1958 | #EXTINF:-1 tvg-id="POPFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/popsmg.png",POP FM Semarang 1959 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1960 | https://i.klikhost.com/9612/stream 1961 | 1962 | #EXTINF:-1 tvg-id="SASFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/sasfm.png",SAS FM Solo 1963 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1964 | https://i.klikhost.com/9616/stream 1965 | 1966 | #EXTINF:-1 tvg-id="JPIFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/jpifm.png",JPI FM Solo 1967 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1968 | https://i.klikhost.com/9618/stream 1969 | 1970 | #EXTINF:-1 tvg-id="PTPNSolo.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/ptpnsolo.png",PTPN Solo 1971 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1972 | https://ssg.streamingmurah.com:8040/; 1973 | 1974 | #EXTINF:-1 tvg-id="TARadio.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/taradio.png",TA Radio Solo 1975 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1976 | https://c1.siar.us:10350/stream 1977 | 1978 | #EXTINF:-1 tvg-id="MettaFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mettafm.png",Metta FM Solo 1979 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1980 | https://srv1.streamcast.my.id/listen/metta_solo_fm/radio.mp3 1981 | 1982 | #EXTINF:-1 tvg-id="PolarisFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/polarisfm.png",Polaris FM Magelang 1983 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1984 | https://i.klikhost.com/9608/stream 1985 | 1986 | #EXTINF:-1 tvg-id="WijayaFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/wijayafm.png",WIJAYA FM Cilacap 1987 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1988 | https://i.klikhost.com/9604/stream 1989 | 1990 | #EXTINF:-1 tvg-id="YasikaFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/yasikajogja.png",YASIKA FM Jogja 1991 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1992 | https://i.klikhost.com/9610/stream 1993 | 1994 | #EXTINF:-1 tvg-id="AnitaFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/anitafm.png",ANITA FM Tegal 1995 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 1996 | https://i.klikhost.com/9620/stream 1997 | 1998 | #EXTINF:-1 tvg-id="GKLFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/gklfm.png",GKL FM Magelang 1999 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2000 | https://i.klikhost.com/9134/stream 2001 | 2002 | #EXTINF:-1 tvg-id="DAMASHINTAFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/damashinta.png",DAMASHINTA FM Pekalongan 2003 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2004 | https://i.klikhost.com/9622/stream 2005 | 2006 | #EXTINF:-1 tvg-id="YasikaFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/yasikapwt.png",YASIKA FM Purwokerto 2007 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2008 | https://i.klikhost.com/9606/stream 2009 | 2010 | #EXTINF:-1 tvg-id="RCTFM.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/rctfm.png",RCT FM 2011 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2012 | https://i.klikhost.com/9614/stream 2013 | 2014 | #EXTINF:-1 tvg-id="RadioParlemen.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/radioparlemen.png",Radio Parlemen 2015 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2016 | https://icecast.dpr.go.id/dpr.audio 2017 | 2018 | #EXTINF:-1 tvg-id="pramborsfm.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pramborsfm.png",Prambors FM 2019 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2020 | https://23743.live.streamtheworld.com/PRAMBORS_FM.mp3 2021 | 2022 | #EXTINF:-1 tvg-id="radiogentara.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/radiogentara.png",Radio Gentara 2023 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2024 | https://s1.gntr.net/radio/8080/gentara 2025 | 2026 | #EXTINF:-1 tvg-id="dmi.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/dmi.png",DMI 2027 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2028 | https://radione.top:8000/dmi 2029 | 2030 | #EXTINF:-1 tvg-id="radiosolopos.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/radiosolopos.png",Radio Solopos 2031 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2032 | https://live.solopos.com:8002/stream 2033 | 2034 | #EXTINF:-1 tvg-id="swibafm.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/swibafm.png",Swiba FM 2035 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2036 | https://s5.alhastream.com/radio/8180/radio 2037 | 2038 | #EXTINF:-1 tvg-id="mtafm.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/mtafm.png",MTA FM 2039 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2040 | http://mtamedia.net:1079/; 2041 | 2042 | #EXTINF:-1 tvg-id="persadafm.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/persadafm.png",Persada FM 2043 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2044 | http://mtamedia.net:1079/; 2045 | 2046 | #EXTINF:-1 tvg-id="suarapantura.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/suarapantura.png",Suara Pantura FM 2047 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2048 | http://mtamedia.net:1038/; 2049 | 2050 | #EXTINF:-1 tvg-id="suarakesuma.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/suarakesuma.png",Suara Kesuma FM 2051 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2052 | http://mtamedia.net:1055/; 2053 | 2054 | #EXTINF:-1 tvg-id="nasionalfm.bn" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/nasionalfm.png",Nasional FM 2055 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2056 | https://d2kziuzkf9oizb.cloudfront.net/rd005/playlist.m3u8 2057 | 2058 | #EXTINF:-1 tvg-id="pilihanfm.bn" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pilihanfm.png",Pilihan FM 2059 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2060 | https://d2kziuzkf9oizb.cloudfront.net/rd003/playlist.m3u8 2061 | 2062 | #EXTINF:-1 tvg-id="pelangifm.bn" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pelangifm.png",Pelangi FM 2063 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2064 | https://d2kziuzkf9oizb.cloudfront.net/rd001/playlist.m3u8 2065 | 2066 | #EXTINF:-1 tvg-id="harmonifm.bn" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/harmonifm.png",Harmoni FM 2067 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2068 | https://d2kziuzkf9oizb.cloudfront.net/rd002/playlist.m3u8 2069 | 2070 | #EXTINF:-1 tvg-id="nurislamfm.bn" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/nurislamfm.png",Nur Islam FM 2071 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2072 | https://d2kziuzkf9oizb.cloudfront.net/rd004/playlist.m3u8 2073 | 2074 | #EXTINF:-1 tvg-id="urfanradio.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/urfanradio.png",URFAN RADIO 2075 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2076 | https://s.urfan.web.id/dengar 2077 | 2078 | #EXTINF:-1 tvg-id="persadafm.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/persadafm.png",Persada FM (Radio Visual) 2079 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2080 | https://ythls.urfan.web.id/stream/UCDDuYoSH72v49k3i55UNTQw/master.m3u8 2081 | 2082 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro1.png",RRI Pro 1 Surakarta 2083 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2084 | https://stream-node1.rri.co.id/streaming/19/9219/rrisurakartapro1.mp3 2085 | 2086 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro2.png",RRI Pro 2 Surakarta 2087 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2088 | https://stream-node1.rri.co.id/streaming/19/9219/rrisurakartapro2.mp3 2089 | 2090 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro4.png",RRI Pro 4 Surakarta 2091 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2092 | https://stream-node1.rri.co.id/streaming/19/9219/rrisurakartapro4.mp3 2093 | 2094 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro1.png",RRI Pro 1 Yogyakarta 2095 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2096 | https://stream-node0.rri.co.id/streaming/17/9017/rrijogjapro1.mp3 2097 | 2098 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro2.png",RRI Pro 2 Yogyakarta 2099 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2100 | https://stream-node0.rri.co.id/streaming/17/9017/rrijogjapro2.mp3 2101 | 2102 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro4.png",RRI Pro 4 Yogyakarta 2103 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2104 | https://stream-node0.rri.co.id/streaming/17/9017/rrijogjapro4.mp3 2105 | 2106 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro1.png",RRI Pro 1 Semarang 2107 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2108 | https://stream-node0.rri.co.id/streaming/16/9016/rrisemarangpro1.mp3 2109 | 2110 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro2.png",RRI Pro 2 Semarang 2111 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2112 | https://stream-node0.rri.co.id/streaming/16/9016/rrisemarangpro2.mp3 2113 | 2114 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro4.png",RRI Pro 4 Semarang 2115 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2116 | https://stream-node0.rri.co.id/streaming/16/9016/rrisemarangpro4.mp3 2117 | 2118 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro1.png",RRI Pro 1 Surabaya 2119 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2120 | https://stream-node0.rri.co.id/streaming/18/9018/rrisurabayapro1.mp3 2121 | 2122 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro2.png",RRI Pro 2 Surabaya 2123 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2124 | https://stream-node0.rri.co.id/streaming/18/9018/rrisurabayapro2.mp3 2125 | 2126 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro4.png",RRI Pro 4 Surabaya 2127 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2128 | https://stream-node0.rri.co.id/streaming/18/9018/rrisurabayapro4.mp3 2129 | 2130 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro1.png",RRI Pro 1 Jakarta 2131 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2132 | https://stream-node1.rri.co.id/streaming/25/9025/rrijakartapro1.mp3 2133 | 2134 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro2.png",RRI Pro 2 Jakarta 2135 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2136 | https://stream-node1.rri.co.id/streaming/25/9025/rrijakartapro2.mp3 2137 | 2138 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro3.png",RRI Pro 3 2139 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2140 | https://stream-node0.rri.co.id/streaming/14/9014/kbrn.mp3 2141 | 2142 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro4.png",RRI Pro 4 Jakarta 2143 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2144 | https://stream-node1.rri.co.id/streaming/25/9025/rrijakartapro4.mp3 2145 | 2146 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro5.png",RRI Pro 5 2147 | #EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Firefox/101.0 Safari/537.36 Edg/111.0.1661.4 2148 | https://stream-node1.rri.co.id/streaming/41/8941/chlima.mp3 2149 | 2150 | #EXTINF:-1 tvg-id="rri.id" tvg-name="" tvg-logo="https://iptv.urfan.web.id/logo/pro6.png",RRI VOI 2151 | #EXTVLCOPT:http-user-agent=ExoPlayerLib/2.19.1 2152 | https://stream-node0.rri.co.id/streaming/25/9125/voi.mp3 2153 | 2154 | 2155 | ################################################################################################################################# 2156 | ###### JANGAN DICOPY ATAU DICOMOT YA, APALAGI DIREBRANDING DAN DIJUAL LAGI ATAU DIBAGIKAN SEMBARANGAN, PLAYLIST INI GRATIS ###### 2157 | ################################################################################################################################# 2158 | 2159 | #EXTM3U billed-msg="iptv.urfan.web.id - Playlist Ini Gratis Tanpa Donasi, Tidak Boleh Diperjualbelikan, Apalagi Dibagikan Sembarangan, Kami Tidak Mengambil Keuntungan Dari Playlist Ini.", url-tvg="https://s.urfan.web.id/epgxmlgz" refresh="3600" -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # IPTV Filter System 3 | 4 | A Python script to filter IPTV channels from `.m3u` playlists based on URL validity and DRM presence. This tool helps users clean up broken or DRM-restricted streams before importing them into IPTV players. 5 | 6 | ## 🎯 Features 7 | 8 | - 🧹 Filters IPTV channels (`.m3u` files) based on: 9 | - HTTP response status 10 | - Validation using `ffprobe` and `ffmpeg` 11 | - Detection of DRM-related keywords 12 | - 📂 Graphical file dialogs for input/output/log paths 13 | - 📝 Generates separate output files: 14 | - Valid channels (`.m3u`) 15 | - Error log (`.txt`) 16 | - Summary of HTTP errors 17 | - ⚡ High-performance filtering with `ThreadPoolExecutor` 18 | - 🧠 Automatic channel grouping based on metadata 19 | 20 | ## 🔧 Installation 21 | 22 | 1. **Clone this repository**: 23 | ```bash 24 | git clone https://github.com/yourusername/IPTV-Filter-System.git 25 | cd IPTV-Filter-System 26 | ``` 27 | 28 | 2. **Install Python dependencies**: 29 | 30 | Ensure you are using Python 3.7 or later. 31 | 32 | ```bash 33 | pip install -r requirements.txt 34 | ``` 35 | 36 | If `requirements.txt` is not available, manually install: 37 | ```bash 38 | pip install requests tqdm 39 | ``` 40 | 41 | 3. **Install `ffmpeg` and `ffprobe`**: 42 | 43 | - Download from: https://ffmpeg.org/download.html 44 | - Make sure `ffmpeg.exe` and `ffprobe.exe` are placed in: 45 | - `C:\ffmpeg\bin`, or 46 | - Added to your system `PATH` 47 | 48 | ## ▶️ How to Use 49 | 50 | 1. Run the script: 51 | ```bash 52 | python "IPTV Filter System.py" 53 | ``` 54 | 55 | 2. Follow the prompts: 56 | - Select the input `.m3u` playlist 57 | - Choose a location to save the filtered output 58 | - Choose a location to save the error log 59 | 60 | 3. Once finished, you'll find: 61 | - A filtered `.m3u` file with only valid channels 62 | - A `.txt` error log listing failed URLs and reasons 63 | 64 | ## 🧩 Dependencies / Plugins 65 | 66 | - `requests` — for HTTP validation 67 | - `tqdm` — for displaying progress bars 68 | - `tkinter` — for GUI-based file dialogs 69 | - `concurrent.futures` — for multithreading 70 | - `ffmpeg` / `ffprobe` — for stream validation 71 | - Built-in modules: `re`, `os`, `shutil`, `subprocess`, `collections` 72 | 73 | ## 🛡️ Validation Logic 74 | 75 | A channel is considered **valid** if: 76 | - It responds with HTTP status code 200, or 77 | - It can be parsed by `ffprobe` or `ffmpeg`, or 78 | - It contains DRM-related metadata (for reference) 79 | 80 | Channels that fail all checks will be excluded and logged. 81 | 82 | ## 📁 Output Structure 83 | 84 | - **Filtered Playlist**: A `.m3u` file with only valid channels 85 | - **Error Log**: A `.txt` file with grouped error types and affected URLs 86 | - **Summary**: Error statistics printed in console and header of output file 87 | 88 | ## ⚠️ Notes 89 | 90 | - Designed for **Windows OS** (due to `.exe` usage) 91 | - Requires an active internet connection for URL checks 92 | - Filtering time depends on playlist size and network speed 93 | 94 | ## 📜 License 95 | 96 | This project is licensed under the MIT License. Feel free to use and modify it as needed. 97 | -------------------------------------------------------------------------------- /update_github_file.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | import os 4 | import requests 5 | from github import Github, GithubException 6 | 7 | # --- KONFIGURASI --- 8 | # Ganti dengan informasi Anda 9 | GITHUB_TOKEN = os.getenv('GITHUB_PAT') # Ambil token dari environment variable, JANGAN HARDCODE DI SINI 10 | SOURCE_URL = "https://raw.githubusercontent.com/maywho5454/mastermaywo/main/mastermaywho" 11 | DEST_REPO = "Novantama/IPTV" # Format: "username/repository" 12 | DEST_FILE_PATH = "Playlist/AllWorld.m3u" 13 | COMMIT_MESSAGE = "Auto update: Sync playlist from source" 14 | GIT_BRANCH = "Main" # Sesuaikan dengan nama branch Anda (misal: "main" atau "master") 15 | 16 | def get_source_content(): 17 | """Mengambil konten teks dari URL sumber.""" 18 | try: 19 | print(f"Mengambil konten dari: {SOURCE_URL}...") 20 | response = requests.get(SOURCE_URL) 21 | response.raise_for_status() # Cek jika ada error HTTP (spt 404) 22 | print("Konten berhasil diambil.") 23 | return response.text 24 | except requests.exceptions.RequestException as e: 25 | print(f"Error saat mengambil konten sumber: {e}") 26 | return None 27 | 28 | def update_github_file(): 29 | """Memperbarui file di repositori GitHub tujuan.""" 30 | if not GITHUB_TOKEN: 31 | print("Error: GITHUB_PAT environment variable belum diatur. Script tidak bisa berjalan.") 32 | return 33 | 34 | # 1. Ambil konten baru dari sumber 35 | new_content = get_source_content() 36 | if new_content is None: 37 | return 38 | 39 | try: 40 | # 2. Autentikasi ke GitHub 41 | g = Github(GITHUB_TOKEN) 42 | repo = g.get_repo(DEST_REPO) 43 | print(f"Berhasil terhubung ke repositori: {DEST_REPO}") 44 | 45 | # 3. Dapatkan file yang ada untuk mendapatkan SHA-nya 46 | try: 47 | contents = repo.get_contents(DEST_FILE_PATH, ref=GIT_BRANCH) 48 | sha = contents.sha 49 | # Cek apakah kontennya sama untuk menghindari commit yang tidak perlu 50 | if contents.decoded_content.decode('utf-8') == new_content: 51 | print("Konten sudah yang terbaru. Tidak ada pembaruan yang diperlukan.") 52 | return 53 | except GithubException as e: 54 | # Jika file tidak ditemukan, kita akan membuatnya (SHA tidak diperlukan) 55 | if e.status == 404: 56 | print(f"File '{DEST_FILE_PATH}' tidak ditemukan. Akan membuat file baru.") 57 | repo.create_file(DEST_FILE_PATH, 58 | COMMIT_MESSAGE, 59 | new_content, 60 | branch=GIT_BRANCH) 61 | print("File baru berhasil dibuat di GitHub.") 62 | return 63 | else: 64 | raise # Lemparkan error lain 65 | 66 | # 4. Update file yang sudah ada 67 | print(f"Mencoba memperbarui file '{DEST_FILE_PATH}'...") 68 | repo.update_file(contents.path, 69 | COMMIT_MESSAGE, 70 | new_content, 71 | sha, 72 | branch=GIT_BRANCH) 73 | 74 | print("Pembaruan file berhasil di-commit ke GitHub!") 75 | 76 | except GithubException as e: 77 | print(f"Error pada API GitHub: {e}") 78 | except Exception as e: 79 | print(f"Terjadi error yang tidak terduga: {e}") 80 | 81 | if __name__ == "__main__": 82 | 83 | update_github_file() 84 | -------------------------------------------------------------------------------- /website_under_maintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Novantama/IPTV/d3b401b1cf33bcd57ddf294f64da715998408cb1/website_under_maintenance.png --------------------------------------------------------------------------------