Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 is just a video list. So my question is how I can download the real video file into local and play them for m3u and m3u8 format.

like image 849
user1340399 Avatar asked Nov 03 '22 07:11

user1340399


1 Answers

First of all, m3u or m3u8 is a playlist, does not contain music data.

To parse the file, you can follow the answer here. After you parsed the file, you can fetch the real media URL and load it with media player.

Reference of M3U file format in Wikipedia : http://en.wikipedia.org/wiki/M3U

UPDATE: Furthermore, another guy is doing similar thing. You can review his code here.

like image 163
Raptor Avatar answered Nov 08 '22 13:11

Raptor