mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 03:45:06 -05:00
9 lines
206 B
Groovy
9 lines
206 B
Groovy
// filebot -script "http://filebot.sourceforge.net/data/shell/suball.groovy" <options> <folder>
|
|
|
|
/*
|
|
* Get subtitles for all your media files
|
|
*/
|
|
args.eachMediaFolder {
|
|
getMissingSubtitles(folder:it)
|
|
}
|