Skip to content

Commit

Permalink
Updated the file names and added the new file to the requirements.txt…
Browse files Browse the repository at this point in the history
… file.
  • Loading branch information
cisvhat committed Feb 10, 2024
1 parent 9ef943c commit 34605cf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/upload_video.py → generate_and_upload_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
from google.auth.transport.requests import Request
from termcolor import colored
from dotenv import load_dotenv
from generate_video import topic2video
from generate_ideas import generate_ideas
from src.generate_video import topic2video
from src.generate_ideas import generate_ideas

# Load environment variables from .env file
load_dotenv()
Expand Down
8 changes: 4 additions & 4 deletions src/generate_video.py → generate_video.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from pathlib import Path
from termcolor import colored

from generate_ideas import generate_ideas
from topic2text import generate_script
from text2voice import generate_audio_for_clips
from voice2video import process_json_data, create_combined_video_from_clips
from src.generate_ideas import generate_ideas
from src.topic2text import generate_script
from src.text2voice import generate_audio_for_clips
from src.voice2video import process_json_data, create_combined_video_from_clips


def topic2video(video_subject, num_clips, output_file_path):
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ google-auth
google-auth-httplib2
google-auth-oauthlib
httplib2
oauthlib
oauthlib
python-dotenv

0 comments on commit 34605cf

Please sign in to comment.