@cesdk/engine 1.36.0-rc.0 → 1.36.0-rc.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
@@ -3821,6 +3821,8 @@ declare interface ExportVideoOptions {
3821
3821
  h264Profile: number;
3822
3822
  h264Level: number;
3823
3823
  framerate: number;
3824
+ videoBitrate: number;
3825
+ audioBitrate: number;
3824
3826
  useTargetSize: boolean;
3825
3827
  targetWidth: number;
3826
3828
  targetHeight: number;
@@ -4729,6 +4731,16 @@ export declare type VideoExportOptions = {
4729
4731
  * @defaultValue 52
4730
4732
  */
4731
4733
  h264Level?: number;
4734
+ /**
4735
+ * The video bitrate in bits per second. Maximum bitrate is determined by h264Profile and h264Level.
4736
+ * If the value is 0, the bitrate is automatically determined by the engine.
4737
+ */
4738
+ videoBitrate?: number;
4739
+ /**
4740
+ * The audio bitrate in bits per second.
4741
+ * If the value is 0, the bitrate is automatically determined by the engine (128kbps for stereo AAC stream).
4742
+ */
4743
+ audioBitrate?: number;
4732
4744
  /**
4733
4745
  * The time offset in seconds of the scene's timeline from which the video will start.
4734
4746
  *