Terenz |
05-18-2016 09:21 AM |
Re: Download video from this site
Ok i'll explain and in this forum is very hard someone explain something. The stream is AES-128 encrypted, so you need the key. If you'll play the video, you will found the "key.php" in the temporany folder of your browser, i'm using IE. Now you need to edit the "chunk.m3u8" in this way:
Code:
#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:10
#EXT-X-MEDIA-SEQUENCE:0
#EXT-X-KEY:METHOD=AES-128,URI="key.php"
#EXTINF:3.066,
http://iapcursos.localmidia.com.br/iapcursos/_definst_/iapcursos/Portugues/AcordoOrtografico/PorACOMourao001.mp4/n_0_0_0.ts?nimblesessionid=XXXXX
So replace the URI with only "key.php" and the n_0_0_0.ts with the full link and XXXXXX with yours nimblesessionid. Obliviusly you need to do for all the TS, not only the first n_0 but until the n_220
At this point save the "key.php" and "chunk.m3u8" in the same location. With ffmepeg:
Code:
ffmpeg -i "X:\Path\chunk.m3u8" -c copy Final.ts
Just for see i'm know what i'm talking:
Good Luck.
|