Questions tagged [m3u]

a computer file format that stores multimedia playlists

An M3U file is a plain text file that specifies the locations of one or more media files. The file is saved with the "M3U" or "m3u" filename extension.

Each entry carries one specification. The specification can be any one of the following:

  • an absolute local pathname; e.g., C:\My Music\Heavysets.mp3
  • a local pathname relative to the M3U file location; e.g. Heavysets.mp3
  • a URL.

The M3U file can also include comments, prefaced by the "#" character. In extended M3U, "#" also introduces extended M3U directives.

One common use of the M3U file format is creating a single-entry playlist file pointing to a stream on the Internet. The created file provides easy access to that stream and is often used in downloads from a website, for emailing, and for listening to Internet radio .

143 questions
0
votes
1 answer

How can I play a stream file m3u on a website

I want to integrate a webplayer on my website to play my m3u streaming file. I found this javascript file on github and tried to get it running. Unfortunately without success. https://github.com/aitorciki/jquery-playlist
user9554121
  • 17
  • 1
  • 7
0
votes
1 answer

Unicode Playlists for Sonos from Python

I'm working to export a small subset of music from my iTunes library to an external drive, for use with a Sonos speaker (via Media Library on Sonos). All was going fine until I came across some unicode text in track, album and artist names. I'm…
DaveWalker
  • 521
  • 1
  • 4
  • 15
0
votes
1 answer

Open m3u8 Files from iOS on PC

I got an App called TV Screen on my iPhone. There i can save TV Shows localy on my iPhone, well kind of. I went via SSH to the Application folder and found many .ts files and a m3u8 file. Here the m3u8…
jonny
  • 1
  • 1
  • 1
0
votes
1 answer

Save Streaming video(m3u8 file) into gallery

When I am downloading .mp4 or .mov player then it will save into device gallery without any error but when I am trying to save .m3u8 video file it will always giving me this error in error local description: "Optional(Error Domain=NSCocoaErrorDomain…
khusboo suhasini
  • 293
  • 2
  • 16
0
votes
1 answer

Can I link a DVB-T2 channel frequency in a m3u list?

Since I got a device which is both IPTV Player and DVB-T2 receiver, I'm guessing if I could compose an hybrid m3u list containing not only stream channels, but some DVB-T2 channels frequencies as well. This way I would have something like this for…
marlena
  • 1
  • 1
0
votes
1 answer

icecast stream html5 player audio tag

I am having trouble getting a stream to embed with this audio tag: should…
koufuki77
  • 3
  • 1
  • 5
0
votes
2 answers

Python 2.7 Regex not matching desired pattern

I am parsing all the rows of a .m3u file containing my IPTV playlist data. I am looking to isolate and print string sections within the file of the format: tvg-logo="http//somelinkwithapicture.png" ..within a string that looks like: #EXTINF:-1…
gdogg371
  • 3,879
  • 14
  • 63
  • 107
0
votes
1 answer

swift - how to parse logo image from m3u playlist

I have a parsing m3u playlist url but I can't parse image url too? all source code from GitHub : https://github.com/ArtemStepuk/zombobox extension IPTVM3U8PareserService: M3U8ParserService { func extractChannelsFromRawString(_ string: String) ->…
Amro Jaber
  • 185
  • 1
  • 17
0
votes
1 answer

Downloading encypted m3u8 chunks ?

Is it possible to download AES encrypted m3u8 chunks If so then how to do it ? m3u8 file
0
votes
1 answer

PHP(laravel) to create a m3u playlist URL which is playable directly in VLC

I'm having an m3u playlist which downloads fine and works when open in VLC after the download. However I want that someone could just paste the URL to VLC and it would work directly without the need to download the file first. I'm using laravel for…
m33ts4k0z
  • 645
  • 7
  • 26
0
votes
1 answer

Filter data contained in the m3u playlist

In my .xml file I use on codes, I select a m3u list and download the channel list, but this list includes channels from different countries, for example, can you filter the list by displaying only the channels of a particular country? For example,…
mike
  • 3
  • 1
  • 3
0
votes
0 answers

How can I play an m3u8 video live instead of playing old segments?

I have an m3u8 video that if I just start with the first segment it is behind the live version of the stream. But in some players it plays live just fine, so my thinking is that there must be some magical way of knowing how to play the stream live…
casolorz
  • 8,486
  • 19
  • 93
  • 200
0
votes
0 answers

Use an m3u/xspf playlist when an mp3 stream goes offline

I'm running a radio station that has two streams - a main one and another one, backup one. However, I'm not quite sure how to use the on-error tag to switch from .mp3 to .m3u. Any solutions? Site code, for reference if needed click here
0
votes
2 answers

How do I connect 2 m3u playlists together?

is it possible for me to create a m3u playlist that plays videos which are in 2 other m3u playlists? Let me try to explain... Suppose I create a file called playlist1.m3u and playlist2.m3u (Contents of playlist1.m3u) EXTM3U EXTINF:-1,MP4 Home Video…
Carlm3
  • 19
  • 1
  • 3
0
votes
1 answer

QMediaPlaylist and UTF-8

I have trouble loading *m3u-playlistfiles with UTF-8-encoding with QMediaPlaylist. The path of the first entry is not loaded correctly. As you can see in the screenshot the path of the first entry starts with D:/D/Media/New folder/ , which is the…
honiahaka10
  • 772
  • 4
  • 9
  • 29