0

I'm looking into learning how software mixing works in general (methods, best practices, pitfalls, etc...) so if anyone has any good c++ literature on the subject that explains how it works, it would be much appreciated.

I've already seen the small explanation at: cplusplus but I was looking for something more in depth. In that line, can anyone provide a good explanation on software mixing?

Stephane Rolland
  • 38,876
  • 35
  • 121
  • 169
JaimeBarrachina
  • 430
  • 8
  • 21

1 Answers1

2

If you have 2 waveforms represented with their data in some form of an array, say of short values, you just have to ADD those values and resulting array is 'mixed' audio.

Here it is: Programmatically merging two pieces of audio

Community
  • 1
  • 1
Daniel Mošmondor
  • 19,718
  • 12
  • 58
  • 99