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

Re: livestreamer Spuul.com Ssl error


Done!


Was hard then i expected...the manual way. I have already explained the question of slim and renditions so i'll not write again.

The first thing is download with a download manager all the renditions-0000N.ts, i have used cURL and C++, and put everything in a folder. Then open the renditions.m3u8 and download all the renditions-encryption key, there are several in this m3u8
Code:
#EXT-X-KEY:METHOD=AES-128,URI="HERE",IV=0xECT
And put in the same folder of the TS. Now edit the s_renditions.m3u8 and write ALL the path of the TS and the KEY like:
Code:
#EXT-X-KEY:METHOD=AES-128,URI="C:\\renditions-encryption-00001.key",IV=0xETC
#EXTINF:10.00000,
C:\\renditions-00001.ts
Save it always in the same folder of the TS and the KEY. The last part is use ffmpeg for decrypt&merge the TS in one file:
Code:
ffmpeg -i "C:\path\s_renditions.m3u8" -c copy Final.ts
End.
Reply With Quote