@cesdk/engine 1.35.0 → 1.35.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -3815,6 +3815,8 @@ declare interface ExportVideoOptions {
3815
3815
  h264Profile: number;
3816
3816
  h264Level: number;
3817
3817
  framerate: number;
3818
+ videoBitrate: number;
3819
+ audioBitrate: number;
3818
3820
  useTargetSize: boolean;
3819
3821
  targetWidth: number;
3820
3822
  targetHeight: number;
@@ -4723,6 +4725,16 @@ export declare type VideoExportOptions = {
4723
4725
  * @defaultValue 52
4724
4726
  */
4725
4727
  h264Level?: number;
4728
+ /**
4729
+ * The video bitrate in bits per second. Maximum bitrate is determined by h264Profile and h264Level.
4730
+ * If the value is 0, the bitrate is automatically determined by the engine.
4731
+ */
4732
+ videoBitrate?: number;
4733
+ /**
4734
+ * The audio bitrate in bits per second.
4735
+ * If the value is 0, the bitrate is automatically determined by the engine (128kbps for stereo AAC stream).
4736
+ */
4737
+ audioBitrate?: number;
4726
4738
  /**
4727
4739
  * The time offset in seconds of the scene's timeline from which the video will start.
4728
4740
  *