@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
36 lines (35 loc) • 1.23 kB
TypeScript
import DolbyAtmosInputFormat from './DolbyAtmosInputFormat';
import InputStream from './InputStream';
import InputStreamType from './InputStreamType';
/**
* @export
* @class DolbyAtmosIngestInputStream
*/
export declare class DolbyAtmosIngestInputStream extends InputStream {
/**
* Discriminator property for InputStream
* @type {string}
* @memberof DolbyAtmosIngestInputStream
*/
readonly type: InputStreamType;
/**
* Id of input (required)
* @type {string}
* @memberof DolbyAtmosIngestInputStream
*/
inputId?: string;
/**
* Path to the Dolby Atmos input file (required)
* @type {string}
* @memberof DolbyAtmosIngestInputStream
*/
inputPath?: string;
/**
* Input file format of the Dolby Atmos input file. Set it to DAMF if the given input file is a Dolby Atmos Master File (.atmos). Set it to ADM if the given input file is an Audio Definition Model Broadcast Wave Format file (.wav) (required)
* @type {DolbyAtmosInputFormat}
* @memberof DolbyAtmosIngestInputStream
*/
inputFormat?: DolbyAtmosInputFormat;
constructor(obj?: Partial<DolbyAtmosIngestInputStream>);
}
export default DolbyAtmosIngestInputStream;