Adding subreddit to videos.json

Adding subreddit data to videos.json
pull/885/head
Muhammed Mustafa Akşam 2 years ago
parent 40bfcf468e
commit 532e49276a

@ -34,11 +34,12 @@ def check_done(
return redditobj return redditobj
def save_data(filename: str, reddit_title: str, reddit_id: str, credit: str): def save_data(subreddit: str, filename: str, reddit_title: str, reddit_id: str, credit: str):
"""Saves the videos that have already been generated to a JSON file in video_creation/data/videos.json """Saves the videos that have already been generated to a JSON file in video_creation/data/videos.json
Args: Args:
filename (str): The finished video title name filename (str): The finished video title name
@param subreddit:
@param filename: @param filename:
@param reddit_id: @param reddit_id:
@param reddit_title: @param reddit_title:
@ -48,6 +49,7 @@ def save_data(filename: str, reddit_title: str, reddit_id: str, credit: str):
if reddit_id in [video["id"] for video in done_vids]: if reddit_id in [video["id"] for video in done_vids]:
return # video already done but was specified to continue anyway in the config file return # video already done but was specified to continue anyway in the config file
payload = { payload = {
"subreddit": subreddit,
"id": reddit_id, "id": reddit_id,
"time": str(int(time.time())), "time": str(int(time.time())),
"background_credit": credit, "background_credit": credit,

@ -115,7 +115,7 @@ def make_final_video(
filename = f"{name_normalize(title)}.mp4" filename = f"{name_normalize(title)}.mp4"
subreddit = settings.config["reddit"]["thread"]["subreddit"] subreddit = settings.config["reddit"]["thread"]["subreddit"]
save_data(filename, title, idx, background_config[2]) save_data(subreddit, filename, title, idx, background_config[2])
if not exists(f"./results/{subreddit}"): if not exists(f"./results/{subreddit}"):
print_substep("The results folder didn't exist so I made it") print_substep("The results folder didn't exist so I made it")

Loading…
Cancel
Save