Replies: 1 comment
-
Hey @ra0x3 I'm trying to mimic the following command for merging audio files: ffmpeg -i a.wav -i b.wav -filter_complex amix=inputs=2:duration=shortest -ac 2 merged.wav |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have two files
audio1.mp3
andaudio2.mp3
.I would like to merge these two files to produce
audio3.mp3
, withaudio3.mp3
being almost like a bitwise AND operator over the two input files. I've read a really great Stackoverflow thread about doing this with ffmpeg here.So my question is, could anyone possibly give a tiny example on how to do this using rust-ffmpeg.
Cheers 🎉
Beta Was this translation helpful? Give feedback.
All reactions