fireattack
fireattack
虽然作者已经说了暂时不能用了,不过还是提一下,这个还有个副作用会导致编辑工具栏无法加载。
但是我可以直连这个网站,用另外两个不需要代理 Edit: log里的内容如下 ``` 00:50:34.874 / (NORMAL) 开始解析 https://vodc.xrw.docomo.ne.jp/signed/live/20220325002/20220325002_hls_1.m3u8 00:50:34.889 / (NORMAL) 请求被中止: 未能创建 SSL/TLS 安全通道。 00:50:34.889 / (ERROR) 请求被中止: 未能创建 SSL/TLS 安全通道。 00:50:35.904 / (NORMAL) 请求被中止: 未能创建 SSL/TLS 安全通道。...
所以说不是网络环境的问题,直连可以连上,别的软件也可以下载…… 不过确实不是Cookie的问题,我标题已经改了
以报错搜索,搜到这个: https://smalltool.github.io/2020/08/24/Could-not-create-SSL-TLS-secure-channel/ ``` 解决办法一: 在HttpWebRequest前设置代码 ServicePointManager.Expect100Continue = true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls; ServicePointManager.ServerCertificateValidationCallback = (sender, certificate, chain, errors) => true; ``` 另见 https://www.cnblogs.com/xuliangxing/p/8384821.html
安装的是.net 4.8.03761,应该够高 估计是win7的问题?虽然已经修改了注册表默认启动了tls1.2 但是.net的程序还是有点问题得像上文所述那样手动添加一下Protocol ```cs ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls; ```
不是加密的问题,这个的特殊之处应该是他没有用常见的mpegts,而是hvc_2160p_16800_3.mp4 这种HVC1/MP4 我试了下,copyb合并然后再用mkvmerge transmux一遍就可以修复卡顿问题
A side note for myself, while you can get the original resolution (?) by finding the magic /p/, the images are re-compressed anyway :/ I knew it because this site...
The output file isn't exactly perfect, but yeah, I can play it. To play it better, you can use ffmpeg to remux it one more time.
Here are all the logs: ``` E:\dedrm>test.bat E:\dedrm>mp4decrypt1500.exe --key "b35ba32acf43e2865cb0771219af08d5:989d4b0938b6902471a10d77c0db753b" "enc_test.mp4" "dec1500.mp4" E:\dedrm>ffmpeg -i "dec1500.mp4" -c copy "dec_1500_fixed.mp4" ffmpeg version 4.4-full_build-www.gyan.dev Copyright (c) 2000-2021 the FFmpeg developers built with gcc...