├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── FEATURE-REQUEST.yml │ ├── PLUGIN-REQUEST.yml │ └── config.yml ├── label-actions.yml └── workflows │ └── plugin-repo-gen.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs └── CONTRIBUTING.md └── source ├── custom_ffmpeg_process ├── changelog.txt ├── info.json └── plugin.py ├── example_library_management_file_test ├── changelog.txt ├── info.json └── plugin.py ├── example_postprocessor_file_movement ├── changelog.txt ├── info.json └── plugin.py ├── example_postprocessor_task_results ├── changelog.txt ├── info.json └── plugin.py └── repo.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/PLUGIN-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/.github/ISSUE_TEMPLATE/PLUGIN-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/label-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/.github/label-actions.yml -------------------------------------------------------------------------------- /.github/workflows/plugin-repo-gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/.github/workflows/plugin-repo-gen.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/README.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /source/custom_ffmpeg_process/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/custom_ffmpeg_process/changelog.txt -------------------------------------------------------------------------------- /source/custom_ffmpeg_process/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/custom_ffmpeg_process/info.json -------------------------------------------------------------------------------- /source/custom_ffmpeg_process/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/custom_ffmpeg_process/plugin.py -------------------------------------------------------------------------------- /source/example_library_management_file_test/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/example_library_management_file_test/changelog.txt -------------------------------------------------------------------------------- /source/example_library_management_file_test/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/example_library_management_file_test/info.json -------------------------------------------------------------------------------- /source/example_library_management_file_test/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/example_library_management_file_test/plugin.py -------------------------------------------------------------------------------- /source/example_postprocessor_file_movement/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/example_postprocessor_file_movement/changelog.txt -------------------------------------------------------------------------------- /source/example_postprocessor_file_movement/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/example_postprocessor_file_movement/info.json -------------------------------------------------------------------------------- /source/example_postprocessor_file_movement/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/example_postprocessor_file_movement/plugin.py -------------------------------------------------------------------------------- /source/example_postprocessor_task_results/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/example_postprocessor_task_results/changelog.txt -------------------------------------------------------------------------------- /source/example_postprocessor_task_results/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/example_postprocessor_task_results/info.json -------------------------------------------------------------------------------- /source/example_postprocessor_task_results/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/example_postprocessor_task_results/plugin.py -------------------------------------------------------------------------------- /source/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unmanic/unmanic-plugins/HEAD/source/repo.json --------------------------------------------------------------------------------