Questions tagged [m3u8]

The Unicode version of "m3u" is "m3u8", which uses UTF-8 Unicode characters.

"m3u" and "m3u8" files are the basis for the HTTP Live Streaming format used by Apple to stream video to iOS devices. More can be found on WiKi.

734 questions
0
votes
1 answer

Where is my "receiver app URL in Developer Console"

I am following the directions here: https://github.com/googlecast/CastMediaPlayerStreamingDRM In order to understand how I can stream DRM videos with m3u8 to Google ChromeCast (from iOS). Under 'Steps to setup'. The 3rd step says Point your…
user1709076
  • 2,538
  • 9
  • 38
  • 59
0
votes
2 answers

Playing Stream .m3u8 Audio File in iOS

I am confused about this. I have an URL which contains a .m3u8 file in it and when I try to stream the URL with: MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:movieURL]; [player…
Arash khangaldi
  • 110
  • 2
  • 15
0
votes
1 answer

HLS encoding parameters for lowest CPU / smoothest playback

are there any recommendations for encoding an HLS stream to achieve playback/decoding with the least CPU usage / smoothest playback? I am using an HTML5/Flash player but the Flash player stutters with HLS around 720p, video bitrate 2-3k.
0
votes
1 answer

Capture or decode embedded CEA-608 captions in HLS MP4 video in Flash Player

Request In Flash/AS3 how do you decode or capture CEA-608 closed-captions embedded in an mp4? I can't seem to get even a hint of the caption data nor can I find any documentation that can point me in the right direction. Any documentation, examples,…
potench
  • 3,802
  • 1
  • 28
  • 39
0
votes
1 answer

Does m3u8 playlist support seekto function if ENDLIST key not found

is it possible to use seekTo function into a m3u8 stream if this playlist does not have #EXT-X-ENDLIST key?
user3189504
  • 161
  • 1
  • 1
  • 12
0
votes
1 answer

How to play m3u8 using AVplayer at local

i try to save .m3u8 & .ts file on local ,then using AVplayer to play it, but player always loading fail. Have any way to play it , or i have to set small http server on device to put the file then play it? Thanks all
omc
  • 5
  • 5
0
votes
0 answers

Is it possible to have a live m3u8 stream play in phonegap applications?

I've built a Drupal back-end website for streaming live m3u8 streams, and when I play these streams over to an Android Java application it works, but I'm wondering if there is a way to do this in phonegap as well.
CR47
  • 843
  • 4
  • 12
  • 33
0
votes
1 answer

How to get resolutiion of video stream by url *.m3u8

I open stream video by url *.m3u8 in Video View Display of my device is 800x480 but if video stream resolution is 1024x768 video stops playing and can be crash of app. How to get resolutiion of video steam by url *.m3u8? OR How to resize video…
NickUnuchek
  • 11,794
  • 12
  • 98
  • 138
0
votes
1 answer

HTML5(or other) with M3U8 on windows

Is it possible to get an M3U8 stream to play on windows and linux via the web browser? I would prefer HTML5, but I don't mind if isn't. I have read around but all I found out was that I couldn't make it work on other stuff then Mac, so is this…
Oliver Nybroe
  • 1,828
  • 22
  • 30
0
votes
1 answer

Regex: match line if previous line satisfies a criteria

What's a regex that will match lines whose previous line starts with a set of characters? I'm trying to parse M3U files, and I need to match the lines whose preceding line starts with #EXTINF: So if we take this…
Eric
  • 16,003
  • 15
  • 87
  • 139
0
votes
1 answer

Streaming m3u8 HLS Audio on Android

i've found problems trying to reproduce m3u8 HLS audio streaming on Android. Right now i can reproduce video in m3u8 HLS link with: Intent i = new Intent(Intent.ACTION_VIEW); i.setDataAndType(Uri.parse(contentURL),"video/mp4"); …
Alessio Crestani
  • 1,602
  • 4
  • 17
  • 38
0
votes
2 answers

Live Stream for windows mobile app

I am new to windows mobile application development. I want to develop an application to play live stream on Windows mobile devices. I have both formats HLS(.m3u8) and RTMP of streams available. Please guide me to some useful player for integration…
0
votes
1 answer

How does HTML5 support m3u8 playlist?

I'm finding a way to play the m3u8 playlist with pure HTML5/JavaScript. HTML5 should not rely on flash to support HTTP Live Stream. Are there any HTML5 player that support m3u8 without flash and other fallbacks?
0
votes
0 answers

How to parse diffrent resolution m3u8 urls from m3u8 variable?

I got the following m3u8 as php variable($returned_content). Now i want to replace proxy-63.somesite.com part of all m3u8 with video2.de.secondsite.net then create a hyperlink for each resolution and place all the hyperlinks in textarea.(for each…
user1788736
  • 2,727
  • 20
  • 66
  • 110
0
votes
0 answers

Vitamio bundle scratch voice

I am using vitamio library for streaming m3u8 format. I hav written these codes. It is running. public class MainActivity extends Activity { private Button baslat; private Button durdur; private VideoView videoView; private String httpLiveUrl =…
emreturka
  • 846
  • 3
  • 18
  • 44