Merge pull request #274 from CallumIO/hotfix/pr-270

Code was placed in the wrong place in pr #270
pull/289/head
Callum Leslie 3 years ago committed by GitHub
commit 118a3b8386
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,8 +7,6 @@ from video_creation.final_video import make_final_video
from dotenv import load_dotenv
import os, time, shutil
REQUIRED_VALUES = ["REDDIT_CLIENT_ID","REDDIT_CLIENT_SECRET","REDDIT_USERNAME","REDDIT_PASSWORD"]
REQUIRED_VALUES = ["REDDIT_CLIENT_ID","REDDIT_CLIENT_SECRET","REDDIT_USERNAME","REDDIT_PASSWORD", "OPACITY"]
print_markdown(
@ -30,6 +28,12 @@ for val in REQUIRED_VALUES:
print(f"Please set the variable \"{val}\" in your .env file.")
configured = False
try:
float(os.getenv("OPACITY"))
except:
print(f"Please ensure that OPACITY is set between 0 and 1 in your .env file")
configured = False
if configured:
reddit_object = get_subreddit_threads()
length, number_of_comments = save_text_to_mp3(reddit_object)

@ -30,11 +30,7 @@ def make_final_video(number_of_clips):
.resize(height=H)
.crop(x1=1166.6, y1=0, x2=2246.6, y2=1920)
)
try:
float(os.getenv("OPACITY"))
except:
print(f"Please ensure that OPACITY is set between 0 and 1 in your .env file")
configured = False
# Gather all audio clips
audio_clips = []
for i in range(0, number_of_clips):

Loading…
Cancel
Save