Spaces:
Runtime error
Runtime error
Commit
·
b5457c8
1
Parent(s):
9002374
fix file names
Browse files- file_name.py +9 -9
file_name.py
CHANGED
@@ -3,17 +3,17 @@ import os
|
|
3 |
|
4 |
current_working_directory = os.getcwd()
|
5 |
|
6 |
-
download_file = f"{current_working_directory}
|
7 |
-
audio_file = f"{current_working_directory}
|
8 |
-
transcribe_file = f"{current_working_directory}
|
9 |
cut_video_file = "cut_video.mp4"
|
10 |
|
11 |
-
subtitle_file = f"{current_working_directory}
|
12 |
base_subtitle_file = "subtitle.srt"
|
13 |
-
subtitle_adjusted_file = f"{current_working_directory}
|
14 |
base_subtitle_adjusted_file = "subtitle_adjusted.srt"
|
15 |
|
16 |
-
transcribe_adjusted_file = f"{current_working_directory}
|
17 |
-
video_subtitle_file = f"{current_working_directory}
|
18 |
-
sample_groups_json = f"{current_working_directory}
|
19 |
-
speaker_groups_json = f"{current_working_directory}
|
|
|
3 |
|
4 |
current_working_directory = os.getcwd()
|
5 |
|
6 |
+
download_file = f"{current_working_directory}/download_video.mp4"
|
7 |
+
audio_file = f"{current_working_directory}/input.wav"
|
8 |
+
transcribe_file = f"{current_working_directory}/transcribe.txt"
|
9 |
cut_video_file = "cut_video.mp4"
|
10 |
|
11 |
+
subtitle_file = f"{current_working_directory}/subtitle.srt"
|
12 |
base_subtitle_file = "subtitle.srt"
|
13 |
+
subtitle_adjusted_file = f"{current_working_directory}/subtitle_adjusted.srt"
|
14 |
base_subtitle_adjusted_file = "subtitle_adjusted.srt"
|
15 |
|
16 |
+
transcribe_adjusted_file = f"{current_working_directory}/transcribe_adjusted.txt"
|
17 |
+
video_subtitle_file = f"{current_working_directory}/output.mp4"
|
18 |
+
sample_groups_json = f"{current_working_directory}/sample_groups.json"
|
19 |
+
speaker_groups_json = f"{current_working_directory}/speaker_groups.json"
|