Skip to content

Commit

Permalink
Fix file usage
Browse files Browse the repository at this point in the history
  • Loading branch information
fofr committed Jun 14, 2023
1 parent 1d3c756 commit 909d9f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions predict.py
Expand Up @@ -25,9 +25,9 @@ def predict(self,
if caption_text == "" or caption_text is None:
return Path(waveform_video)
else:
padded_waveform_path = "padded_waveform.mp4"
background_image_path = "background.png"
final_video_path = "final_waveform.mp4"
padded_waveform_path = "/tmp/padded_waveform.mp4"
background_image_path = "/tmp/background.png"
final_video_path = "/tmp/final_waveform.mp4"

# Add padding to the top of the waveform video
subprocess.run([
Expand Down

0 comments on commit 909d9f8

Please sign in to comment.