import InputStream from './InputStream'; import InputStreamType from './InputStreamType'; /** * @export * @class DolbyVisionInputStream */ export declare class DolbyVisionInputStream extends InputStream { /** * Discriminator property for InputStream * @type {string} * @memberof DolbyVisionInputStream */ readonly type: InputStreamType; /** * Id of input (required) * @type {string} * @memberof DolbyVisionInputStream */ inputId?: string; /** * Path to Dolby Vision input video file. (required) * @type {string} * @memberof DolbyVisionInputStream */ videoInputPath?: string; /** * Path to Dolby Vision Metadata file. This field is required when the metadata is not embedded in the video input file. * @type {string} * @memberof DolbyVisionInputStream */ metadataInputPath?: string; constructor(obj?: Partial); } export default DolbyVisionInputStream;