whisper_transcribe / file_name.py
chompionsawelo's picture
minor fixes
581b947
raw
history blame
599 Bytes
import os
current_working_directory = os.getcwd()
audio_file = f"{current_working_directory}/input.wav"
transcribe_file = f"{current_working_directory}/transcribe.txt"
subtitle_file = f"{current_working_directory}/subtitle.srt"
transcribe_adjusted_file = f"{current_working_directory}/transcribe_adjusted.txt"
subtitle_adjusted_file = f"{current_working_directory}/subtitle_adjusted.srt"
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"