AudioChannelCombine[{audio1,audio2,…}]
creates a multichannel audio object by combining the sequence of channels in audioi.
AudioChannelCombine
AudioChannelCombine[{audio1,audio2,…}]
creates a multichannel audio object by combining the sequence of channels in audioi.
Details and Options
- AudioChannelCombine is typically used to create a multichannel audio object by combining channels from multiple audio inputs.
- All audioi are conformed to have the same type, sample rate, and duration before being combined.
Examples
open all close allBasic Examples (1)
Combine two audio signals into one:
a = ExampleData[{"Audio", "DogBark"}, "Audio"];
b = ExampleData[{"Audio", "Cat"}, "Audio"];AudioChannels /@ {a, b}AudioChannelCombine[{a, b}]The result has all four channels combined:
AudioChannels[%]Scope (2)
Combine two single-channel, single-tone signals into one:
AudioChannelCombine[{AudioGenerator[{"Sin", 852}], AudioGenerator[{"Sin", 1477}]}]Combine two audio signals with different properties:
step = ExampleData[{"Audio", "Apollo11SmallStep"}, "Audio"];
wind = ExampleData[{"Audio", "Wind"}, "Audio"];
combined = AudioChannelCombine[{step, wind}]Compare properties before and after:
AssociationThread[{"Step", "Wind", "Combined"} -> AudioMeasurements[{step, wind, combined}, {"Channels", "Duration", "SampleRate"}]]//DatasetProperties & Relations (1)
AudioChannelCombine does the inverse operation of AudioChannelSeparate:
a = ExampleData[{"Sound", "Piano"}, "Audio"]AudioChannelCombine[AudioChannelSeparate[a]]a === %Related Guides
History
Text
Wolfram Research (2016), AudioChannelCombine, Wolfram Language function, https://reference.wolfram.com/language/ref/AudioChannelCombine.html.
CMS
Wolfram Language. 2016. "AudioChannelCombine." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/AudioChannelCombine.html.
APA
Wolfram Language. (2016). AudioChannelCombine. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/AudioChannelCombine.html
BibTeX
@misc{reference.wolfram_2026_audiochannelcombine, author="Wolfram Research", title="{AudioChannelCombine}", year="2016", howpublished="\url{https://reference.wolfram.com/language/ref/AudioChannelCombine.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_audiochannelcombine, organization={Wolfram Research}, title={AudioChannelCombine}, year={2016}, url={https://reference.wolfram.com/language/ref/AudioChannelCombine.html}, note=[Accessed: 13-June-2026]}