@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
23 lines (22 loc) • 579 B
TypeScript
import ScenePacing from './ScenePacing';
import SceneTension from './SceneTension';
/**
* @export
* @class SceneDynamics
*/
export declare class SceneDynamics {
/**
* The detected tension of the scene based on content analysis
* @type {SceneTension}
* @memberof SceneDynamics
*/
tension?: SceneTension;
/**
* The detected pacing of the scene based on content analysis
* @type {ScenePacing}
* @memberof SceneDynamics
*/
pacing?: ScenePacing;
constructor(obj?: Partial<SceneDynamics>);
}
export default SceneDynamics;