spookyuser
commited on
Commit
·
61aea0c
1
Parent(s):
0b0dc7f
Fix path
Browse files- animate.py +1 -1
animate.py
CHANGED
@@ -236,4 +236,4 @@ def create_mp4_with_audio(frames, cv2_images, duration, audio, output_path):
|
|
236 |
new_clip.audio = audio # Naviely append audio without considering the length of the video, could be a problem, no idea, but it works, so I'm not touching it
|
237 |
new_clip.set_duration(duration)
|
238 |
new_clip.write_videofile(output_path.as_posix(), audio_codec="aac")
|
239 |
-
return output_path
|
|
|
236 |
new_clip.audio = audio # Naviely append audio without considering the length of the video, could be a problem, no idea, but it works, so I'm not touching it
|
237 |
new_clip.set_duration(duration)
|
238 |
new_clip.write_videofile(output_path.as_posix(), audio_codec="aac")
|
239 |
+
return output_path.as_posix()
|