@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
16 lines (15 loc) • 473 B
TypeScript
import AudioVideoSyncMode from './AudioVideoSyncMode';
/**
* @export
* @class Tweaks
*/
export declare class Tweaks {
/**
* Different modes for syncing the start and end of audio input streams with the video inputs. This feature does not work with Dolby Digital (Plus) or Dolby Atmos.
* @type {AudioVideoSyncMode}
* @memberof Tweaks
*/
audioVideoSyncMode?: AudioVideoSyncMode;
constructor(obj?: Partial<Tweaks>);
}
export default Tweaks;