* added more example filebot "shell" scripts
This commit is contained in:
parent
6b8e47d531
commit
66e0789320
|
@ -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)
|
||||
}
|
|
@ -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.*
|
||||
|
||||
|
|
|
@ -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)
|
||||
}
|
Loading…
Reference in New Issue