I am writing a program in Python on RaspberryPi(Raspbian), to combine / merge an audio file with video file.
Format of Audio file is WAVE Format of VIdeo file is h26
I got the answer of my Question, you can also try it and let me know if need further assistance
cmd = 'ffmpeg -y -i Audio.wav -r 30 -i Video.h264 -filter:a aresample=async=1 -c:a flac -c:v copy av.mkv' subprocess.call(cmd, shell=True) # "Muxing Done print('Muxing Done')