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

learn more… | top users | synonyms

0
votes
0answers
9 views

HTTP Live Steaming - Joining files in a playlist

Amazon AWS just announced they have added HLS encoding to their Elastic Transcode service, which is great. Its very easy to get a single video to play HLS style via S3, or even better, CloudFront. ...
0
votes
0answers
16 views

Change .m3u8 Segment Path

I have successfully create HLS with FFMPEG. How do I make segment path in .m3u8 show only segment name? Current directory creation(bash): folder = '7580338' OUTPUT_DIR='global_assets/temp/'$(echo ...
0
votes
0answers
21 views

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 ...
0
votes
1answer
14 views

iOS Streaming Media - Media File Segmenter

Just wondering if anyone knows of a script or program that does this automatically and / or as a batch process for say 50 mp4 videos. I'm talking about the process of segmenting a video using the CLI ...
-1
votes
0answers
47 views

Play .m3u8 file without using MPMoviePlayerViewController

I've played on the iphone .m3u8 file by using MPMoviePlayerViewController. But I realized that,,, if server is not good, the chunk of profiles in .m3u8 will be deflect and currentPlaybackTime is not ...
0
votes
0answers
17 views

Can I add alternative sources in m3u8 file?

How to add alternative source in m3u8 file ? For example, I have 2 cdns and one cdn may be unavailability.
1
vote
1answer
61 views

jwPlayer 6 seeking to exact position

Is it possible to somehow get jwPlayer 6 to seek to an exact position in the video, regardless of keyframe interval? I acknowledge that this probably requires that it will have to go to the previous ...
2
votes
0answers
183 views

Download Video from m3u8 with ffmpeg and multibitrate

I need to download the videos from a streaming site (Akamai) once they are recorded. I can do it with ffmpeg without troubles, but only if the manifest file has only one video stream. If it has ...
0
votes
1answer
80 views

Check browser .m3u8 support php

How can I check browser support to play m3u8 format with PHP. IOS devices and the latest Mac Safari browser support it. I am able to check with the user agent but if there is a way to check m3u8 ...
1
vote
2answers
214 views

How to decrypt AES-128 encrypted m3u8 video files?

I trying to decrypt AES-128 encrypted m3u8 video files such as this one : the m3u8 file : #EXTM3U #EXT-X-MEDIA-SEQUENCE:0 #EXT-X-ALLOW-CACHE:NO #EXT-X-VERSION:2 ...
0
votes
0answers
83 views

Does MPMoviePlayer support other playlist format than .m3u8? Or can I include .mp4 url into .m3u8 file?

I have serveral .mp4 file online, and wanna play them one by one by my order. My question is : when I use .m3u8 to build a playlist, does its video clips must be .ts format? Cause when I create an ...
0
votes
0answers
223 views

Play m3u8 audio file using android media player

I am developing an android application for android OS > 4.0 (including and post OS). I have a sample m3u8 file as follows : #EXTM3U #EXT-X-TARGETDURATION:56 #EXT-X-MEDIA-SEQUENCE:0 #EXTINF:28, no ...
0
votes
2answers
163 views

Can i play m3u8 format in windows mobile?

Sorry for the question, i don't have windows mobile to test. I am trying to develop a live internet radio application. The format they stream is in m3u8, i have got SDKs for all other mobile platorms ...
0
votes
1answer
652 views

Android MediaPlayer play m3u8 only audio streamming

Hi all and thanks in advance, After all day looking, searching and trying i do not know if it is even possible, or if the problem is in the code, or if the problem is in the server.... First of all, ...
1
vote
1answer
448 views

How to download HLS/M3U8 chunks in ios device?

How to store locally m3u8 file with all chunks (.ts) from url in ios device. If possible so how to do it? I have developing functionality like.. Download .m3u8 file with chunks(.ts) in ios local ...
0
votes
0answers
112 views

MPMoviePlayerViewController iOS 4.3 can't stream m3u8 file

I'm performing HTTP Streaming using MPMoviePlayerViewController, the url is a playlist file ends with .m3u8 type. It works fine with iOS 5.0 and greater versions, but when I am trying to play in iOS ...
2
votes
1answer
269 views

m3u8 file for iPhone--how to save it locally for playing later

Can anyone guide me, how to store locally m3u8 file from url, for playing offline later. Will EXT-X-ALLOW-CACHE help me in this matter.` NSURLRequest* request = [NSURLRequest requestWithURL:url ...
0
votes
1answer
340 views

Parsing HLS m3u8 file using regular expressions

I want to parse HLS master m3u8 file and get the bandwidth, resolution and file name from it. Currently i am using String parsing to search string for some patterns and do the sub string to get value. ...
6
votes
1answer
327 views

Can iPhone stream MMS, RTSP (RTP, SDP), HTTP progressive streaming ,HTTP live streaming (M3U8) files

I am checking one question in SO, which is this, and I thought a question can iPhone also play this files or it will only support M3U8 for live streaming.
0
votes
1answer
250 views

xcode m3u8 video stream does not work

This script should m3u8 stream a file, but it does not work I thank you in advance for your help The .h file // ScrollStream.h @interface ScrollStream : UIViewController { ...
1
vote
1answer
1k views

How do i embed this m3u8 into jw player

Total novice here so if you can be patient with me id really appreciate it. Now i have this url http://213.202.73.8:1234/data/channels/ARENA1. m3u8 I want to embed this into my JW Player, I have ...
2
votes
1answer
1k views

Playing .m3u8 file through HTTPS on android 2.3

At some point in my code, the app finds an URL that points to a .m3u8 file. This is what happens next : mVideoView.setVideoURI(Uri.parse(feed.getUrl().toString())); // feed.getUrl returns the url ...
0
votes
0answers
89 views

Add meta data in m3u8 for IOS

Hello I have an m3u8 file containing some mp3 files which I am able to play in an tag on safari on IOS. My question is how can I add metadata like song name, artist, picture that I can display when ...
0
votes
2answers
357 views

MPMoviePlayerController don't finish loading and don't play the stream

I'm trying to play a video with MPMoviePlayerController over HTTP Live Streaming (with Adobe Media Server). - (void) viewDidAppear:(BOOL)animated{ [super viewDidAppear:animated]; [self ...
0
votes
0answers
74 views

Run m3u8 files in Background

I have to run a m3u8 file in the background. I run this file using MPMoviePlayerController, but I could not make it run in the background. I set the plist UIBackgroundModes. In the past I've been ...
0
votes
1answer
276 views

MPmovieplayer and streaming m3u8 file?

Am using MPMoviePlayerController to stream n play a video. Its, in m3u8 format and plays with no problems. However, lets say it has buffered n played 50% of the total video, now if i seek backward, it ...
0
votes
0answers
297 views

playing HLS/M3U8 chunks in Windows 8 App

I haven't found the solution to play m3u8 streaming in Windows 8 application. NOW, i want to know the solution of following if someone can help me, The m3u8 is a playlist, when i open the link it ...
0
votes
1answer
464 views

How to decrypt ts files given in a m3u8 file?

I have a url for a m3u8 file which has the list of ts files.All those files are encrypted by AES-128 method.Along with ts files m3u8 file also contains URI for keys. First I want to download the ts ...
0
votes
0answers
218 views

how to play native m3u8 in iPhone

when playing m3u8 palylist,it must be a remote url.My problem is : if the m3u8 index file and the ts media files are loacted in the iPhone device, then how to play by http.
1
vote
1answer
813 views

how to download m3u video in IOS app? [closed]

I'm developing an IOS application which will download some videos to local so that users can watch those videos offline. But currently, a lot of videos are m3u and m3u8 format. As I know m3u and m3u8 ...
3
votes
1answer
254 views

iPhone : Can't streaming m3u8 url with AudioStreamer

I'm using Matt Gallagher's AudioStreamer to perform audio streaming in app, the URLis coming from server, right now its of type .m3u8 format, and the problem is ON, before it was of .mp3type and ...
1
vote
1answer
865 views

How to play m3u8 audio file?

I have a URL (http://ms1.clickhere2.com:1935/live/power98/playlist.m3u8) and wanted to play in iPhone, with m3u8 format, would somebody help on this, I have used MPMEDIAPLAYER framework and other ...
3
votes
1answer
5k views

Android video stream mms and m3u8

I am trying to play some video streams from mms and m3u8 inside my Android application. It seems that the MediaPlayer doesn't have support on this and from what I have read on FFMPEG it seems there ...
0
votes
1answer
273 views

Can a m3u8 file contain other m3u8 files?

I want to stream to IPAD by Apple HTTP Streaming Tech. Is it possible to embed other M3U8 files like the include command in the c program? For example main.m3u8: includes 1.m3u8 2.m3u8 So that ...