So I'm trying to merge audio and video using ffmpeg-python but it keeps telling me one error
FileNotFoundError: [WinError 2] The system cannot find the file specified
Here's the code that im trying
def videoAudio():
input_video = ffmpeg.input('./ONLYVIDEO.mp4')
input_audio = ffmpeg.input('./ONLYAUDIO.webm')
ffmpeg.concat(input_video, input_audio, v=1, a=1).output('./complete.mp4').run()
Any ideas of what's wrong?