import os


current_working_directory = os.getcwd()

download_file = f"{current_working_directory}/download_video.mp4"
audio_file = f"{current_working_directory}/input.wav"
transcribe_file = f"{current_working_directory}/transcribe.txt"
cut_video_file = "cut_video.mp4"

subtitle_file = f"{current_working_directory}/subtitle.srt"
base_subtitle_file = "subtitle.srt"
subtitle_adjusted_file = f"{current_working_directory}/subtitle_adjusted.srt"
base_subtitle_adjusted_file = "subtitle_adjusted.srt"

transcribe_adjusted_file = f"{current_working_directory}/transcribe_adjusted.txt"
video_subtitle_file = f"{current_working_directory}/output.mp4"
sample_groups_json = f"{current_working_directory}/sample_groups.json"
speaker_groups_json = f"{current_working_directory}/speaker_groups.json"