├── Edition Manager GUI.md ├── Edition Manager Modules.md ├── LICENSE ├── README.md ├── assets ├── icon.png └── messages.txt ├── config └── config.ini ├── edition_manager.py ├── edition_manager_gui.py ├── edition_manager_gui.pyw ├── edition_manager_gui.sh ├── modules ├── AudioChannels.py ├── AudioCodec.py ├── Bitrate.py ├── ContentRating.py ├── Country.py ├── Cut.py ├── Director.py ├── Duration.py ├── DynamicRange.py ├── FrameRate.py ├── Genre.py ├── Language.py ├── Rating.py ├── Release.py ├── Resolution.py ├── ShortFilm.py ├── Size.py ├── Source.py ├── SpecialFeatures.py ├── Studio.py ├── VideoCodec.py └── Writer.py ├── requirements.txt └── webhook_server.py /Edition Manager GUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/Edition Manager GUI.md -------------------------------------------------------------------------------- /Edition Manager Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/Edition Manager Modules.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/messages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/assets/messages.txt -------------------------------------------------------------------------------- /config/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/config/config.ini -------------------------------------------------------------------------------- /edition_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/edition_manager.py -------------------------------------------------------------------------------- /edition_manager_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/edition_manager_gui.py -------------------------------------------------------------------------------- /edition_manager_gui.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/edition_manager_gui.pyw -------------------------------------------------------------------------------- /edition_manager_gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/edition_manager_gui.sh -------------------------------------------------------------------------------- /modules/AudioChannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/AudioChannels.py -------------------------------------------------------------------------------- /modules/AudioCodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/AudioCodec.py -------------------------------------------------------------------------------- /modules/Bitrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Bitrate.py -------------------------------------------------------------------------------- /modules/ContentRating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/ContentRating.py -------------------------------------------------------------------------------- /modules/Country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Country.py -------------------------------------------------------------------------------- /modules/Cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Cut.py -------------------------------------------------------------------------------- /modules/Director.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Director.py -------------------------------------------------------------------------------- /modules/Duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Duration.py -------------------------------------------------------------------------------- /modules/DynamicRange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/DynamicRange.py -------------------------------------------------------------------------------- /modules/FrameRate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/FrameRate.py -------------------------------------------------------------------------------- /modules/Genre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Genre.py -------------------------------------------------------------------------------- /modules/Language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Language.py -------------------------------------------------------------------------------- /modules/Rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Rating.py -------------------------------------------------------------------------------- /modules/Release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Release.py -------------------------------------------------------------------------------- /modules/Resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Resolution.py -------------------------------------------------------------------------------- /modules/ShortFilm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/ShortFilm.py -------------------------------------------------------------------------------- /modules/Size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Size.py -------------------------------------------------------------------------------- /modules/Source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Source.py -------------------------------------------------------------------------------- /modules/SpecialFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/SpecialFeatures.py -------------------------------------------------------------------------------- /modules/Studio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Studio.py -------------------------------------------------------------------------------- /modules/VideoCodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/VideoCodec.py -------------------------------------------------------------------------------- /modules/Writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/modules/Writer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | PySide6 3 | flask 4 | waitress -------------------------------------------------------------------------------- /webhook_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Entree3k/Edition-Manager/HEAD/webhook_server.py --------------------------------------------------------------------------------