『第 3 楼』:
 
 
使用 LLM 解释/回答一下
  
求人不如求己,自己搞定了 
@echo off 
setlocal EnableDelayedExpansion 
 
 
::此处填入地址. 
set addpath=E:\下载文件夹\BT下载 
 
::此处填入FPS. 
set fpss=25 
 
::此处填入步进的末尾. 
set fg=13 
 
cls 
 
if /i %fg% GTR 9 goto up 
goto low 
 
:up 
 
for /L %%i in (1,1,9) do @echo video =DirectShowSource("%addpath%\0%%i.000",fps=%fpss%)>"0"%%~ni".avs" 
for /L %%i in (1,1,9) do @echo return GetRightChannel(video)>>"0"%%~ni".avs" 
for /L %%i in (10,1,%fg%) do @echo video =DirectShowSource("%addpath%\%%i.000",fps=%fpss%)>%%~ni".avs" 
for /L %%i in (10,1,%fg%) do @echo return GetRightChannel(video)>>%%~ni".avs" 
goto :eof 
 
 
:low 
 
for /L %%i in (1,1,%fg%) do @echo video =DirectShowSource("%addpath%\%%i.000",fps=%fpss%)>%%~ni".avs" 
for /L %%i in (1,1,%fg%) do @echo return GetRightChannel(video)>>%%~ni".avs" 
goto :eof 
 
    
 
  
 |