chompionsawelo commited on
Commit
3e3b2c0
·
1 Parent(s): 7b2cb15

file name fixes

Browse files
Files changed (2) hide show
  1. file_name.py +11 -7
  2. video_tool.py +10 -6
file_name.py CHANGED
@@ -1,15 +1,19 @@
 
 
1
 
2
  def get_title():
3
- return input_file[:-4]
 
4
 
 
5
 
6
  input_file = ""
7
- audio_file = "input.wav"
8
- transcribe_file = "transcribe.txt"
9
- subtitle_file = "subtitle.srt"
10
- transcribe_adjusted_file = "transcribe_adjusted.txt"
11
- subtitle_adjusted_file = "subtitle_adjusted.srt"
12
- video_subtitle_file = f"output_{get_title()}.mp4"
13
 
14
  start_time_for_adjustment = "00:00:00"
15
  end_time_for_adjustment = "00:10:00"
 
1
+ import os
2
+
3
 
4
  def get_title():
5
+ return os.path.basename(input_file)
6
+
7
 
8
+ current_working_directory = os.getcwd()
9
 
10
  input_file = ""
11
+ audio_file = f"{current_working_directory}/input_{get_title()}.wav"
12
+ transcribe_file = f"{current_working_directory}/transcribe_{get_title()}.txt"
13
+ subtitle_file = f"{current_working_directory}/subtitle_{get_title()}.srt"
14
+ transcribe_adjusted_file = f"{current_working_directory}/transcribe_adjusted_{get_title()}.txt"
15
+ subtitle_adjusted_file = f"{current_working_directory}/subtitle_adjusted_{get_title()}.srt"
16
+ video_subtitle_file = f"{current_working_directory}/output_{get_title()}.mp4"
17
 
18
  start_time_for_adjustment = "00:00:00"
19
  end_time_for_adjustment = "00:10:00"
video_tool.py CHANGED
@@ -2,12 +2,16 @@ import ffmpeg
2
 
3
 
4
  def convert_video_to_audio(input_file, output_file, start_time, end_time):
5
- (
6
- ffmpeg
7
- .input(input_file, ss=start_time, to=end_time)
8
- .output(output_file, format="wav", acodec='pcm_s16le')
9
- .run(overwrite_output=True)
10
- )
 
 
 
 
11
 
12
 
13
  def add_subtitle_to_video(input_file, subtitle_file, output_file, start_time, end_time):
 
2
 
3
 
4
  def convert_video_to_audio(input_file, output_file, start_time, end_time):
5
+ try:
6
+ _, err = (
7
+ ffmpeg
8
+ .input(input_file, ss=start_time, to=end_time)
9
+ .output(output_file, format="wav", acodec='pcm_s16le')
10
+ .run(overwrite_output=True, capture_stderr=True)
11
+ )
12
+ except ffmpeg.Error as err:
13
+ print(err.stderr)
14
+ raise
15
 
16
 
17
  def add_subtitle_to_video(input_file, subtitle_file, output_file, start_time, end_time):