├── .gitignore ├── LICENSE ├── README.md ├── YouTube Bot Server ├── database.py ├── initserver.py ├── reddit.py ├── settings.py ├── socketserverhandler.py ├── socketservervideogenerator.py └── startserver.bat ├── Youtube Bot Client ├── Assets │ ├── Verdana.ttf │ ├── askredditlogo.png │ ├── chatwhite.png │ ├── upvoteorange.png │ ├── upvotewhiteflipped.png │ ├── upvotewhitethumbnail.png │ └── verdanab.ttf ├── UI │ ├── login.ui │ ├── rawscripts.ui │ ├── scripteditor.ui │ ├── videoeditor.ui │ └── videotypeeditor.ui ├── VideoTypes │ ├── __pycache__ │ │ ├── imageframe.cpython-37.pyc │ │ ├── standardredditformat.cpython-37.pyc │ │ └── videoformat.cpython-37.pyc │ ├── imageframe.py │ ├── standardredditformat.py │ └── videoformat.py ├── bannedwords.csv ├── client.py ├── database.py ├── description.txt ├── init.py ├── keywordgenerator.py ├── publishmenu.py ├── rawscriptsmenu.py ├── reddit.py ├── scripteditor.py ├── settings.py ├── socketserverhandler.py ├── startclient.bat ├── tags.txt ├── videoscriptcore.py └── videosettings.py ├── Youtube Bot Video Generator ├── Assets │ ├── Intervals │ │ └── standard.mp4 │ ├── Music │ │ ├── Funny │ │ │ └── mp3s go here!!! (delete me).txt │ │ ├── Sad │ │ │ └── mp3s go here!!.txt │ │ └── Soothing │ │ │ └── mp3s go here!!.txt │ ├── Verdana.ttf │ ├── upvoteorange.png │ ├── upvotewhiteflipped.png │ └── verdanab.ttf ├── VideoTypes │ ├── __pycache__ │ │ ├── imageframe.cpython-37.pyc │ │ ├── standardredditformat.cpython-37.pyc │ │ └── videoformat.cpython-37.pyc │ ├── imageframe.py │ ├── standardredditformat.py │ └── videoformat.py ├── generatemovie.py ├── generatorclient.py ├── settings.py ├── standardtags.txt ├── startvideo.bat ├── videoscript.py ├── videouploader.py └── youtubequeue.py ├── dependencies.txt └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/README.md -------------------------------------------------------------------------------- /YouTube Bot Server/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/YouTube Bot Server/database.py -------------------------------------------------------------------------------- /YouTube Bot Server/initserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/YouTube Bot Server/initserver.py -------------------------------------------------------------------------------- /YouTube Bot Server/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/YouTube Bot Server/reddit.py -------------------------------------------------------------------------------- /YouTube Bot Server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/YouTube Bot Server/settings.py -------------------------------------------------------------------------------- /YouTube Bot Server/socketserverhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/YouTube Bot Server/socketserverhandler.py -------------------------------------------------------------------------------- /YouTube Bot Server/socketservervideogenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/YouTube Bot Server/socketservervideogenerator.py -------------------------------------------------------------------------------- /YouTube Bot Server/startserver.bat: -------------------------------------------------------------------------------- 1 | python3 initserver.py 2 | pause -------------------------------------------------------------------------------- /Youtube Bot Client/Assets/Verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/Assets/Verdana.ttf -------------------------------------------------------------------------------- /Youtube Bot Client/Assets/askredditlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/Assets/askredditlogo.png -------------------------------------------------------------------------------- /Youtube Bot Client/Assets/chatwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/Assets/chatwhite.png -------------------------------------------------------------------------------- /Youtube Bot Client/Assets/upvoteorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/Assets/upvoteorange.png -------------------------------------------------------------------------------- /Youtube Bot Client/Assets/upvotewhiteflipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/Assets/upvotewhiteflipped.png -------------------------------------------------------------------------------- /Youtube Bot Client/Assets/upvotewhitethumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/Assets/upvotewhitethumbnail.png -------------------------------------------------------------------------------- /Youtube Bot Client/Assets/verdanab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/Assets/verdanab.ttf -------------------------------------------------------------------------------- /Youtube Bot Client/UI/login.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/UI/login.ui -------------------------------------------------------------------------------- /Youtube Bot Client/UI/rawscripts.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/UI/rawscripts.ui -------------------------------------------------------------------------------- /Youtube Bot Client/UI/scripteditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/UI/scripteditor.ui -------------------------------------------------------------------------------- /Youtube Bot Client/UI/videoeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/UI/videoeditor.ui -------------------------------------------------------------------------------- /Youtube Bot Client/UI/videotypeeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/UI/videotypeeditor.ui -------------------------------------------------------------------------------- /Youtube Bot Client/VideoTypes/__pycache__/imageframe.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/VideoTypes/__pycache__/imageframe.cpython-37.pyc -------------------------------------------------------------------------------- /Youtube Bot Client/VideoTypes/__pycache__/standardredditformat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/VideoTypes/__pycache__/standardredditformat.cpython-37.pyc -------------------------------------------------------------------------------- /Youtube Bot Client/VideoTypes/__pycache__/videoformat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/VideoTypes/__pycache__/videoformat.cpython-37.pyc -------------------------------------------------------------------------------- /Youtube Bot Client/VideoTypes/imageframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/VideoTypes/imageframe.py -------------------------------------------------------------------------------- /Youtube Bot Client/VideoTypes/standardredditformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/VideoTypes/standardredditformat.py -------------------------------------------------------------------------------- /Youtube Bot Client/VideoTypes/videoformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/VideoTypes/videoformat.py -------------------------------------------------------------------------------- /Youtube Bot Client/bannedwords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/bannedwords.csv -------------------------------------------------------------------------------- /Youtube Bot Client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/client.py -------------------------------------------------------------------------------- /Youtube Bot Client/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/database.py -------------------------------------------------------------------------------- /Youtube Bot Client/description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/description.txt -------------------------------------------------------------------------------- /Youtube Bot Client/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/init.py -------------------------------------------------------------------------------- /Youtube Bot Client/keywordgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/keywordgenerator.py -------------------------------------------------------------------------------- /Youtube Bot Client/publishmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/publishmenu.py -------------------------------------------------------------------------------- /Youtube Bot Client/rawscriptsmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/rawscriptsmenu.py -------------------------------------------------------------------------------- /Youtube Bot Client/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/reddit.py -------------------------------------------------------------------------------- /Youtube Bot Client/scripteditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/scripteditor.py -------------------------------------------------------------------------------- /Youtube Bot Client/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/settings.py -------------------------------------------------------------------------------- /Youtube Bot Client/socketserverhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/socketserverhandler.py -------------------------------------------------------------------------------- /Youtube Bot Client/startclient.bat: -------------------------------------------------------------------------------- 1 | python3 init.py 2 | pause -------------------------------------------------------------------------------- /Youtube Bot Client/tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/tags.txt -------------------------------------------------------------------------------- /Youtube Bot Client/videoscriptcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/videoscriptcore.py -------------------------------------------------------------------------------- /Youtube Bot Client/videosettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Client/videosettings.py -------------------------------------------------------------------------------- /Youtube Bot Video Generator/Assets/Intervals/standard.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/Assets/Intervals/standard.mp4 -------------------------------------------------------------------------------- /Youtube Bot Video Generator/Assets/Music/Funny/mp3s go here!!! (delete me).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/Assets/Music/Funny/mp3s go here!!! (delete me).txt -------------------------------------------------------------------------------- /Youtube Bot Video Generator/Assets/Music/Sad/mp3s go here!!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/Assets/Music/Sad/mp3s go here!!.txt -------------------------------------------------------------------------------- /Youtube Bot Video Generator/Assets/Music/Soothing/mp3s go here!!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/Assets/Music/Soothing/mp3s go here!!.txt -------------------------------------------------------------------------------- /Youtube Bot Video Generator/Assets/Verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/Assets/Verdana.ttf -------------------------------------------------------------------------------- /Youtube Bot Video Generator/Assets/upvoteorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/Assets/upvoteorange.png -------------------------------------------------------------------------------- /Youtube Bot Video Generator/Assets/upvotewhiteflipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/Assets/upvotewhiteflipped.png -------------------------------------------------------------------------------- /Youtube Bot Video Generator/Assets/verdanab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/Assets/verdanab.ttf -------------------------------------------------------------------------------- /Youtube Bot Video Generator/VideoTypes/__pycache__/imageframe.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/VideoTypes/__pycache__/imageframe.cpython-37.pyc -------------------------------------------------------------------------------- /Youtube Bot Video Generator/VideoTypes/__pycache__/standardredditformat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/VideoTypes/__pycache__/standardredditformat.cpython-37.pyc -------------------------------------------------------------------------------- /Youtube Bot Video Generator/VideoTypes/__pycache__/videoformat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/VideoTypes/__pycache__/videoformat.cpython-37.pyc -------------------------------------------------------------------------------- /Youtube Bot Video Generator/VideoTypes/imageframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/VideoTypes/imageframe.py -------------------------------------------------------------------------------- /Youtube Bot Video Generator/VideoTypes/standardredditformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/VideoTypes/standardredditformat.py -------------------------------------------------------------------------------- /Youtube Bot Video Generator/VideoTypes/videoformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/VideoTypes/videoformat.py -------------------------------------------------------------------------------- /Youtube Bot Video Generator/generatemovie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/generatemovie.py -------------------------------------------------------------------------------- /Youtube Bot Video Generator/generatorclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/generatorclient.py -------------------------------------------------------------------------------- /Youtube Bot Video Generator/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/settings.py -------------------------------------------------------------------------------- /Youtube Bot Video Generator/standardtags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/standardtags.txt -------------------------------------------------------------------------------- /Youtube Bot Video Generator/startvideo.bat: -------------------------------------------------------------------------------- 1 | python3 youtubequeue.py 2 | pause -------------------------------------------------------------------------------- /Youtube Bot Video Generator/videoscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/videoscript.py -------------------------------------------------------------------------------- /Youtube Bot Video Generator/videouploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/videouploader.py -------------------------------------------------------------------------------- /Youtube Bot Video Generator/youtubequeue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/Youtube Bot Video Generator/youtubequeue.py -------------------------------------------------------------------------------- /dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/dependencies.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HA6Bots/Automatic-Youtube-Reddit-Text-To-Speech-Video-Generator-and-Uploader/HEAD/requirements.txt --------------------------------------------------------------------------------