@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
27 lines (26 loc) • 810 B
TypeScript
import AudioMixSourceChannelType from './AudioMixSourceChannelType';
/**
* @export
* @class AudioMixInputStreamSourceChannel
*/
export declare class AudioMixInputStreamSourceChannel {
/**
* Gain for this source channel. Default is 1.0.
* @type {number}
* @memberof AudioMixInputStreamSourceChannel
*/
gain?: number;
/**
* @type {AudioMixSourceChannelType}
* @memberof AudioMixInputStreamSourceChannel
*/
type?: AudioMixSourceChannelType;
/**
* Number of this source channel. If type is 'CHANNEL_NUMBER', this must be set.
* @type {number}
* @memberof AudioMixInputStreamSourceChannel
*/
channelNumber?: number;
constructor(obj?: Partial<AudioMixInputStreamSourceChannel>);
}
export default AudioMixInputStreamSourceChannel;