Class AudioChannelMapperSettings
- Namespace
- VisioForge.Core.Types
- Assembly
- VisioForge.Core.dll
Represents configuration settings for audio channel mapping operations. This class allows you to define how audio channels from a source should be routed to output channels, including volume adjustments for each channel mapping.
public class AudioChannelMapperSettingsInheritance
Inherited Members
Properties
OutputChannelsCount
Gets or sets the total number of output channels. Set to 0 to maintain the same number of channels as the input. If set to a specific value, the output will have exactly that many channels, regardless of the input channel count.
public int OutputChannelsCount { get; set; }Property Value
Routes
Gets or sets an array of audio channel mapping routes. Each item in the array defines how a specific source channel should be mapped to a target channel, including any volume adjustments to be applied during the mapping.
public AudioChannelMapperItem[] Routes { get; set; }