@ -11,32 +11,49 @@ import os
import re
import re
import math
import math
def next_name ( dir = " output/ " ) :
i = 0
for path in os . listdir ( dir ) :
if path . endswith ( " .mp4 " ) :
name = path . split ( " . " ) [ 0 ]
if name . isdigit ( ) :
name = int ( name )
if i < name + 1 :
i = name + 1
return i
print_markdown (
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. "
" ### 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 ( 3 )
time . sleep ( 3 )
load_dotenv ( )
while True :
for thread_number in range ( int ( os . getenv ( " LIMIT " ) ) ) :
reddit_object = get_subreddit_threads ( )
reddit_object = get_subreddit_threads ( thread_number )
thread_title = str . strip ( reddit_object [ " thread_title " ] ) . replace ( " " , " _ " )
thread_title = str . strip ( reddit_object [ " thread_title " ] ) . replace ( " " , " _ " )
thread_title = re . sub ( r " [^_ \ w] " , " " , thread_title )
thread_title = re . sub ( r " [^_ \ w] " , " " , thread_title )
file_name = f " { os . getenv ( ' SUBREDDIT ' ) } - { thread_title } .mp4 "
thread_url_elements = reddit_object [ ' thread_url ' ] . split ( ' / ' )
file_exists = os . path . isfile ( f " output/ { file_name } " )
file_name = f " { thread_url_elements [ 4 ] } - { thread_url_elements [ 6 ] } "
file_exists = os . path . isfile ( f " output/ { file_name } .mp4 " )
fail_exists = os . path . isfile ( f " output/fail/ { file_name } " )
if file_exists is False :
if file_exists is False and fail_exists is False :
load_dotenv ( )
length , number_of_comments = save_text_to_mp3 ( reddit_object )
length , number_of_comments = save_text_to_mp3 ( reddit_object )
print ( f " Video is { math . ceil ( length ) } s long with { number_of_comments } comments. " )
if length > = int ( os . getenv ( " MIN_VID " ) ) and number_of_comments > 0 :
download_screenshots_of_reddit_posts ( reddit_object , number_of_comments , os . getenv ( " THEME " ) )
print ( f " Video is { math . ceil ( length ) } s long with { number_of_comments } comments. " )
download_background ( )
download_screenshots_of_reddit_posts ( reddit_object , number_of_comments , os . getenv ( " THEME " ) )
chop_background_video ( length )
download_background ( )
final_video = make_final_video ( number_of_comments , name = f " { os . getenv ( ' SUBREDDIT ' ) } - { thread_title } " )
chop_background_video ( length )
final_video = make_final_video ( number_of_comments , name = file_name , length = length )
else :
print ( " Content too short! Trying again... " )
open ( f " output/fail/ { file_name } " , " w+ " ) . close ( )
else :
else :
print ( f " Video for thread already exists! Trying again... " )
print ( f " Video for thread already exists! Trying again... " )
print ( os . getenv ( " LOOP " ) )
if os . getenv ( " LOOP " ) != " yes " :
if os . getenv ( " LOOP " ) != " yes " :
break
break