├── .github └── workflows │ └── winget.yml ├── .gitignore ├── LICENSE ├── README.md ├── automator ├── Library │ ├── Services │ │ ├── Import Media Files with FileBot.workflow │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── Resources │ │ │ │ └── workflowCustomImage.icns │ │ │ │ └── document.wflow │ │ ├── Rename with FileBot.workflow │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── Resources │ │ │ │ └── workflowCustomImage.icns │ │ │ │ └── document.wflow │ │ └── Send to FileBot.workflow │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── Resources │ │ │ └── workflowCustomImage.icns │ │ │ └── document.wflow │ └── Workflows │ │ └── Applications │ │ └── Folder Actions │ │ └── Import Media Files with FileBot.workflow │ │ └── Contents │ │ ├── Info.plist │ │ └── document.wflow └── makefile ├── bash ├── amc.sh ├── debug.sh ├── deluge-postprocess.sh ├── filebot-debug.sh ├── find-episode-metadata-changes.sh ├── find-movie-metadata-changes.sh ├── jdownloader-postprocess.sh ├── nzbget-postprocess.sh ├── remote-command-postprocess.sh ├── rename-absolute-to-s00e00.sh ├── rename-anidb-to-tvdb.sh ├── rename-multi-episode-cartoon.sh ├── rtorrent-postprocess.sh ├── sabnzbd-postprocess.sh ├── send-discord-log.sh ├── send-email-log.sh └── transmission-postprocess.sh ├── brew └── README.md ├── cmd ├── amc.cmd ├── jdownloader-postprocess.cmd ├── qbt-postprocess.cmd ├── sabnzbd-postprocess.cmd └── utorrent-postprocess.cmd ├── completion └── bash_completion.d │ └── filebot ├── gpg └── maintainer.pub ├── installer ├── app.sh ├── deb.sh ├── pkg.sh ├── rpm.sh ├── tar-jdk8.sh └── tar.sh ├── jdownloader ├── ArchiveExtracted.RCE.js ├── ArchiveExtracted.js ├── PackageFinished.RCE.js ├── PackageFinished.js └── org.jdownloader.extensions.eventscripter.EventScripterExtension.scripts.json ├── scoop └── README.md ├── unraid ├── filebot-node.xml ├── filebot-projector.xml ├── filebot-watcher.xml └── filebot-xpra.xml ├── utorrent ├── runw.pyw └── utorrent-postprocess.pyw ├── watcher ├── README.md ├── filebot-watcher.ps1 └── filebot-watcher.sh ├── windows ├── add-context-menu.reg ├── add-long-paths-enabled.reg ├── remove-context-menu.reg ├── remove-java-preferences.reg └── remove-long-paths-enabled.reg ├── winget ├── README.md └── make.ps1 └── yum └── main.repo /.github/workflows/winget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/.github/workflows/winget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/README.md -------------------------------------------------------------------------------- /automator/Library/Services/Import Media Files with FileBot.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/automator/Library/Services/Import Media Files with FileBot.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /automator/Library/Services/Import Media Files with FileBot.workflow/Contents/Resources/workflowCustomImage.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/automator/Library/Services/Import Media Files with FileBot.workflow/Contents/Resources/workflowCustomImage.icns -------------------------------------------------------------------------------- /automator/Library/Services/Import Media Files with FileBot.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/automator/Library/Services/Import Media Files with FileBot.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /automator/Library/Services/Rename with FileBot.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/automator/Library/Services/Rename with FileBot.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /automator/Library/Services/Rename with FileBot.workflow/Contents/Resources/workflowCustomImage.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/automator/Library/Services/Rename with FileBot.workflow/Contents/Resources/workflowCustomImage.icns -------------------------------------------------------------------------------- /automator/Library/Services/Rename with FileBot.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/automator/Library/Services/Rename with FileBot.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /automator/Library/Services/Send to FileBot.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/automator/Library/Services/Send to FileBot.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /automator/Library/Services/Send to FileBot.workflow/Contents/Resources/workflowCustomImage.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/automator/Library/Services/Send to FileBot.workflow/Contents/Resources/workflowCustomImage.icns -------------------------------------------------------------------------------- /automator/Library/Services/Send to FileBot.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/automator/Library/Services/Send to FileBot.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /automator/Library/Workflows/Applications/Folder Actions/Import Media Files with FileBot.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/automator/Library/Workflows/Applications/Folder Actions/Import Media Files with FileBot.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /automator/Library/Workflows/Applications/Folder Actions/Import Media Files with FileBot.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/automator/Library/Workflows/Applications/Folder Actions/Import Media Files with FileBot.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /automator/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/automator/makefile -------------------------------------------------------------------------------- /bash/amc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/amc.sh -------------------------------------------------------------------------------- /bash/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/debug.sh -------------------------------------------------------------------------------- /bash/deluge-postprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/deluge-postprocess.sh -------------------------------------------------------------------------------- /bash/filebot-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/filebot-debug.sh -------------------------------------------------------------------------------- /bash/find-episode-metadata-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/find-episode-metadata-changes.sh -------------------------------------------------------------------------------- /bash/find-movie-metadata-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/find-movie-metadata-changes.sh -------------------------------------------------------------------------------- /bash/jdownloader-postprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/jdownloader-postprocess.sh -------------------------------------------------------------------------------- /bash/nzbget-postprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/nzbget-postprocess.sh -------------------------------------------------------------------------------- /bash/remote-command-postprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/remote-command-postprocess.sh -------------------------------------------------------------------------------- /bash/rename-absolute-to-s00e00.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/rename-absolute-to-s00e00.sh -------------------------------------------------------------------------------- /bash/rename-anidb-to-tvdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/rename-anidb-to-tvdb.sh -------------------------------------------------------------------------------- /bash/rename-multi-episode-cartoon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/rename-multi-episode-cartoon.sh -------------------------------------------------------------------------------- /bash/rtorrent-postprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/rtorrent-postprocess.sh -------------------------------------------------------------------------------- /bash/sabnzbd-postprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/sabnzbd-postprocess.sh -------------------------------------------------------------------------------- /bash/send-discord-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/send-discord-log.sh -------------------------------------------------------------------------------- /bash/send-email-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/send-email-log.sh -------------------------------------------------------------------------------- /bash/transmission-postprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/bash/transmission-postprocess.sh -------------------------------------------------------------------------------- /brew/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/brew/README.md -------------------------------------------------------------------------------- /cmd/amc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/cmd/amc.cmd -------------------------------------------------------------------------------- /cmd/jdownloader-postprocess.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/cmd/jdownloader-postprocess.cmd -------------------------------------------------------------------------------- /cmd/qbt-postprocess.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/cmd/qbt-postprocess.cmd -------------------------------------------------------------------------------- /cmd/sabnzbd-postprocess.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/cmd/sabnzbd-postprocess.cmd -------------------------------------------------------------------------------- /cmd/utorrent-postprocess.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/cmd/utorrent-postprocess.cmd -------------------------------------------------------------------------------- /completion/bash_completion.d/filebot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/completion/bash_completion.d/filebot -------------------------------------------------------------------------------- /gpg/maintainer.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/gpg/maintainer.pub -------------------------------------------------------------------------------- /installer/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/installer/app.sh -------------------------------------------------------------------------------- /installer/deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/installer/deb.sh -------------------------------------------------------------------------------- /installer/pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/installer/pkg.sh -------------------------------------------------------------------------------- /installer/rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/installer/rpm.sh -------------------------------------------------------------------------------- /installer/tar-jdk8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/installer/tar-jdk8.sh -------------------------------------------------------------------------------- /installer/tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/installer/tar.sh -------------------------------------------------------------------------------- /jdownloader/ArchiveExtracted.RCE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/jdownloader/ArchiveExtracted.RCE.js -------------------------------------------------------------------------------- /jdownloader/ArchiveExtracted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/jdownloader/ArchiveExtracted.js -------------------------------------------------------------------------------- /jdownloader/PackageFinished.RCE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/jdownloader/PackageFinished.RCE.js -------------------------------------------------------------------------------- /jdownloader/PackageFinished.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/jdownloader/PackageFinished.js -------------------------------------------------------------------------------- /jdownloader/org.jdownloader.extensions.eventscripter.EventScripterExtension.scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/jdownloader/org.jdownloader.extensions.eventscripter.EventScripterExtension.scripts.json -------------------------------------------------------------------------------- /scoop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/scoop/README.md -------------------------------------------------------------------------------- /unraid/filebot-node.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/unraid/filebot-node.xml -------------------------------------------------------------------------------- /unraid/filebot-projector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/unraid/filebot-projector.xml -------------------------------------------------------------------------------- /unraid/filebot-watcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/unraid/filebot-watcher.xml -------------------------------------------------------------------------------- /unraid/filebot-xpra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/unraid/filebot-xpra.xml -------------------------------------------------------------------------------- /utorrent/runw.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/utorrent/runw.pyw -------------------------------------------------------------------------------- /utorrent/utorrent-postprocess.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/utorrent/utorrent-postprocess.pyw -------------------------------------------------------------------------------- /watcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/watcher/README.md -------------------------------------------------------------------------------- /watcher/filebot-watcher.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/watcher/filebot-watcher.ps1 -------------------------------------------------------------------------------- /watcher/filebot-watcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/watcher/filebot-watcher.sh -------------------------------------------------------------------------------- /windows/add-context-menu.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/windows/add-context-menu.reg -------------------------------------------------------------------------------- /windows/add-long-paths-enabled.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/windows/add-long-paths-enabled.reg -------------------------------------------------------------------------------- /windows/remove-context-menu.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/windows/remove-context-menu.reg -------------------------------------------------------------------------------- /windows/remove-java-preferences.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/windows/remove-java-preferences.reg -------------------------------------------------------------------------------- /windows/remove-long-paths-enabled.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/windows/remove-long-paths-enabled.reg -------------------------------------------------------------------------------- /winget/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/winget/README.md -------------------------------------------------------------------------------- /winget/make.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/winget/make.ps1 -------------------------------------------------------------------------------- /yum/main.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filebot/plugins/HEAD/yum/main.repo --------------------------------------------------------------------------------