InMirrors

Results 14 comments of InMirrors

> This feature already more or less exists. You can enable the options `Network > blocked resources > images` and `HTML Content > save original URLs of embedded resources` in...

> Sorry for the misunderstanding. Today, pages saved with SingleFile never "calls home", and I'm very careful to make sure that no requests are sent when a saved page is...

> I made a userscript out of another one, not perfect but it can save image urls and link hrefs : https://greasyfork.org/zh-CN/scripts/478707-singlefile-pure-pure-html-downloader > > Some websites use a slow-loading infinite-scroll...

感谢老哥的提示,成功用 curl 下载。 我之前在浏览器中能顺利地下载。后来觉得复制粘贴太麻烦了,想写个脚本用 aria2 下载,结果遇到这种问题。我也不是专业的,希望我的经验能帮到后来者: 如果只是想用命令行下载弹幕,没有其他高阶的需求的话,Windows 的命令如下 ```bash curl --compressed -o 保存的文件名 弹幕链接 curl --compressed -o “114 514.xml” https://comment.bilibili.com/114514.xml curl --compressed -o "D:\saved file\114514.xml" https://comment.bilibili.com/114514.xml ``` 如果文件名不指明路径的话,会保存到当前目录。可以在文件名中指明路径或用 `cd` 更改保存路径。