是否可以下载AES加密的m3u8块?如果是,那么怎么做
?
答案 0 :(得分:0)
您可以使用一些附加信息来执行此操作,包括来自 HLS 子播放列表的 IV(初始化向量)和密钥文件
Xxd <keyname>.key
openssl aes-128-cbc -d -in video-file.ts -out video-file_1.ts -nosalt -iv <iv_value> -K <decoded_key>
现在您应该可以查看解密的块了。
注意:您需要 openssl
和 Xxd
命令行工具
这篇文章描述了做相似但组合多个段的过程 https://idof.medium.com/download-and-decrypt-aes-128-m3u8-playlists-495c12d6543a