UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

22 lines (21 loc) 723 B
import SegmentsMediaInfo from './SegmentsMediaInfo'; /** * @export * @class ClosedCaptionsMediaInfo */ export declare class ClosedCaptionsMediaInfo extends SegmentsMediaInfo { /** * Specifies a Rendition within the segments in the Media Playlist. (See HLS spec 4.3.4.1. EXT-X-MEDIA INSTREAM-ID) (required) * @type {string} * @memberof ClosedCaptionsMediaInfo */ instreamId?: string; /** * A value of true indicates that the Rendition contains content which is considered essential to play. * @type {boolean} * @memberof ClosedCaptionsMediaInfo */ forced?: boolean; constructor(obj?: Partial<ClosedCaptionsMediaInfo>); } export default ClosedCaptionsMediaInfo;