1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* added more example filebot "shell" scripts

This commit is contained in:
Reinhard Pointner 2011-11-02 12:21:09 +00:00
parent 6b8e47d531
commit 66e0789320
3 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,8 @@
// filebot -script "http://filebot.sourceforge.net/data/shell/renall.groovy" <options> <folder>
/*
* Rename all tv shows, anime or movies using given or default options
*/
args.eachMediaFolder {
rename(folder:it)
}

View File

@ -1,4 +1,4 @@
// filebot -script "http://filebot.sourceforge.net/data/shell/rsam.groovy" <folder>
// filebot -script "http://filebot.sourceforge.net/data/shell/rsam.groovy" <options> <folder>
import net.sourceforge.filebot.similarity.*

View File

@ -0,0 +1,8 @@
// filebot -script "http://filebot.sourceforge.net/data/shell/suball.groovy" <options> <folder>
/*
* Get subtitles for all your media files
*/
args.eachMediaFolder {
getSubtitles(folder:it)
}