Hi, I would need find a way to get direct live stream from Destination America Go, I mean live, not downloading episodes, this I already managed. I need live stream that I would be able to play with any other media player and could record with it. What I get is:
So, there is one master.m3u8 file, whoch contains:
Code:
#EXTM3U
#EXT-X-INDEPENDENT-SEGMENTS
#EXT-X-MEDIA:TYPE=CLOSED-CAPTIONS,GROUP-ID="cc",NAME="Closed Captions",DEFAULT=YES,AUTOSELECT=YES,LANGUAGE="und",INSTREAM-ID="CC1"
#EXT-X-STREAM-INF:BANDWIDTH=4558891,AVERAGE-BANDWIDTH=3682768,CODECS="avc1.64001F,mp4a.40.2",RESOLUTION=1280x720,FRAME-RATE=30,CLOSED-CAPTIONS="cc"
Destination_AmericaLIVE_VIDEO_1_3564000.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=2947032,AVERAGE-BANDWIDTH=2354428,CODECS="avc1.4D401F,mp4a.40.2",RESOLUTION=960x540,FRAME-RATE=30,CLOSED-CAPTIONS="cc"
Destination_AmericaLIVE_VIDEO_2_2264000.m3u8
#EXT-X-STREAM-INF:BANDWIDTH=1874253,AVERAGE-BANDWIDTH=1485898,CODECS="avc1.4D401E,mp4a.40.2",RESOLUTION=704x396,FRAME-RATE=30,CLOSED-CAPTIONS="cc"
Destination_AmericaLIVE_VIDEO_3_1414000.m3u8
and other different resolutions,
then there is this file, Destination_AmericaLIVE_VIDEO_2_2264000.m3u8:
Code:
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:6
#EXT-X-MEDIA-SEQUENCE:477045
#EXT-X-DISCONTINUITY-SEQUENCE:3
#EXT-X-PROGRAM-DATE-TIME:2017-01-16T17:50:03+00:00
#EXT-X-KEY:METHOD=NONE
#EXTINF:6.006,LTC=2017-01-16T17:50:03+00:00
VIDEO_2_2264000/set_238/Destination_AmericaLIVE_VIDEO_2_2264000_477045.ts
#EXTINF:6.006,LTC=2017-01-16T17:50:09+00:00
VIDEO_2_2264000/set_238/Destination_AmericaLIVE_VIDEO_2_2264000_477046.ts
so, lot of *ts segments.
Problem is, that this file is loaded number of times with a different segments, as seen on image.
If I download one *ts segment, it plays fine.
So, I need to find a way to catch the direct stream or some way to catching these *m3u8 files in real time and getting these segment and some way of playing them.
It is possible? Thank you in advance.