@adobe/premierepro 26.3.0-beta.59 → 26.3.0-beta.67

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/premierepro",
3
- "version": "26.3.0-beta.59",
3
+ "version": "26.3.0-beta.67",
4
4
  "description": "The TypeScript definitions and declarations for UXP APIs in Premiere",
5
5
  "license": "Apache-2.0",
6
6
  "bugs": {
@@ -131,7 +131,7 @@ export declare type AAFExportOptions = {
131
131
  *
132
132
  * @param audioFileFormat
133
133
  */
134
- setAudioFileFormat(audioFileFormat: number): AAFExportOptions;
134
+ setAudioFileFormat(audioFileFormat: Constants.AAFExportAudioFormat): AAFExportOptions;
135
135
 
136
136
  /**
137
137
  * Set whether to trim sources
@@ -1368,6 +1368,30 @@ export declare type EncoderManager = {
1368
1368
  startQueueImmediately?: boolean
1369
1369
  ): Promise<boolean>;
1370
1370
 
1371
+ /**
1372
+ * Start encoding the AME batch queue.
1373
+ */
1374
+ startBatchEncode(): Promise<boolean>;
1375
+
1376
+ /**
1377
+ * Set whether to enable sidecar XMP when exporting a sequence.
1378
+ *
1379
+ * @param enabled
1380
+ */
1381
+ setSidecarXMPEnabled(enabled: boolean): Promise<boolean>;
1382
+
1383
+ /**
1384
+ * Set whether to enable embedded XMP when exporting a sequence.
1385
+ *
1386
+ * @param enabled
1387
+ */
1388
+ setEmbeddedXMPEnabled(enabled: boolean): Promise<boolean>;
1389
+
1390
+ /**
1391
+ * Launch AME asynchronously if not already running.
1392
+ */
1393
+ launchEncoder(): Promise<boolean>;
1394
+
1371
1395
  /**
1372
1396
  * Check if AME is installed.
1373
1397
  * @readonly
@@ -2094,8 +2118,7 @@ export declare type Metadata = {};
2094
2118
 
2095
2119
  export declare type ObjectMaskUtilsStatic = {
2096
2120
  /**
2097
- * Check if the project or sequence contains object mask. Returns true if at
2098
- * least one object mask exists.
2121
+ * Check if the project or sequence contains object mask. Returns true if at least one object mask exists.
2099
2122
  *
2100
2123
  * @param projectOrSequence
2101
2124
  */
@@ -3703,6 +3726,13 @@ export declare type SourceMonitorStatic = {
3703
3726
  */
3704
3727
  getPosition(): Promise<TickTime>;
3705
3728
 
3729
+ /**
3730
+ * Set position of source monitor to the given TickTime
3731
+ *
3732
+ * @param position
3733
+ */
3734
+ setPosition(position: TickTime): Promise<boolean>;
3735
+
3706
3736
  /**
3707
3737
  * Play clip at source monitor with input speed
3708
3738
  *
@@ -4415,6 +4445,11 @@ export declare type TranscriptStatic = {
4415
4445
  export declare type Transcript = {};
4416
4446
 
4417
4447
  export namespace Constants {
4448
+ export enum AAFExportAudioFormat {
4449
+ AIFF,
4450
+ WAV,
4451
+ }
4452
+
4418
4453
  export enum AudioChannelType {
4419
4454
  MONO,
4420
4455
  STEREO,