22 lines
733 B
Groovy
22 lines
733 B
Groovy
// filebot -script fn:watcher /path/to/folder/ --output /output/folder/ --format <expression>
|
|
|
|
// watch folders and print files that were added/modified
|
|
def watchman = args.watch { changes ->
|
|
// extract all
|
|
if (_args.extract)
|
|
changes += extract(file:changes.findAll{ it.isArchive() }, output:'.')
|
|
|
|
// subtitles for all
|
|
if (_args.getSubtitles)
|
|
changes += getMissingSubtitles(file:changes.findAll{ it.isVideo() }, output:'srt')
|
|
|
|
// rename all
|
|
if (_args.rename)
|
|
rename(file:changes)
|
|
}
|
|
|
|
watchman.commitDelay = 5 * 1000 // default = 5s
|
|
watchman.commitPerFolder = true // default = true
|
|
|
|
println "Waiting for events"
|
|
if (console) { console.readLine() } else { sleep(Long.MAX_VALUE) } // keep running and watch for changes |