├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── assets ├── emojis │ ├── clapping-hands-sign.png │ ├── collision-symbol.png │ ├── dizzy-face.png │ ├── face-screaming-in-fear.png │ ├── face-with-tears-of-joy.png │ ├── flexed-biceps.png │ ├── flushed-face.png │ ├── hundred-points-symbol.png │ └── shocked-face-with-exploding-head.png ├── fortnite │ ├── .gitkeep │ ├── game_logo.png │ ├── metadata_config.json │ └── watermark.png ├── leagueOfLegends │ ├── .gitkeep │ ├── game_logo.png │ ├── metadata_config.json │ └── watermark.png ├── overlay_thumbnail.png └── templates │ ├── template_yt.txt │ └── template_yt_title.txt ├── blocklist.json ├── config.py ├── main.py ├── poetry.lock ├── pyproject.toml └── src ├── APIHandler.py ├── Clip.py ├── ClipCompilationCreator.py ├── ClipHandler.py ├── MetadataHandler.py ├── parser.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/README.md -------------------------------------------------------------------------------- /assets/emojis/clapping-hands-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/emojis/clapping-hands-sign.png -------------------------------------------------------------------------------- /assets/emojis/collision-symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/emojis/collision-symbol.png -------------------------------------------------------------------------------- /assets/emojis/dizzy-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/emojis/dizzy-face.png -------------------------------------------------------------------------------- /assets/emojis/face-screaming-in-fear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/emojis/face-screaming-in-fear.png -------------------------------------------------------------------------------- /assets/emojis/face-with-tears-of-joy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/emojis/face-with-tears-of-joy.png -------------------------------------------------------------------------------- /assets/emojis/flexed-biceps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/emojis/flexed-biceps.png -------------------------------------------------------------------------------- /assets/emojis/flushed-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/emojis/flushed-face.png -------------------------------------------------------------------------------- /assets/emojis/hundred-points-symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/emojis/hundred-points-symbol.png -------------------------------------------------------------------------------- /assets/emojis/shocked-face-with-exploding-head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/emojis/shocked-face-with-exploding-head.png -------------------------------------------------------------------------------- /assets/fortnite/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/fortnite/game_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/fortnite/game_logo.png -------------------------------------------------------------------------------- /assets/fortnite/metadata_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/fortnite/metadata_config.json -------------------------------------------------------------------------------- /assets/fortnite/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/fortnite/watermark.png -------------------------------------------------------------------------------- /assets/leagueOfLegends/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/leagueOfLegends/game_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/leagueOfLegends/game_logo.png -------------------------------------------------------------------------------- /assets/leagueOfLegends/metadata_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/leagueOfLegends/metadata_config.json -------------------------------------------------------------------------------- /assets/leagueOfLegends/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/leagueOfLegends/watermark.png -------------------------------------------------------------------------------- /assets/overlay_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/overlay_thumbnail.png -------------------------------------------------------------------------------- /assets/templates/template_yt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/templates/template_yt.txt -------------------------------------------------------------------------------- /assets/templates/template_yt_title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/assets/templates/template_yt_title.txt -------------------------------------------------------------------------------- /blocklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/blocklist.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/config.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/main.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/APIHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/src/APIHandler.py -------------------------------------------------------------------------------- /src/Clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/src/Clip.py -------------------------------------------------------------------------------- /src/ClipCompilationCreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/src/ClipCompilationCreator.py -------------------------------------------------------------------------------- /src/ClipHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/src/ClipHandler.py -------------------------------------------------------------------------------- /src/MetadataHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/src/MetadataHandler.py -------------------------------------------------------------------------------- /src/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/src/parser.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ContentAutomation/TwitchCompilationCreator/HEAD/src/utils.py --------------------------------------------------------------------------------