0

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.

kobee
  • 9
  • 3

1 Answers1

1

Play m3u8 file with WebView using load htmlString

<html>

<head>

    <title>HTTP Live Streaming Example</title>

</head>

<body>

    <video

        src="http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8"

        height="300" width="400"

    >

    </video>

</body>

</html>

OR

play from mpmoviplayer just like other file

Kiran Patel
  • 944
  • 10
  • 16