mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-05 08:55:08 -05:00
14 lines
303 B
Groovy
14 lines
303 B
Groovy
// filebot -script "http://filebot.sf.net/scripts/src.groovy" <folder>
|
|
|
|
/*
|
|
* Fetch subtitles, rename and calculate checksums for all video files
|
|
*/
|
|
args.eachMediaFolder {
|
|
|
|
getMissingSubtitles(folder:it)
|
|
|
|
def renamedFiles = rename(folder:it)
|
|
|
|
compute(file:renamedFiles.findAll{ it.isVideo() })
|
|
}
|