Spaces:
Runtime error
Runtime error
File size: 761 Bytes
3e3b2c0 e698260 f36ca6d 96f6a7b 581b947 bef4887 581b947 bef4887 581b947 bef4887 581b947 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
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"
subtitle_file = f"{current_working_directory}/subtitle.srt"
subtitle_file_parsed = "subtitle.srt"
subtitle_adjusted_file = f"{current_working_directory}/subtitle_adjusted.srt"
subtitle_adjusted_file_parsed = "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"
|