@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
28 lines (27 loc) • 623 B
TypeScript
import BitmovinResponse from './BitmovinResponse';
/**
* @export
* @class MediaStream
*/
export declare class MediaStream extends BitmovinResponse {
/**
* Position of the stream in the media, starting from 0.
* @type {number}
* @memberof MediaStream
*/
position?: number;
/**
* Duration of the stream in seconds
* @type {number}
* @memberof MediaStream
*/
duration?: number;
/**
* Codec of the stream
* @type {string}
* @memberof MediaStream
*/
codec?: string;
constructor(obj?: Partial<MediaStream>);
}
export default MediaStream;