|
|
|
@ -20,7 +20,7 @@ from video_creation.background import (
|
|
|
|
|
get_background_config,
|
|
|
|
|
)
|
|
|
|
|
from video_creation.final_video import make_final_video
|
|
|
|
|
from video_creation.screenshot_downloader import download_screenshots_of_reddit_posts
|
|
|
|
|
from video_creation.screenshot_downloader import get_screenshots_of_reddit_posts
|
|
|
|
|
from video_creation.voices import save_text_to_mp3
|
|
|
|
|
|
|
|
|
|
__VERSION__ = "2.5.0"
|
|
|
|
@ -48,7 +48,7 @@ def main(POST_ID=None):
|
|
|
|
|
redditid = id(reddit_object)
|
|
|
|
|
length, number_of_comments = save_text_to_mp3(reddit_object)
|
|
|
|
|
length = math.ceil(length)
|
|
|
|
|
download_screenshots_of_reddit_posts(reddit_object, number_of_comments)
|
|
|
|
|
get_screenshots_of_reddit_posts(reddit_object, number_of_comments)
|
|
|
|
|
bg_config = get_background_config()
|
|
|
|
|
download_background(bg_config)
|
|
|
|
|
chop_background_video(bg_config, length, reddit_object)
|
|
|
|
|