Mixing audio files is simple with SoX from the command line with “sox -m …” but I’m trying to find to the exact same thing with the C library and I can’t find out how to do it anywhere. Is it even possible?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Well, it is possible but the library won’t help you with that.
Looking through the
sox.ccode, you can notice that the actual mixing code is in astaticfunction:So, if you really want to use sox, you can use it for file input/output, but the mixing you will need to do yourself.