mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 03:45:06 -05:00
11 lines
285 B
Groovy
11 lines
285 B
Groovy
// filebot -script "http://filebot.sourceforge.net/data/shell/src.groovy" <folder>
|
|
|
|
/*
|
|
* 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() })
|
|
}
|