Spaces:
Runtime error
Runtime error
File size: 633 Bytes
59e1d08 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# import os
# TODO DEACTIVATE WORKING DIR FOR A WHILE
# current_working_directory = os.getcwd()
dir_download_file = "download_video.mp4"
dir_cut_audio_file = "cut_audio.wav"
dir_cut_video_file = "cut_video.mp4"
# BASE FILE CREATED ONLY ONCE
dir_base_subtitle_file = "subtitle.srt"
dir_base_transcribe_file = "transcribe.txt"
dir_adjusted_subtitle_file = "subtitle_adjusted.srt"
dir_adjusted_transcribe_file = "transcribe_adjusted.txt"
dir_video_subtitle_file = "video_subtitle.mp4"
dir_sample_groups_json = "sample_groups.json"
dir_speaker_groups_json = "speaker_groups.json"
dir_simple_transcribe_file = "simple_transcribe.txt"
|