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)
|
|
}
|