https://aria2.github.io
aria2 is a lightweight multi-protocol & multi-source command-line download utility. It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.
aria2 can be manipulated vi
详情回复
发表于 2022-7-9 12:42
aria2 is a lightweight multi-protocol & multi-source command-line download utility.
It supports HTTP/HTTPS, FTP, SFTP, BitTorrent and Metalink.
aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces.
兄弟们!!我新增了thunder链接功能!!依赖于certutil(原版系统+win7及以上就能用)只要拿以下内容替换作者的cmd.bat就可以!!!
@echo off
del %~dp0\tmp 2>nul
del %~dp0\tmp_1 2>nul
del %~dp0\DECODED 2>nul
set Dpath=D:\下载
set /p cili=请复制种子路径、下载路径或者磁力链接:
echo %cili%|findstr /b thunder:// > tmp_1
set /p IS_THUNDER= < %~dp0\tmp_1
if "%IS_THUNDER%" neq "" goto thunder else goto simple
:simple
aria2c.exe %cili% --seed-time=0 --force-save=true --dir=%Dpath%
del %~dp0\tmp
del %~dp0\tmp_1
del %~dp0\DECODED
pause
exit
:thunder
echo -----BEGIN CERTIFICATE----- > tmp
echo DEBUG : ______%cili:~10%______
echo %cili:~10% >> tmp
echo -----END CERTIFICATE----- >> tmp
certutil -decode tmp DECODED
set /p DEC= < DECODED
aria2c %DEC:~2,-2%
del %~dp0\tmp
del %~dp0\tmp_1
del %~dp0\DECODED
pause