@cesdk/node 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
@@ -3745,6 +3745,8 @@ declare interface ExportVideoOptions {
3745
3745
  h264Profile: number;
3746
3746
  h264Level: number;
3747
3747
  framerate: number;
3748
+ videoBitrate: number;
3749
+ audioBitrate: number;
3748
3750
  useTargetSize: boolean;
3749
3751
  targetWidth: number;
3750
3752
  targetHeight: number;
@@ -4506,6 +4508,16 @@ export declare type VideoExportOptions = {
4506
4508
  * @defaultValue 52
4507
4509
  */
4508
4510
  h264Level?: number;
4511
+ /**
4512
+ * The video bitrate in bits per second. Maximum bitrate is determined by h264Profile and h264Level.
4513
+ * If the value is 0, the bitrate is automatically determined by the engine.
4514
+ */
4515
+ videoBitrate?: number;
4516
+ /**
4517
+ * The audio bitrate in bits per second.
4518
+ * If the value is 0, the bitrate is automatically determined by the engine (128kbps for stereo AAC stream).
4519
+ */
4520
+ audioBitrate?: number;
4509
4521
  /**
4510
4522
  * The time offset in seconds of the scene's timeline from which the video will start.
4511
4523
  *