├── .gitignore ├── LICENSE.md ├── README.md ├── fonts └── AppleGothic.ttf ├── images └── default.jpeg ├── requirements.txt └── src ├── ImageCreator.py ├── RedditScrape.py ├── TextToSpeech.py ├── VideoEdit.py ├── config.py ├── examples ├── ex.py ├── from_link.py ├── text_to_speech.py └── title.png ├── list.txt └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/README.md -------------------------------------------------------------------------------- /fonts/AppleGothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/fonts/AppleGothic.ttf -------------------------------------------------------------------------------- /images/default.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/images/default.jpeg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/ImageCreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/src/ImageCreator.py -------------------------------------------------------------------------------- /src/RedditScrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/src/RedditScrape.py -------------------------------------------------------------------------------- /src/TextToSpeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/src/TextToSpeech.py -------------------------------------------------------------------------------- /src/VideoEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/src/VideoEdit.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/src/config.py -------------------------------------------------------------------------------- /src/examples/ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/src/examples/ex.py -------------------------------------------------------------------------------- /src/examples/from_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/src/examples/from_link.py -------------------------------------------------------------------------------- /src/examples/text_to_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/src/examples/text_to_speech.py -------------------------------------------------------------------------------- /src/examples/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/src/examples/title.png -------------------------------------------------------------------------------- /src/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/src/list.txt -------------------------------------------------------------------------------- /src/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexshelto/reddit_video_maker/HEAD/src/run.py --------------------------------------------------------------------------------