View Single Post
  #9  
Old 06-28-2016, 06:17 AM
rad rad is offline
Junior Member
 
Join Date: Apr 2016
Posts: 29
rad is on a distinguished road
Smile

Re: downloading videos from indopia.com


Quote:
Originally Posted by Terenz View Post
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.

Thanks friend but i don't know where to write this code nor could i find that chunk file. can you please simplify the downloading process since i have zero knowledge in coding. thanks again
Reply With Quote