etc小号 发表于 3 天前

用cf pages部署了个15000个抖音姐姐的短视频站,附下载地址

<i class="pstatus"> 本帖最后由 etc小号 于 2025-4-17 19:32 编辑 </i><br />
<br />
https://tiktok.999980.xyz/<br />
<br />
短视频链接txt https://tiktok.999980.xyz/index.txt<br />
<br />
批量下载命令如下<br />
<br />
wget -i 接txt<br />
<br />
需要我这个html下滑播放的直接下载html就行

米雪儿 发表于 3 天前

能不能来一个15000个里番视频

坏鸡鸡 发表于 3 天前

<img src="https://hostloc.com/static/image/smiley/default/lol.gif" smilieid="12" border="0" alt="" /><img src="https://hostloc.com/static/image/smiley/default/lol.gif" smilieid="12" border="0" alt="" /><img src="https://hostloc.com/static/image/smiley/default/lol.gif" smilieid="12" border="0" alt="" /><img src="https://hostloc.com/static/image/smiley/default/lol.gif" smilieid="12" border="0" alt="" />正在下载,你娃这样搞 CF ,小心封号

xyou 发表于 3 天前

移动网络有的打不开<img src="https://hostloc.com/static/image/smiley/default/cry.gif" smilieid="4" border="0" alt="" />&nbsp;&nbsp;我用wifi就打不开,移动网络可以

happy61 发表于 3 天前

cf pages 能储存那么多视频?<br />

etc小号 发表于 3 天前

<div class="quote"><blockquote><font size="2"><a href="https://hostloc.com/forum.php?mod=redirect&goto=findpost&pid=16335967&ptid=1403586" target="_blank"><font color="#999999">happy61 发表于 2025-4-17 20:24</font></a></font><br />
cf pages 能储存那么多视频?</blockquote></div><br />
可以的,前面帖子有教程,不过每个最大25m,超过要切片

我不是你的 发表于 3 天前

每天10万次访问限制 ?

etc小号 发表于 3 天前

<div class="quote"><blockquote><font size="2"><a href="https://hostloc.com/forum.php?mod=redirect&goto=findpost&pid=16336007&ptid=1403586" target="_blank"><font color="#999999">我不是你的 发表于 2025-4-17 20:54</font></a></font><br />
每天10万次访问限制 ?</blockquote></div><br />
pages没有这个限制

我不是你的 发表于 3 天前

window CMD命令 配合IDM批量添加下载<br />
保存为bat,把下载链接保存到txt文件,跟bat放在一个目录(建议不要用中文)。<br /><div class="blockcode"><div id="code_yi3"><ol><li>@echo off<br /><li>chcp 65001 &gt;nul<br /><li>setlocal enabledelayedexpansion<br /><li><br /><li>:: 设置IDM路径<br /><li>set &quot;IDM_PATH=C:\Program Files (x86)\Internet Download Manager\IDMan.exe&quot;<br /><li><br /><li>:: 检查IDM路径是否存在<br /><li>if not exist &quot;%IDM_PATH%&quot; (<br /><li>&nbsp; &nbsp; echo 错误: 找不到IDM路径,请检查IDM是否安装并更新IDM_PATH变量。<br /><li>&nbsp; &nbsp; pause<br /><li>&nbsp; &nbsp; exit /b<br /><li>)<br /><li><br /><li>:: 检查IDM是否运行,未运行则启动<br /><li>tasklist /fi &quot;imagename eq IDMan.exe&quot; | find /i &quot;IDMan.exe&quot; &gt;nul<br /><li>if errorlevel 1 (<br /><li>&nbsp; &nbsp; echo 检测到IDM未运行,正在启动IDM...<br /><li>&nbsp; &nbsp; start &quot;&quot; &quot;%IDM_PATH%&quot;<br /><li>&nbsp; &nbsp; timeout /t 3 &gt;nul<br /><li>)<br /><li><br /><li>:: 遍历当前目录下所有TXT文件<br /><li>for %%f in (*.txt) do (<br /><li>&nbsp; &nbsp; :: 获取TXT文件的文件名(不带扩展名)作为文件夹名称<br /><li>&nbsp; &nbsp; set &quot;LINK_FILE=%%~nf&quot;<br /><li>&nbsp; &nbsp; set &quot;FOLDER_NAME=!LINK_FILE!&quot;<br /><li><br /><li>&nbsp; &nbsp; :: 删除&quot;_MediaURLs&quot;字符串<br /><li>&nbsp; &nbsp; set &quot;FOLDER_NAME=!FOLDER_NAME:_MediaURLs=!&quot;<br /><li><br /><li>&nbsp; &nbsp; :: 创建文件夹,如果已存在则跳过<br /><li>&nbsp; &nbsp; if not exist &quot;!FOLDER_NAME!&quot; (<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;mkdir &quot;!FOLDER_NAME!&quot;<br /><li>&nbsp; &nbsp; )<br /><li><br /><li>&nbsp; &nbsp; :: 读取当前TXT文件中的每一行链接,并使用IDM下载到相应的文件夹<br /><li>&nbsp; &nbsp; for /f &quot;usebackq tokens=*&quot; %%i in (&quot;%%f&quot;) do (<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;:: 设置当前链接URL<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;set &quot;URL=%%i&quot;<br /><li><br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;:: 检查链接是否为空,若为空则跳过<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;if not &quot;!URL!&quot;==&quot;&quot; (<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;:: 从URL中提取文件名并替换空格为下划线<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;for %%j in (&quot;%%~nxi&quot;) do (<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; set &quot;FILE_NAME=%%~nxj&quot;<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; set &quot;FILE_NAME=!FILE_NAME: =_!&quot;&nbsp;&nbsp;:: 将空格替换为下划线<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;)<br /><li><br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&quot;%IDM_PATH%&quot; /d &quot;!URL!&quot; /p &quot;%cd%\!FOLDER_NAME!&quot; /f &quot;!FILE_NAME!&quot; /n /a /s<br /><li>&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;)<br /><li>&nbsp; &nbsp; )<br /><li><br /><li>&nbsp; &nbsp; echo 已添加下载任务:%%f 中的所有链接到文件夹 &quot;!FOLDER_NAME!&quot; 并已开始下载。<br /><li><br /><li>&nbsp; &nbsp; :: 删除当前已完成的TXT文件<br /><li>&nbsp; &nbsp; del &quot;%%f&quot;<br /><li>)<br /><li><br /><li>:: 提示下载任务已完成<br /><li>echo 所有TXT文件的下载任务已全部添加到IDM并已开始下载。<br /><li>pause</ol></div><em onclick="copycode($('code_yi3'));">复制代码</em></div>

alaskawolf 发表于 3 天前

<div class="quote"><blockquote><font size="2"><a href="https://hostloc.com/forum.php?mod=redirect&goto=findpost&pid=16336014&ptid=1403586" target="_blank"><font color="#999999">我不是你的 发表于 2025-4-17 21:05</font></a></font><br />
window CMD命令 配合IDM批量添加下载<br />
保存为bat,把下载链接保存到txt文件,跟bat放在一个目录(建议不要用 ...</blockquote></div><br />
如果用IDM下载,用不着这样麻烦<br />
直接让他下载txt就行了,程序里面导入<div class="quote"><blockquote><font size="2"><a href="https://hostloc.com/forum.php?mod=redirect&goto=findpost&pid=16336018&ptid=1403586" target="_blank"><font color="#999999">坏鸡鸡 发表于 2025-4-17 21:08</font></a></font><br />
如果用IDM下载,用不着这样麻烦<br />
直接让他下载txt就行了,程序里面导入</blockquote></div><br />
<br />
我平时扒图站用的,每次几百个txt,手动太繁琐。<br />
<br />
没发现我图站最近又更新不少吗<img src="https://hostloc.com/static/image/smiley/default/lol.gif" smilieid="12" border="0" alt="" />
页: [1] 2
查看完整版本: 用cf pages部署了个15000个抖音姐姐的短视频站,附下载地址