filebot/website/data/shell/src.groovy

11 lines
285 B
Groovy
Raw Normal View History

// filebot -script "http://filebot.sourceforge.net/data/shell/src.groovy" <folder>
2011-11-05 00:29:59 +00:00
/*
* Fetch subtitles, rename and calculate checksums for all video files
*/
args.eachMediaFolder {
getSubtitles(folder:it)
rename(folder:it)
compute(file:it.listFiles().findAll{ it.isVideo() })
}