This is how this came to me. One file is audio-only.webm and he other is video-only.webm
Is there a way to use ffmpeg to make a single webm file with both the audio and video playing together?
+ Reply to Thread
Results 1 to 4 of 4
-
-
Probably yes, via mapping of streams, but the order of the command line parameters will be most important.
This StackOverflow article seems to document it verbosely.
Do the stream analysis as described there, and please report which command line worked for you, if you were successful. -
Try my clever FFmpeg-GUI. You can mux them to mp4 or mkv.
Load your video.webm first, select multiplex, the video source is already loaded, select your audio.webm as audio source, select what you wish as target file name, select mp4 or mkv as container, click Multiplex. Done.Last edited by ProWo; 4th Aug 2020 at 07:43.
-
This should work:
Code:ffmpeg -i video.webm -i audio.webm -c copy output.webm
Similar Threads
-
mp4/mkv to webm (I see lots of posts going the other way but not TO webm)
By AshleyQuick in forum Video ConversionReplies: 9Last Post: 10th Aug 2018, 09:19 -
Using ffmpeg to make an html5 webm video scroll smoothly
By ScottyBe in forum Video ConversionReplies: 9Last Post: 31st Jul 2018, 04:06 -
ffmpeg convert from mkv to mp4 [matroska,webm @ 0x1d06640] Read error at
By blurry in forum Video ConversionReplies: 6Last Post: 15th Jan 2018, 05:36 -
Using FFMPEG how do I convert an entire folder of webm files to wav or mp3?
By alphainventions in forum Video ConversionReplies: 1Last Post: 7th Aug 2016, 19:56 -
webM test
By racer-x in forum TestReplies: 6Last Post: 5th Jun 2016, 04:21