163sub字幕下载助手是下载神器频道栏目下备受客户钟爱的手机软件,太平洋下载管理中心出示163sub字幕下载助手最新版下载。
163sub字幕下载助手是一款最新版的pc下载輔助运用,能协助大伙儿在163sub字幕在网上免费下载自身必须有关影片、电视机外挂字幕,该服务平台在当今中国十分著名,能协助大伙儿处理很多具体难题,详尽操作方法以下。163sub字幕下载助手介绍:
163sub字幕比较丰富,但是网址页面并不是很友善,免费下载也要自动跳转2次很不方便
科学研究了下,这一bat脚本能够 保持入录立即下载字幕,较为便捷。
自然环境:Windows电脑上请安裝GNU win32 和aria2
操作方法:
rem 第一步:获得百度搜索,配对外挂字幕id
curl -s -o %film%-utf8temp.txt //www.163sub.com/Searchid=%film%
iconv.exe -c -f UTF-8 -t GBK %film%-utf8temp.txt > %film%-gbktemp.txt
sed "s#'#n#g" %film%-gbktemp.txt | grep ^/download^/ > subidtemp.txt
sed "s#../../download/##g" subidtemp.txt | sed "$d"> subid.txt
rem 第二步:下载字幕
for /f %%i in (subid.txt) do (
curl -# -o %%i-utf8temp.txt //www.163sub.com/download/%%i -H "referer://www.163sub.com/Searchid=%film%"
iconv.exe -c -f UTF-8 -t GBK %%i-utf8temp.txt > %%i-gbktemp.txt
sed -i "s#'#n#g;s#url=#n#g" %%i-gbktemp.txt
grep http %%i-gbktemp.txt | egrep ".srt|.ass|.smi" >>%film%-subdownloadhelpertemp.txt
)
sort %film%-subdownloadhelpertemp.txt | uniq >%film%-subdownloadhelper.txt
aria2c -i %film%-subdownloadhelper.txt
rem 第三步:重新命名
if exist *.srt ren *.srt %film%-*.srt
if exist *.ass ren *.ass %film%-*.ass
if exist *.smi ren *.smi %film%-*.smi
rem 第四步:清除缓存
del *.
del *temp.*