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
1
vote
1 answer

Stream Segmentation: Which browsers support it?

Apple has a spec for using .m3u as a playlist file of .ts video segments. I understand it works on iOS devices and OSX Safari. Is it supported by any other browsers? If not, are there any other methods of segmenting a video into parts for…
Matrym
  • 16,643
  • 33
  • 95
  • 140
1
vote
0 answers

IPTV: I'm can't get Stream URL

I'm creating a list with channel IPTV (Brazilian channels) for i use in my house. I'm tryng to get a stream of an channel from url Using URLHelper, but not success. URL With Stream Before using URLHelper to get…
DaviDEV
  • 17
  • 6
1
vote
1 answer

Objective-C: Parse .m3u file to get .mp3

I'm trying to stream audio in .m3u and would like to get the .mp3 components of the file. How would I go about parsing the .m3u? Thanks in advance!
Ayaka Nonaka
  • 856
  • 1
  • 10
  • 22
1
vote
0 answers

Parser for M3U file with EXTINF tag with attributes

I am working in android(java) and need to parse m3u file having attribute(key=value pairs). I found parser for simple format of EXTINF but I cant find any for latest format. Sample file can be seen in this link. Any help will be appreciated.
Niazi
  • 31
  • 6
1
vote
4 answers

Script to extract filename from m3u file in powershell

I am very new to powershell and am just beginning to learn the depth of this progrm. My problem is I am getting a ton of information that I am having trouble grasping all of it and so many conflicting methods I am getting lost. This is what I have…
1
vote
3 answers

Windows Universal App - MediaElement and M3U

is it possible to open up a m3u webradio stream in a MediaElement class in Windows 10? Sample stream would be http://www.antenne.de/webradio/channels/top-40.m3u Opening normal mp3 in the internet work perfect but i do not get any m3u file…
1
vote
0 answers

MediaPlayer open M3U Playlist

I tried to create a MediaPlayer. First I added a local MP3 File on it (over raw directory) final MediaPlayer mp = MediaPlayer.create(MainActivity.this,R.raw.local_track_1); mp.start(); Everything worked fine, now i tried to load a M3U…
Mr. 0x50
  • 314
  • 3
  • 14
1
vote
1 answer

HLS spec omits "FRAME-RATE" attribute from EXT-X-STREAM-INF M3U8 tag between drafts 15 and 16, why?

The most recent HTTP Live Streaming spec (16) omits the FRAME-RATE attribute from the EXT-X-STREAM-INF tag. The link following shows the diff of the two latest versions of the spec (drafts 15 and…
John
  • 398
  • 1
  • 4
  • 15
1
vote
3 answers

Delete multiple lines from an M3U file that does not match pattern

I have an m3u file and I want to delete some lines from it. I know which channels I would like to keep from the m3u file. This list is of channels I want to keep is shorter than the list of channels I don't want. Input file #EXTM3U #EXTINF:-1,ex-Yu:…
Mark Veenstra
  • 4,691
  • 6
  • 35
  • 66
1
vote
0 answers

It's there a upnp player support playing the m3u playlist from DMS?

It's there a upnp player support playing the m3u playlist from DMS? Not playing next and next manualy from the DLNA control point. I'm going to write a DMR could parse m3u playlist but the upnp or DLNA document says so little about it.
liaogang
  • 508
  • 3
  • 16
1
vote
2 answers

How do I output Unicode characters as a pair of ASCII characters?

How do I convert (as an example): Señor Coconut Y Su Conjunto - Introducciõn to: Señor Coconut Y Su Conjunto - Introducciõn I've got an app that creates m3u playlists, but when the track filename, artist or title contains non ASCII characters…
ChrisF
  • 134,786
  • 31
  • 255
  • 325
1
vote
2 answers

vlc beta for android intent not working

Hi i have created an android app that uses vlc to play live streams but i am having a problem i am using vlc beta neon to play the streams from my app but i have a problem i am using androids intent to to open a .m3u playlist to play the codes i am…
user3902783
1
vote
1 answer

windows batch .bat automatic .m3u playlist creation / update

tired of manually updating my huge mp3/mp4 DB each time i add new files on my computer and/or smartphone, so i'm looking for some help to create a batch file that create/update all my playlists .m3u automatically. 2 batch files are required (1st is…
alex
  • 35
  • 1
  • 6
1
vote
0 answers

Flash Audio Player - M3U

I'm trying to read some .m3u files with my society flash audio player but it doesn't work. I need it to read radio flux (.m3u) and the only type of files working is .mp3. I read somewhere that I have to parse the file and recover the MP3 files. I…
Daelis
  • 45
  • 1
  • 11
1
vote
2 answers

MPMoviePlayerController can't play playlists and video from documents folder

My app has video content in documents folder /playlists/ - it's playlists folder i use m3u format. /videoContent/ - it's videos folder. FIRST. And when i run player with code for load playlist and content from server player =…