mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-10 06:20:27 -04:00
9 lines
158 B
Groovy
9 lines
158 B
Groovy
// filebot -script fn:suball <options> <folder>
|
|
|
|
/*
|
|
* Get subtitles for all your media files
|
|
*/
|
|
args.eachMediaFolder {
|
|
getMissingSubtitles(folder:it)
|
|
}
|