Reputation: 1
In azure, I want to generate a video from two independent files: video track is in a .webm file and audio track is in a .mp3 file. Is this possible? I want to use Azure media services. If not, then FFMPEG could be a solution. correct?
Thanks, Osama
Upvotes: 0
Views: 252
Reputation: 11
I know this is possible with FFMPEG
Once you have downloaded both video and audio files (‘videoplayback.mp4’ and ‘videoplayback.m4a’ respectively), here’s how you can merge them into a single file:
In Azure, one option would be to use an audio overlay. Upload the webm file, with the mp3 as an audio overlay. This would effectively combine the two.
Upvotes: 1