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
3
votes
5 answers

mediafilesegmenter on CentOS?

I'm working on a project where I need to batch convert files to multiple media formats, some of which will be streamed to iPhone. I'm using ffmpeg on a CentOS server, and have been using mediafilesegmenter locally to create m3u8 playlists, and it's…
Jesse
  • 10,370
  • 10
  • 62
  • 81
3
votes
0 answers

How to create a download m3u file from a url in c#?

I have web api application for online Radio,based on the url I want to create .m3u,.asx, .pls, .ram files. How to generate these files in C#?
Sanjeev S
  • 626
  • 1
  • 8
  • 27
3
votes
3 answers

Streaming Live TV channel from m3u play list

I am trying to develop an app for live channels streaming But getting trouble when try to play from m3u play list . http://jan.newmarch.name/android/StreamingAudio.html This above link describe Streaming Audio from m3u play list . But I want …
saeed
  • 1,935
  • 1
  • 18
  • 33
3
votes
1 answer

Method for playing a .m3u playlist in browser using jQuery

I've been struggling for a solution to this for weeks. I used this as a guide - https://github.com/aitorciki/jquery-playlist But i just cant make it work. The script does not come with a working example. I'm no noob, but this is a little too complex…
Doooder
  • 169
  • 1
  • 13
3
votes
1 answer

Android doesn't see playlist (.m3u) file

I am creating an own application for android that generates playlists. Application creates .m3u files in UTF-8 encoding format. Files exist and visible in file manager, but media players don't see the playlists and this is a problem. Playlists files…
Andrew
  • 735
  • 1
  • 8
  • 19
3
votes
1 answer

How do I get Chrome to open M3U *outside* the browser

I'm running Chrome on Windows 7. I have WinAmp as my MP3 player, and it is also associated with M3U files in the operating system. When I double-click an M3U file in Windows explorer, WinAmp opens it. However, in Chrome, when clicking on a link…
Sandra
  • 608
  • 2
  • 11
  • 23
3
votes
1 answer

vlc player unable to play m3u8 play list

#EXTM3U #EXT-X-TARGETDURATION:10 #EXTINF: 10 wr3libvorbis-1.ogg #EXTINF: 10 wr3libvorbis-2.ogg #EXTINF: 10 wr3libvorbis-3.ogg #EXTINF: 10 wr3libvorbis-4.ogg #EXTINF: 10 wr3libvorbis-5.ogg #EXTINF: 10 wr3libvorbis-6.ogg #EXTINF:…
Necktwi
  • 2,483
  • 7
  • 39
  • 62
3
votes
0 answers

how to play full m3u audio stream in ios

NSURL *url = [NSURL URLWithString:@"http://yyyyy.com/radio.m3u"]; moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:url]; // Register to receive a notification when the movie has finished playing. [[NSNotificationCenter…
prabhu
  • 84
  • 3
3
votes
1 answer

jwplayer streaming m3u from another domain

Looking to stream a radio station on my website, we also host the streaming but from a different domain. Just getting this error: Task Queue failed at step 5: Playlist could not be loaded due to crossdomain policy restrictions Code on domain A: …
ChrisAdmin
  • 982
  • 1
  • 12
  • 32
3
votes
0 answers

How to get stream video(m3u8 format) resolution from url link, android2.3.3?

I have tried many ways to retrieve the video meta data from url like (http://xxx.xxx.xxx.xxx/streams/xxxx/playlist.m3u8), the project is useing android 2.3.3 SDK. As I know the MediaMetadataRetriver can solve it with capture_mode but it needs the…
Pocky
  • 75
  • 10
2
votes
0 answers

How to parse a M3U file from React Native Expo

How would I parse the content like the Title and URL from a M3U file in React Native Expo?
Preston
  • 31
  • 2
2
votes
1 answer

I want to play a live stream on Unity after extracting the video from the m3u file

I am trying to play an m3u file on Unity My problem is when I extract a valid .ts link for download As you know, TS videos are not supported on Unity What is the solution in your opinion to play the ts files extracted from the m3u file? This is the…
Lelouch kun
  • 449
  • 1
  • 13
2
votes
1 answer

A/V sync issue - Apple's HTTP Live Streaming

When I try to stream TS chunks generated by 3rd party multiplexers (Mainconcept/Elecard) from Safari browser in IPad 2.0/1.0 I always see Audio Video synchronization issue over a period of time. But the same clips are playing fine in standard media…
ifreeman
  • 31
  • 1
  • 5
2
votes
0 answers

Issue with m3u8 files - separate audio and video

I've downloaded a m3u8 file, I noticed two files which were strange to me. Upon loading it I noticed one was just video and the other audio. What would be the best way of merging the two? Would I need to completely recode my application or is there…
A Alizadeh
  • 23
  • 3
2
votes
3 answers

File Input Stream not working on Api level 29

I have a method that tries to extract m3u files, but it doesn't work at api level 29. I get the following error on the Logcat screen: 2019-10-03 20:46:53.165 32591-417/? E/Google: java.io.IOException: Cleartext HTTP traffic to mysite.tk not…
Pehr Sibusiso
  • 862
  • 1
  • 14
  • 27
1
2
3
9 10