View Single Post
  #8  
Old 05-18-2016, 12:28 PM
Terenz Terenz is offline
Member
 
Join Date: Jun 2013
Posts: 69
Terenz is on a distinguished road
Default

Re: downloading videos from indopia.com


You need the "chunck.m3m8" you can find in in many ways example chrome://cache/
Save and open that file and add before any of the segments:
Code:
n_0_0_0.ts?
n_1_0_0.ts?
n_2_0_0.ts?
etc.
This string ( also this is inside the cache )
Code:
http://71.168.212.141/vod/mp4:mp4/hd/2007010054_00.mp4/
Result is similar to this:
Code:
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:16
#EXT-X-MEDIA-SEQUENCE:0
#EXTINF:6.239,
http://71.168.212.141/vod/mp4:mp4/hd/2007010054_00.mp4/n_0_0_0.ts?nimblesessionid=XXXXXXetc.
After that with ffmpeg:
Code:
ffmpeg -i "X:\Path\chunk.m3u8" -c copy Final.ts
Have fun.
Reply With Quote