audio-mixer

Crates.ioaudio-mixer
lib.rsaudio-mixer
version0.2.0
sourcesrc
created_at2019-12-27 20:54:57.546963
updated_at2024-04-24 13:36:49.901559
descriptionMixing audio by the input and output channel layout
homepage
repositoryhttps://github.com/mozilla/audio-mixer
max_upload_size
id192760
size84,600
Matthew Gregan (kinetiknz)

documentation

README

Audio Mixer

CircleCI Build & Test

Mixing audio data from any input channel layout to any output channel layout, in a matrix-multiplication form.

output channel #1 ▸ │ Silence    │   │ 0, 0, 0, 0 │   │ FrontRight   │ ◂ input channel #1
output channel #2 ▸ │ FrontRight │ = │ R, C, 0, F │ x │ FrontCenter  │ ◂ input channel #2
output channel #3 ▸ │ FrontLeft  │   │ 0, C, L, F │   │ FrontLeft    │ ◂ input channel #3
                          ▴                 ▴         │ LowFrequency │ ◂ input channel #4
                          ┊                 ┊                ▴
                          ┊                 ┊                ┊
                      out_audio      mixing matrix m       in_audio

For example, the above means there are 3 output channels and 4 input channels. The order of output channels is Silence, FrontRight, and FrontLeft. The order of input channels is FrontRight, FrontCenter, FrontLeft, LowFrequency.

So the output data in the channel #2 will be:


Output data of ch #2 (FrontRight) =
    R x input channel #1 (FrontRight)   +
    C x input channel #2 (FrontCenter)  +
    0 x input channel #3 (FrontLeft)    +
    F x input channel #4 (LowFrequency)

where the C, F, L, R are mixing coefficients. The Silence channel is a unused channel in the output device, so its channel data will always be zero.

License

MPL-2

Commit count: 34

cargo fmt