I am trying to use MoviePy to do basic video editing. Problem is that, when I save the video, there is no sound attached to it. Here's the basic code. Any help super appreciated - thanks!
from moviepy.editor import *
clip =VideoFileClip("video.mp4").subclip(0,5)
clip.write_videofile("audio.mp4")