gitextract_1pn0lxmc/ ├── .dockerignore ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── codeql-analysis.yml │ ├── fmt.yml │ ├── lint.yml │ └── stale.yml ├── .gitignore ├── .pylintrc ├── .python-version ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── GUI/ │ ├── backgrounds.html │ ├── index.html │ ├── layout.html │ └── settings.html ├── GUI.py ├── LICENSE ├── README.md ├── TTS/ │ ├── GTTS.py │ ├── TikTok.py │ ├── __init__.py │ ├── aws_polly.py │ ├── elevenlabs.py │ ├── engine_wrapper.py │ ├── openai_tts.py │ ├── pyttsx.py │ └── streamlabs_polly.py ├── build.sh ├── fonts/ │ └── LICENSE.txt ├── install.sh ├── main.py ├── ptt.py ├── reddit/ │ └── subreddit.py ├── requirements.txt ├── run.bat ├── run.sh ├── utils/ │ ├── .config.template.toml │ ├── __init__.py │ ├── ai_methods.py │ ├── background_audios.json │ ├── background_videos.json │ ├── cleanup.py │ ├── console.py │ ├── ffmpeg_install.py │ ├── fonts.py │ ├── gui_utils.py │ ├── id.py │ ├── imagenarator.py │ ├── playwright.py │ ├── posttextparser.py │ ├── settings.py │ ├── subreddit.py │ ├── thumbnail.py │ ├── version.py │ ├── videos.py │ └── voice.py └── video_creation/ ├── __init__.py ├── background.py ├── data/ │ ├── cookie-dark-mode.json │ └── cookie-light-mode.json ├── final_video.py ├── screenshot_downloader.py └── voices.py