我这是被封禁了吗 #433
sy10163com
started this conversation in
General
我这是被封禁了吗
#433
Replies: 1 comment
-
如果你用网页也打不开视频的话应该是被封禁了,如果是这样的话你可以向客服申请。也许可以解决 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
我写了一个脚本每半小时刷新一次列表里up主是否有新视频,有的话就下载,现在无法根据up空间地址识别其视频地址了,是我频率太高被封禁了?计划任务每半小时执行一次
For /F %%a in (list.txt) Do (
BBDown.exe "%%a")
dir /b *的投稿视频.txt > name.txt
For /F %%b in (name.txt) Do (
set name=%%b
set name=!name:的投稿视频.txt=!
md !name!
set new=%%b
findstr /v /g:!name!!new! !new! > new.txt
if %errorlevel% == 0 (
move !new! !name!
move new.txt !name!
cd !name!
For /F %%c in (new.txt) Do (
BBDown.exe "%%c")
del new.txt
cd ..
) else (
del !new!
)
)
Beta Was this translation helpful? Give feedback.
All reactions