@cesdk/node 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
@@ -3751,6 +3751,8 @@ declare interface ExportVideoOptions {
3751
3751
  h264Profile: number;
3752
3752
  h264Level: number;
3753
3753
  framerate: number;
3754
+ videoBitrate: number;
3755
+ audioBitrate: number;
3754
3756
  useTargetSize: boolean;
3755
3757
  targetWidth: number;
3756
3758
  targetHeight: number;
@@ -4512,6 +4514,16 @@ export declare type VideoExportOptions = {
4512
4514
  * @defaultValue 52
4513
4515
  */
4514
4516
  h264Level?: number;
4517
+ /**
4518
+ * The video bitrate in bits per second. Maximum bitrate is determined by h264Profile and h264Level.
4519
+ * If the value is 0, the bitrate is automatically determined by the engine.
4520
+ */
4521
+ videoBitrate?: number;
4522
+ /**
4523
+ * The audio bitrate in bits per second.
4524
+ * If the value is 0, the bitrate is automatically determined by the engine (128kbps for stereo AAC stream).
4525
+ */
4526
+ audioBitrate?: number;
4515
4527
  /**
4516
4528
  * The time offset in seconds of the scene's timeline from which the video will start.
4517
4529
  *