├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # M3U8 Xtream Collection 2 | 3 | > A curated collection of M3U8 playlists for streaming media content 4 | 5 |
6 | About M3U Playlists 7 | M3U (Moving Picture Experts Group Audio Layer 3 Uniform Resource Locator) is a file format originally designed for audio playlists that has evolved to become widely used for video streaming, particularly in IPTV services. 8 | 9 | M3U files are simple text documents containing URLs to media resources, allowing various players to access streaming content from different sources. M3U8 is the UTF-8 encoded version of this format, offering enhanced support for international characters and additional features required by HTTP Live Streaming (HLS). 10 |
11 | 12 | ## Available Playlists 13 | 14 | ### Featured Collection 15 | 16 | **Trending TV Shows** 17 | ``` 18 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/trending-series.m3u 19 | ``` 20 | 21 | **Popular IMDB Movies 2024-2025** 22 | ``` 23 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/top-movies.m3u 24 | ``` 25 | 26 | **Action Movies** 27 | ``` 28 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/action-movies.m3u 29 | ``` 30 | 31 | **Adventure Movies** 32 | ``` 33 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/adventure-movies.m3u 34 | ``` 35 | 36 | **Animation Movies** 37 | ``` 38 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/animation-movies.m3u 39 | ``` 40 | 41 | **Comedy Movies** 42 | ``` 43 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/comedy-movies.m3u 44 | ``` 45 | 46 | **Crime Movies** 47 | ``` 48 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/crime-movies.m3u 49 | ``` 50 | 51 | **Documentary Movies** 52 | ``` 53 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/documentary-movies.m3u 54 | ``` 55 | 56 | **Drama Movies** 57 | ``` 58 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/drama-movies.m3u 59 | ``` 60 | 61 | **Family Movies** 62 | ``` 63 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/family-movies.m3u 64 | ``` 65 | 66 | **Fantasy Movies** 67 | ``` 68 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/fantasy-movies.m3u 69 | ``` 70 | 71 | **History Movies** 72 | ``` 73 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/history-movies.m3u 74 | ``` 75 | 76 | **Horror Movies** 77 | ``` 78 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/horror-movies.m3u 79 | ``` 80 | 81 | **Music Movies** 82 | ``` 83 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/music-movies.m3u 84 | ``` 85 | 86 | **Mystery Movies** 87 | ``` 88 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/mystery-movies.m3u 89 | ``` 90 | 91 | **Romance Movies** 92 | ``` 93 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/romance-movies.m3u 94 | ``` 95 | 96 | **Science Fiction Movies** 97 | ``` 98 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/science-fiction-movies.m3u 99 | ``` 100 | 101 | **TV Movies** 102 | ``` 103 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/tv-movies.m3u 104 | ``` 105 | 106 | **Thriller Movies** 107 | ``` 108 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/thriller-movies.m3u 109 | ``` 110 | 111 | **War Movies** 112 | ``` 113 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/war-movies.m3u 114 | ``` 115 | 116 | **Western Movies** 117 | ``` 118 | https://aymrgknetzpucldhpkwm.supabase.co/storage/v1/object/public/tmdb/western-movies.m3u 119 | ``` 120 | 121 | **Complete IPTV Collection** 122 | ``` 123 | https://iptv-org.github.io/iptv/index.m3u 124 | ``` 125 | 126 | ### Category-Based Playlists 127 | 128 |
129 | 📺 Entertainment Categories 130 | 131 | **Entertainment** 132 | ``` 133 | https://iptv-org.github.io/iptv/categories/entertainment.m3u 134 | ``` 135 | 136 | **Movies** 137 | ``` 138 | https://iptv-org.github.io/iptv/categories/movies.m3u 139 | ``` 140 | 141 | **News** 142 | ``` 143 | https://iptv-org.github.io/iptv/categories/news.m3u 144 | ``` 145 | 146 | **Sports** 147 | ``` 148 | https://iptv-org.github.io/iptv/categories/sports.m3u 149 | ``` 150 | 151 | **Documentary** 152 | ``` 153 | https://iptv-org.github.io/iptv/categories/documentary.m3u 154 | ``` 155 | 156 | **Music** 157 | ``` 158 | https://iptv-org.github.io/iptv/categories/music.m3u 159 | ``` 160 | 161 |
162 | 163 | ### Geographic Collections 164 | 165 |
166 | 🌎 Playlists by Country 167 | 168 | **United States** 169 | ``` 170 | https://iptv-org.github.io/iptv/countries/us.m3u 171 | ``` 172 | 173 | **United Kingdom** 174 | ``` 175 | https://iptv-org.github.io/iptv/countries/uk.m3u 176 | ``` 177 | 178 | **Canada** 179 | ``` 180 | https://iptv-org.github.io/iptv/countries/ca.m3u 181 | ``` 182 | 183 | **Australia** 184 | ``` 185 | https://iptv-org.github.io/iptv/countries/au.m3u 186 | ``` 187 | 188 | **Vietnam** 189 | ``` 190 | https://iptv-org.github.io/iptv/countries/vn.m3u 191 | ``` 192 | 193 |
194 | 195 | ## Usage Guide 196 | 197 |
198 | 🎮 Supported Players 199 | 200 | M3U playlists work with numerous media player applications: 201 | 202 | - **Desktop Apps** 203 | - VLC Media Player: Media > Open Network Stream > Paste URL 204 | - Kodi: Install PVR IPTV Simple Client add-on > Configure with M3U URL 205 | 206 | - **Mobile Applications** 207 | - Xtify (iOS) 208 | - GSE IPTV (iOS/Android) 209 | - IPTV Smarters (iOS/Android) 210 | - TiviMate (Android) 211 | 212 | - **Other Devices** 213 | - Smart TVs: Use built-in IPTV apps 214 | - Set-top boxes: Configure with IPTV player apps 215 | 216 |
217 | 218 |
219 | 📝 Quick Start Instructions 220 | 221 | 1. Select and copy a playlist URL from the collections above 222 | 2. Open your preferred media player 223 | 3. Locate the "add playlist" or "open network stream" option 224 | 4. Paste the URL and save/confirm 225 | 5. Browse through the available content and start streaming 226 | 227 |
228 | 229 | ## FAQ 230 | 231 |
232 | What exactly is an M3U file? 233 | 234 | An M3U file is a plain text file that contains a list of media file locations. Originally named for "MP3 URL," these files now commonly contain links to video streams as well as audio files. 235 |
236 | 237 |
238 | How do M3U and M3U8 formats differ? 239 | 240 | M3U8 is essentially an M3U file encoded with UTF-8, which allows for better handling of international characters and special symbols. M3U8 is the standard format used in HTTP Live Streaming (HLS). 241 |
242 | 243 |
244 | Are these playlist resources free to use? 245 | 246 | The playlists linked on this page are publicly available resources. However, be aware that the content they link to may be subject to regional restrictions or copyright limitations in your jurisdiction. 247 |
248 | 249 |
250 | How frequently are these playlists updated? 251 | 252 | The playlists maintained by iptv-org are updated regularly, often on a daily basis. The Popular Movies playlist receives periodic updates to include new releases. 253 |
254 | 255 |
256 | Why might some channels or streams not work? 257 | 258 | Streams can become unavailable for several reasons, including: 259 | - Geographical restrictions 260 | - Channel source changes 261 | - Server maintenance 262 | - Content removal due to copyright claims 263 |
264 | 265 | ## Legal Information 266 | 267 | ### Disclaimer 268 | 269 | The playlists linked on this page are aggregated from various public sources and are provided for informational purposes only. We do not host, upload, or manage any streaming content. The streams are freely available on the internet and were collected from public sources. 270 | 271 | Users are responsible for ensuring their usage of these playlists complies with local laws and regulations regarding copyright and content access. We encourage users to support content creators by subscribing to official services. 272 | 273 | ### License 274 | 275 | This page and its structure are provided under the MIT License: 276 | 277 | ``` 278 | MIT License 279 | 280 | Copyright (c) 2024 281 | 282 | Permission is hereby granted, free of charge, to any person obtaining a copy 283 | of this software and associated documentation files (the "Software"), to deal 284 | in the Software without restriction, including without limitation the rights 285 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 286 | copies of the Software, and to permit persons to whom the Software is 287 | furnished to do so, subject to the following conditions: 288 | 289 | The above copyright notice and this permission notice shall be included in all 290 | copies or substantial portions of the Software. 291 | 292 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 293 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 294 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 295 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 296 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 297 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 298 | SOFTWARE. 299 | ``` 300 | 301 | --- 302 | 303 | *Note: This page is for educational purposes and references to external resources are provided as is. The availability and content of external resources are subject to change without notice.* 304 | --------------------------------------------------------------------------------