From 944510a3f6ce93a1d6088bdc59290abc2aac8f3e Mon Sep 17 00:00:00 2001 From: Jason Date: Mon, 13 Jun 2022 17:55:36 -0400 Subject: [PATCH] fix: fixed a slight path issue chore: lowered the time.sleep time from 2 to 1 --- main.py | 2 +- video_creation/final_video.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index c261cb4..4f74a74 100755 --- a/main.py +++ b/main.py @@ -26,7 +26,7 @@ print_markdown( "### 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." ) -time.sleep(2) +time.sleep(1) client_id = getenv("REDDIT_CLIENT_ID") client_secret = getenv("REDDIT_CLIENT_SECRET") diff --git a/video_creation/final_video.py b/video_creation/final_video.py index 6c6dcc8..7fec8d0 100755 --- a/video_creation/final_video.py +++ b/video_creation/final_video.py @@ -100,7 +100,7 @@ def make_final_video(number_of_clips, length): else: image_clips.insert( 0, - ImageClip("assets/png/title.png") + ImageClip("assets/temp/png/title.png") .set_duration(audio_clips[0].duration) .set_position("center") .resize(width=W - 100)