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
2
votes
1 answer

How to record/download m3u steam video from url using FFMPEG

I am trying to download video from m3u live stream but there is some part of video download in this m3u8 url return segments and this segments merge and give video but video length is like one request response segments , i am try to download steam…
Gaurav
  • 171
  • 1
  • 13
2
votes
1 answer

Failure to load m3u playlist on android app using LibVLC

I am testing out an IPTV app using LibVLC which I wanted to help load and play m3u playlists but unfortunately it has not worked. I confirmed the player works by initally testing an online mp4 link but failed to get it running. Using the library…
user3682205
  • 241
  • 4
  • 16
2
votes
1 answer

Playing .M3U links using Media Player

I need to play .M3U urls using Media Player, but it is not working: Here is my code: final MediaPlayer mediaPlayer = new MediaPlayer(); mediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC); try { …
Leenah
  • 850
  • 3
  • 15
  • 36
2
votes
0 answers

Play .ts (media file) in chrome with javascript

I want to play a .ts (transport stream, not TypeScript) file in chrome. Could someone please help me?
IsiCa
  • 65
  • 1
  • 1
  • 9
2
votes
1 answer

parser m3u file using java in android studio

i am looking to parser m3u file in java. channel name then its link I've googled for this but unable to find solution. m3u file looks like this: #EXTM3U #EXTINF:-1,VIP AR: Bein Max 1…
Sajjad Javed
  • 139
  • 2
  • 14
2
votes
0 answers

AVPlayer is playing my m3u file only when the file is not on the local device

I would like to play a ts video file. The only simple way to do it is to save the ts url under an m3u file. That's what i did. The problem now is that AVPlayer don't play anything when i have this m3u file on my device. It plays it only when the…
2
votes
0 answers

Playlist Starting point and duration

I would like to create a script base playlist like m3u or pls format to play multiple video files at certain starting point and duration for each of them. You can specify a start point for Youtube video link for example. Can I do the same for a…
2
votes
1 answer

Properly format m3u playlist

I am using XBMC to watch IPTV, simple created playlist like this #EXTM3U #EXTINF:-1,Pink Action http://on108.setplex.net/fastv_2....ca.m3u8 #EXTINF:-1,Pink Action 2 http://on108.setplex.net/fastv_2....ca.m3u8 #EXTINF:0,KISS…
2
votes
1 answer

Is it possible to stream from a .m3u source on hover of a div?

I am working on an interactive website about the languages of the world. Part of the plan is to have a world map which reacts with sound when different countries are hovered. The emphasis is on the sound of a language. I would like to embed web…
ifthisthenthat
  • 95
  • 1
  • 2
  • 10
2
votes
2 answers

Is it necessary to define runtime/"run time" in m3u playlist file or is there a way around it?

E.g. in the m3u file below, the running times are listed as 419, 260 and 255. #EXTM3U #EXTINF:419,Alice In Chains - Rotten Apple Alice In Chains_Jar Of Flies_01_Rotten Apple.mp3 #EXTINF:260,Alice In Chains - Nutshell Alice In Chains_Jar Of…
Pup
  • 10,236
  • 6
  • 45
  • 66
2
votes
1 answer

Stream m3u with an embeded player on a website

I would like to know what are the best ways to stream m3u with an embeded player on a website nowdays thanks to HTML5 or Jquery. I would like to avoid flash. I would also appreciate a tutorial to add this player on my website : for the moment I have…
Coquinoob
  • 155
  • 1
  • 1
  • 11
1
vote
1 answer

error: cannot find symbol import com.google.android.exoplayer2.upstream.DefaultHttpDataSourceFactory

There is an error when building project error: cannot find symbol import com.google.android.exoplayer2.upstream.DefaultHttpDataSourceFactory; ^ symbol: class DefaultHttpDataSourceFactory location: package…
1
vote
0 answers

It is possible to find out the final stream url of an m3u file?

It is possible to find out the final stream url of an m3u file. E.g. m3u file url is http://server.address:8000/544.m3u and this url is streaming from e.g. https://youtuxxx.com/trgghh.m3u Foolowing redirects
hanimkr
  • 19
  • 2
1
vote
1 answer

React native m3u radio player

I am trying to make a radio streaming app using react native but it doesn't work. I tried expo-av with Expo CLI, and react-native-radio-player, react-native-video from react native CLI all of them work well with mp3 and mp4 extensions but don't work…
Shady Hakim
  • 395
  • 6
  • 20
1
vote
1 answer

HTML5 m3u / asx stream player

I was wondering if it is possible to play a radio stream via m3u or asx on a HTML 5 player? Google doesn't give me any answers.
Arndt Bieberstein
  • 1,128
  • 1
  • 14
  • 28
1 2
3
9 10