Answer the question
In order to leave comments, you need to log in
How to merge .webm with .mp4 in linux with one command?
there is a video without sound and a separate audio track for it,
you need to combine them
Preferably with one command
Answer the question
In order to leave comments, you need to log in
ffmpeg will help. Something like:-i audio.mp3
specifies one of the inputs, a file with sound; -i video.webm
another input, video file;
ffmpeg itself will figure out where to get the sound from, and where the video track comes from, if each one has one and you don’t have to choose. -c:v libx264
specifies the video codec to use to repress the video track; -c:a aac
audio codec to repress audio. result.mp4
where to save the result.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question