2011-12-27 13:54:25 -05:00
|
|
|
// filebot -script "http://filebot.sf.net/scripts/src.groovy" <folder>
|
2011-10-30 01:02:54 -04:00
|
|
|
|
2011-11-04 20:29:59 -04:00
|
|
|
/*
|
|
|
|
* Fetch subtitles, rename and calculate checksums for all video files
|
|
|
|
*/
|
2011-10-29 16:24:01 -04:00
|
|
|
args.eachMediaFolder {
|
2012-01-05 00:30:22 -05:00
|
|
|
|
2011-11-28 08:44:00 -05:00
|
|
|
getMissingSubtitles(folder:it)
|
2012-01-05 00:30:22 -05:00
|
|
|
|
2011-11-29 04:00:18 -05:00
|
|
|
def renamedFiles = rename(folder:it)
|
2012-01-05 00:30:22 -05:00
|
|
|
|
2011-11-29 04:00:18 -05:00
|
|
|
compute(file:renamedFiles.findAll{ it.isVideo() })
|
2011-10-29 16:24:01 -04:00
|
|
|
}
|