You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RedditVideoMakerBot/main.py

27 lines
978 B

3 years ago
from utils.console import print_markdown
import time
from reddit.subreddit import get_subreddit_threads
3 years ago
from video_creation.background import download_background, chop_background_video
from video_creation.voices import save_text_to_mp3
from video_creation.screenshot_downloader import download_screenshots_of_reddit_posts
from video_creation.final_video import make_final_video
3 years ago
from dotenv import load_dotenv
import os
3 years ago
print_markdown(
3 years ago
"### Thanks for using this tool! [Feel free to contribute to this project on GitHub!](https://lewismenelaws.com) If you have any questions, feel free to reach out to me on Twitter or submit a GitHub issue."
3 years ago
)
time.sleep(3)
reddit_object = get_subreddit_threads()
3 years ago
3 years ago
load_dotenv()
3 years ago
length, number_of_comments = save_text_to_mp3(reddit_object)
3 years ago
download_screenshots_of_reddit_posts(reddit_object, number_of_comments, os.getenv("THEME"))
3 years ago
download_background()
chop_background_video(length)
final_video = make_final_video(number_of_comments)