- What is an M3U playlist?
- A plain text file listing media locations, one per line, optionally annotated with #EXTINF metadata such as a title, logo and group. It contains no video itself — only pointers.
- How do I open an M3U file?
- Any text editor can read it, and any M3U-capable player can play it. In the browser, open the file in Decodr and each entry becomes a playable item in a searchable channel list.
- What is the difference between M3U and M3U8?
- It is the same playlist format. M3U is the original extension, usually Latin-1 encoded; M3U8 is the UTF-8 version, which became the standard for HLS manifests and playlists with non-ASCII names.
- Is an M3U file a video?
- No. It is a few kilobytes of text. The video lives wherever the URLs inside it point, which is why an M3U file alone cannot be 'converted' to video.
- What does #EXTINF mean in an M3U file?
- #EXTINF is the extended information tag. It holds the duration (-1 for live streams), optional attributes such as tvg-logo and group-title, and after the comma, the channel or track display name.
- What is the #EXTM3U header for?
- It marks the file as an extended M3U playlist. A file without it is a plain list of URLs; with it, players know to expect #EXTINF metadata lines.
- What are tvg-id and tvg-logo tags?
- They are IPTV attributes: tvg-id identifies the channel so it can be matched to electronic programme guide data, and tvg-logo points to the channel's artwork image.
- What is group-title in an M3U playlist?
- group-title is the category a channel belongs to, such as News or Sports. Players like Decodr use it to build filters and sections in the channel list.
- Can I edit an M3U playlist myself?
- Yes. Because it is plain text, you can open it in any editor to rename channels, reorder lines, remove entries or change group-title categories, then save and reload it.
- Are M3U playlists legal?
- The format itself is an open standard used by broadcasters, podcasts and media servers. Legality depends entirely on the content the URLs point to and whether you are authorised to access it.
- Where can I get an M3U playlist?
- Legitimate sources include an IPTV provider you subscribe to, free-to-air broadcasters that publish streams, your own media server software, or playlists you create yourself.
- How do I play an M3U playlist in a browser?
- Use a browser-based M3U player like Decodr: paste the playlist URL or open the local file, and each entry becomes playable. Nothing is uploaded — parsing happens on your device.
- How do I create my own M3U playlist?
- Open any text editor, put #EXTM3U on the first line, then for each channel add a #EXTINF line (for example #EXTINF:-1 group-title="News",Channel Name) followed by the stream URL on the next line. Save the file as .m3u or .m3u8 and open it in Decodr.
- How do I add channel logos to an M3U playlist?
- Add a tvg-logo attribute to each #EXTINF line pointing at an image URL, for example #EXTINF:-1 tvg-logo="https://example.com/logo.png",Channel Name. Players like Decodr display the artwork beside the channel name.
- What is the difference between M3U and PLS playlists?
- M3U is a simple line-based list with #EXTINF metadata, dominant in IPTV and HLS. PLS is an INI-style format from the Winamp/Shoutcast era, still used by some internet radio stations. Most modern IPTV tooling standardised on M3U8.
- How do I convert an Xtream Codes login into an M3U URL?
- Most Xtream-based providers expose a standard playlist at http://server:port/get.php?username=USER&password=PASS&type=m3u_plus&output=ts. Paste that URL into Decodr like any other playlist link.
- Why is my M3U playlist not loading in any player?
- Check that the file starts with #EXTM3U, that each #EXTINF line is followed by a URL, and that the file is saved with UTF-8 encoding if it contains non-English channel names. A 404 when fetching a playlist URL usually means the provider rotated or expired the link.
- How do I fix channels that appear in the list but will not play?
- The playlist is fine — the stream URLs behind those entries are offline, expired or geo-blocked. Refresh the playlist from your provider; if specific groups fail consistently, ask the provider whether those channels moved.
- Can I merge two M3U playlists into one?
- Yes. Because the format is plain text, copy the #EXTINF/URL pairs from one file into the other (keeping a single #EXTM3U header at the top), save, and reload. Give merged channels distinct group-title values so you can still filter them.