autosub icon indicating copy to clipboard operation
autosub copied to clipboard

How to do with multiple videos file in a batch or treat with a fold which includes many video files?

Open tableaumichael opened this issue 6 years ago • 2 comments

How to do with multiple videos file in a batch or treat with a fold which includes many video files?

tableaumichael avatar Nov 11 '18 18:11 tableaumichael

you can just write a loop to iterate through all files

superives avatar Mar 12 '19 17:03 superives

@echo on
for /f "delims=^" %%i in ('dir /b ') do (
    autosub -S xxx -D xxx "%%i"
)
@echo off

reference: dir | Microsoft Docs

You can install my version of autosub to add it to system path. (just like a normal python package install

BingLingGroup avatar Mar 15 '19 04:03 BingLingGroup