├── Dockerfile ├── LICENSE ├── README.md ├── compose ├── edition-manager-for-plex-reset │ └── compose.yaml └── edition-manager-for-plex │ └── compose.yaml ├── config └── config.ini ├── edition-manager-for-plex.py ├── emp-all.bat ├── emp-all.command ├── emp-new.bat ├── emp-new.command ├── emp-reset.bat ├── emp-reset.command ├── modules ├── AudioCodec.py ├── Bitrate.py ├── ContentRating.py ├── Country.py ├── Cut.py ├── Duration.py ├── DynamicRange.py ├── FrameRate.py ├── Rating.py ├── Release.py ├── Resolution.py ├── Size.py ├── Source.py └── VideoCodec.py ├── requirements.txt ├── start.sh └── template └── config.ini /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/README.md -------------------------------------------------------------------------------- /compose/edition-manager-for-plex-reset/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/compose/edition-manager-for-plex-reset/compose.yaml -------------------------------------------------------------------------------- /compose/edition-manager-for-plex/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/compose/edition-manager-for-plex/compose.yaml -------------------------------------------------------------------------------- /config/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/config/config.ini -------------------------------------------------------------------------------- /edition-manager-for-plex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/edition-manager-for-plex.py -------------------------------------------------------------------------------- /emp-all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/emp-all.bat -------------------------------------------------------------------------------- /emp-all.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/emp-all.command -------------------------------------------------------------------------------- /emp-new.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/emp-new.bat -------------------------------------------------------------------------------- /emp-new.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/emp-new.command -------------------------------------------------------------------------------- /emp-reset.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/emp-reset.bat -------------------------------------------------------------------------------- /emp-reset.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/emp-reset.command -------------------------------------------------------------------------------- /modules/AudioCodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/AudioCodec.py -------------------------------------------------------------------------------- /modules/Bitrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/Bitrate.py -------------------------------------------------------------------------------- /modules/ContentRating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/ContentRating.py -------------------------------------------------------------------------------- /modules/Country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/Country.py -------------------------------------------------------------------------------- /modules/Cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/Cut.py -------------------------------------------------------------------------------- /modules/Duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/Duration.py -------------------------------------------------------------------------------- /modules/DynamicRange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/DynamicRange.py -------------------------------------------------------------------------------- /modules/FrameRate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/FrameRate.py -------------------------------------------------------------------------------- /modules/Rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/Rating.py -------------------------------------------------------------------------------- /modules/Release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/Release.py -------------------------------------------------------------------------------- /modules/Resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/Resolution.py -------------------------------------------------------------------------------- /modules/Size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/Size.py -------------------------------------------------------------------------------- /modules/Source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/Source.py -------------------------------------------------------------------------------- /modules/VideoCodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/modules/VideoCodec.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | flask 3 | -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/start.sh -------------------------------------------------------------------------------- /template/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x1ao4/edition-manager-for-plex/HEAD/template/config.ini --------------------------------------------------------------------------------