-
-
Notifications
You must be signed in to change notification settings - Fork 283
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run multiple inputs at once #144
Comments
Hi there! This is actually supported currently, but it's not ideal from an interface perspective. You can run
and it will sync all 3 srt's to the reference, overwriting them in the process. It would be nice if there were a way to do this without overwriting though, e.g. if we had a way to specify a common suffix like |
@cyzs233 not sure how it would look on Windows, but you can do a command substitution to put all the stuff in the text file on the command line, something like this:
Definitely don't take my word for it but a few searches suggest the equivalent windows command would be something like
References: |
It works!!! Thank you so much, you're a lifesaver.❤
|
@cyzs233 usually this is done by globbing, for example, on linux
this will process all files in the folder this should be similar on windows, maybe
|
just wanted to know if i can run this in a folder with multiple video and sub files |
There are situations where I need to synchronize multiple subtitle files from a single reference. This process ends up being I/O intensive as
ffmpeg
reads the entire reference file on everyffsubsync
call for every subtitle file I want to synchronize. In order to save time, it would be great to allowffsubsync
to synchronize multiple files at once.The text was updated successfully, but these errors were encountered: