├── .gitignore ├── LICENSE ├── README.md ├── amc.groovy ├── artwork.groovy ├── artwork.tmdb.groovy ├── artwork.tvdb.groovy ├── cleaner.groovy ├── configure.groovy ├── dlna.groovy ├── duplicates.groovy ├── explain.groovy ├── history.groovy ├── lib ├── htpc.groovy └── web.groovy ├── logs.groovy ├── mediainfo.groovy ├── mi.groovy ├── miss.groovy ├── nfo.groovy ├── osdb.explain.groovy ├── osdb.stats.groovy ├── preferences.groovy ├── properties.groovy ├── rename.groovy ├── suball.groovy ├── sysenv.groovy ├── sysinfo.groovy ├── tags.groovy ├── update-mes.groovy ├── verify.groovy ├── watcher.groovy ├── xattr.groovy └── zip.groovy /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/README.md -------------------------------------------------------------------------------- /amc.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/amc.groovy -------------------------------------------------------------------------------- /artwork.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/artwork.groovy -------------------------------------------------------------------------------- /artwork.tmdb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/artwork.tmdb.groovy -------------------------------------------------------------------------------- /artwork.tvdb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/artwork.tvdb.groovy -------------------------------------------------------------------------------- /cleaner.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/cleaner.groovy -------------------------------------------------------------------------------- /configure.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/configure.groovy -------------------------------------------------------------------------------- /dlna.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/dlna.groovy -------------------------------------------------------------------------------- /duplicates.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/duplicates.groovy -------------------------------------------------------------------------------- /explain.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/explain.groovy -------------------------------------------------------------------------------- /history.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/history.groovy -------------------------------------------------------------------------------- /lib/htpc.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/lib/htpc.groovy -------------------------------------------------------------------------------- /lib/web.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/lib/web.groovy -------------------------------------------------------------------------------- /logs.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/logs.groovy -------------------------------------------------------------------------------- /mediainfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/mediainfo.groovy -------------------------------------------------------------------------------- /mi.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/mi.groovy -------------------------------------------------------------------------------- /miss.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/miss.groovy -------------------------------------------------------------------------------- /nfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/nfo.groovy -------------------------------------------------------------------------------- /osdb.explain.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/osdb.explain.groovy -------------------------------------------------------------------------------- /osdb.stats.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/osdb.stats.groovy -------------------------------------------------------------------------------- /preferences.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/preferences.groovy -------------------------------------------------------------------------------- /properties.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/properties.groovy -------------------------------------------------------------------------------- /rename.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/rename.groovy -------------------------------------------------------------------------------- /suball.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/suball.groovy -------------------------------------------------------------------------------- /sysenv.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/sysenv.groovy -------------------------------------------------------------------------------- /sysinfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/sysinfo.groovy -------------------------------------------------------------------------------- /tags.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/tags.groovy -------------------------------------------------------------------------------- /update-mes.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/update-mes.groovy -------------------------------------------------------------------------------- /verify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/verify.groovy -------------------------------------------------------------------------------- /watcher.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/watcher.groovy -------------------------------------------------------------------------------- /xattr.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/xattr.groovy -------------------------------------------------------------------------------- /zip.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/scripts/HEAD/zip.groovy --------------------------------------------------------------------------------