1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-11 11:55:03 -05:00
filebot/website/data/shell/src.groovy

11 lines
292 B
Groovy
Raw Normal View History

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