Is it possible to play multiple playlists using master.m3u8. As the clip1 and clip2 m3u8 are in different folder structures. I tried to play it but only 1st clip seems to be playing.
master.m3u8:
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-STREAM-INF:BANDWIDTH=2305600,RESOLUTION=852x480,CODECS="avc1.640034,mp4a.40.2"
main/clips/new/2024/clip1.m3u8
main/clips/2023/clip2.m3u8
clip1.m3u8:
#EXTM3U
#EXT-X-TARGETDURATION:10
#EXT-X-VERSION:3
#EXTINF:10,
clip/1.ts
#EXTINF:10,
clip/2.ts
#EXTINF:10,
clip/3.ts
#EXT-X-ENDLIST
clip2.m3u8
#EXTM3U
#EXT-X-TARGETDURATION:10
#EXT-X-VERSION:3
#EXTINF:10,
clip/1.ts
#EXTINF:10,
clip/2.ts
#EXTINF:10,
clip/3.ts
#EXT-X-ENDLIST
I tried to play the master.m3u8, which includes multiple m3u8 file path included in it. But only 1st path clip seems to be playing.
New contributor
Sai kiran Nomula is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.