marquesafonso commited on
Commit
bb4377d
·
1 Parent(s): b1adfd6

fix temp_audiofile permission issue (2)

Browse files
Files changed (1) hide show
  1. utils/subtitler.py +3 -1
utils/subtitler.py CHANGED
@@ -41,6 +41,8 @@ def subtitler(video_file:str,
41
  video_file = os.path.abspath(video_file)
42
  srt_path = os.path.abspath(srt_path)
43
  output_file = os.path.abspath(output_file)
 
 
44
  clip = VideoFileClip(filename=video_file, target_resolution=None)
45
  subtitles = parse_srt(srt_path)
46
  subtitle_clips = []
@@ -56,4 +58,4 @@ def subtitler(video_file:str,
56
  text_position = (subtitle_x_position, subtitle_y_position)
57
  subtitle_clips.append(txt_clip.set_position(text_position))
58
  video = CompositeVideoClip(size=None, clips=[clip] + subtitle_clips)
59
- video.write_videofile(output_file, codec='libx264', audio_codec='aac', temp_audiofile = None)
 
41
  video_file = os.path.abspath(video_file)
42
  srt_path = os.path.abspath(srt_path)
43
  output_file = os.path.abspath(output_file)
44
+ temp_dir = os.path.abspath(f"{'/'.join(os.path.normpath(video_file).split(os.path.sep)[:-1])}/")
45
+ temp_audiofile = os.path.join(temp_dir, "temp_audio_file.mp4") # workaround found in https://github.com/Zulko/moviepy/pull/1144, to be solved in v2.0 of moviepy
46
  clip = VideoFileClip(filename=video_file, target_resolution=None)
47
  subtitles = parse_srt(srt_path)
48
  subtitle_clips = []
 
58
  text_position = (subtitle_x_position, subtitle_y_position)
59
  subtitle_clips.append(txt_clip.set_position(text_position))
60
  video = CompositeVideoClip(size=None, clips=[clip] + subtitle_clips)
61
+ video.write_videofile(output_file, codec='libx264', audio_codec='aac', temp_audiofile = temp_audiofile)