UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

30 lines (29 loc) 984 B
import DashMuxingRepresentation from './DashMuxingRepresentation'; import DashOnDemandRepresentationType from './DashOnDemandRepresentationType'; import DashRepresentationTypeDiscriminator from './DashRepresentationTypeDiscriminator'; /** * @export * @class DashMp4Representation */ export declare class DashMp4Representation extends DashMuxingRepresentation { /** * Discriminator property for DashRepresentation * @type {string} * @memberof DashMp4Representation */ readonly typeDiscriminator: DashRepresentationTypeDiscriminator; /** * Path to the MP4 file (required) * @type {string} * @memberof DashMp4Representation */ filePath?: string; /** * The type of the dash representation * @type {DashOnDemandRepresentationType} * @memberof DashMp4Representation */ type?: DashOnDemandRepresentationType; constructor(obj?: Partial<DashMp4Representation>); } export default DashMp4Representation;