I am trying to edit videos from moviepy and from moviepy I want to add 4 different audio files. I didn't find any documentation. I guess. Is this possible?
I tried a lot but can't figure it out.
from moviepy.editor import *
audio1=AudioFileClip("audio1.mp3")
audio2=AudioFileClip("audio2.mp3")
audio3=AudioFileClip("audio3.mp3")
audio4=AudioFileClip("audio4.mp3")
#I want to mix all these audio and add it in a video
video=VideoFileClip("video.mp4")
#now add that mixed audio and export it.
#what should I do here to mix all the audio and assign them to a variable.
finalvideo.writevideofile("finalvideo.mp4")