@remotion/lambda-client 4.0.366 → 4.0.368
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/dist/cjs/index.js
CHANGED
|
@@ -67135,6 +67135,14 @@ function processColor(color) {
|
|
|
67135
67135
|
const normalizedColor = normalizeColor(color);
|
|
67136
67136
|
return (normalizedColor << 24 | normalizedColor >>> 8) >>> 0;
|
|
67137
67137
|
}
|
|
67138
|
+
var proResProfileOptions = [
|
|
67139
|
+
"4444-xq",
|
|
67140
|
+
"4444",
|
|
67141
|
+
"hq",
|
|
67142
|
+
"standard",
|
|
67143
|
+
"light",
|
|
67144
|
+
"proxy"
|
|
67145
|
+
];
|
|
67138
67146
|
var ENABLE_V5_BREAKING_CHANGES = false;
|
|
67139
67147
|
var validateFrame = ({
|
|
67140
67148
|
allowFloats,
|
|
@@ -67295,7 +67303,8 @@ var NoReactInternals = {
|
|
|
67295
67303
|
colorNames,
|
|
67296
67304
|
DATE_TOKEN,
|
|
67297
67305
|
FILE_TOKEN,
|
|
67298
|
-
validateCodec
|
|
67306
|
+
validateCodec,
|
|
67307
|
+
proResProfileOptions
|
|
67299
67308
|
};
|
|
67300
67309
|
var COMMAND_NOT_FOUND = "Command not found";
|
|
67301
67310
|
var expiryDays = {
|
|
@@ -67361,7 +67370,7 @@ var validateDownloadBehavior = (downloadBehavior) => {
|
|
|
67361
67370
|
}
|
|
67362
67371
|
}
|
|
67363
67372
|
};
|
|
67364
|
-
var VERSION = "4.0.
|
|
67373
|
+
var VERSION = "4.0.368";
|
|
67365
67374
|
var isColorSupported = () => {
|
|
67366
67375
|
const env = process.env || {};
|
|
67367
67376
|
const isForceDisabled = "NO_COLOR" in env;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AudioCodec, BrowserSafeApis, ChromiumOptions, ColorSpace, DeleteAfter, DownloadBehavior, FrameRange, LogLevel, OutNameInput, PixelFormat, Privacy,
|
|
1
|
+
import type { _InternalTypes, AudioCodec, BrowserSafeApis, ChromiumOptions, ColorSpace, DeleteAfter, DownloadBehavior, FrameRange, LogLevel, OutNameInput, PixelFormat, Privacy, ServerlessCodec, ServerlessPayloads, ServerlessStartPayload, ServerlessStatusPayload, ToOptions, VideoImageFormat, WebhookOption, X264Preset } from '@remotion/serverless-client';
|
|
2
2
|
import { ServerlessRoutines } from '@remotion/serverless-client';
|
|
3
3
|
import type { AwsProvider } from './aws-provider';
|
|
4
4
|
import type { StorageClass } from '@aws-sdk/client-s3';
|
|
@@ -17,7 +17,7 @@ export type InnerRenderMediaOnLambdaInput = {
|
|
|
17
17
|
crf: number | undefined;
|
|
18
18
|
envVariables: Record<string, string>;
|
|
19
19
|
pixelFormat: PixelFormat | undefined;
|
|
20
|
-
proResProfile: ProResProfile | undefined;
|
|
20
|
+
proResProfile: _InternalTypes['ProResProfile'] | undefined;
|
|
21
21
|
x264Preset: X264Preset | null;
|
|
22
22
|
privacy: Privacy;
|
|
23
23
|
jpegQuality: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { StorageClass } from '@aws-sdk/client-s3';
|
|
2
|
-
import type { AudioCodec, BrowserSafeApis, ChromiumOptions, DownloadBehavior, FrameRange, OutNameInput, PixelFormat, Privacy,
|
|
2
|
+
import type { _InternalTypes, AudioCodec, BrowserSafeApis, ChromiumOptions, DownloadBehavior, FrameRange, OutNameInput, PixelFormat, Privacy, ServerlessCodec, ToOptions, VideoImageFormat, WebhookOption } from '@remotion/serverless-client';
|
|
3
3
|
import { type AwsProvider } from './aws-provider';
|
|
4
4
|
import type { InnerRenderMediaOnLambdaInput } from './make-lambda-payload';
|
|
5
5
|
import type { AwsRegion } from './regions';
|
|
@@ -15,7 +15,7 @@ export type RenderMediaOnLambdaInput = {
|
|
|
15
15
|
crf?: number | undefined;
|
|
16
16
|
envVariables?: Record<string, string>;
|
|
17
17
|
pixelFormat?: PixelFormat;
|
|
18
|
-
proResProfile?: ProResProfile;
|
|
18
|
+
proResProfile?: _InternalTypes['ProResProfile'];
|
|
19
19
|
privacy?: Privacy;
|
|
20
20
|
/**
|
|
21
21
|
* @deprecated Renamed to `jpegQuality`
|
package/dist/esm/index.mjs
CHANGED
|
@@ -67088,6 +67088,14 @@ function processColor(color) {
|
|
|
67088
67088
|
const normalizedColor = normalizeColor(color);
|
|
67089
67089
|
return (normalizedColor << 24 | normalizedColor >>> 8) >>> 0;
|
|
67090
67090
|
}
|
|
67091
|
+
var proResProfileOptions = [
|
|
67092
|
+
"4444-xq",
|
|
67093
|
+
"4444",
|
|
67094
|
+
"hq",
|
|
67095
|
+
"standard",
|
|
67096
|
+
"light",
|
|
67097
|
+
"proxy"
|
|
67098
|
+
];
|
|
67091
67099
|
var ENABLE_V5_BREAKING_CHANGES = false;
|
|
67092
67100
|
var validateFrame = ({
|
|
67093
67101
|
allowFloats,
|
|
@@ -67248,7 +67256,8 @@ var NoReactInternals = {
|
|
|
67248
67256
|
colorNames,
|
|
67249
67257
|
DATE_TOKEN,
|
|
67250
67258
|
FILE_TOKEN,
|
|
67251
|
-
validateCodec
|
|
67259
|
+
validateCodec,
|
|
67260
|
+
proResProfileOptions
|
|
67252
67261
|
};
|
|
67253
67262
|
var COMMAND_NOT_FOUND = "Command not found";
|
|
67254
67263
|
var expiryDays = {
|
|
@@ -67314,7 +67323,7 @@ var validateDownloadBehavior = (downloadBehavior) => {
|
|
|
67314
67323
|
}
|
|
67315
67324
|
}
|
|
67316
67325
|
};
|
|
67317
|
-
var VERSION = "4.0.
|
|
67326
|
+
var VERSION = "4.0.368";
|
|
67318
67327
|
var isColorSupported = () => {
|
|
67319
67328
|
const env = process.env || {};
|
|
67320
67329
|
const isForceDisabled = "NO_COLOR" in env;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/lambda-client"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/lambda-client",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.368",
|
|
7
7
|
"main": "dist/cjs/index.js",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"scripts": {
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"@aws-sdk/lib-storage": "3.787.0",
|
|
27
27
|
"mime-types": "2.1.34",
|
|
28
28
|
"@aws-sdk/credential-provider-ini": "3.787.0",
|
|
29
|
-
"@remotion/serverless-client": "4.0.
|
|
29
|
+
"@remotion/serverless-client": "4.0.368",
|
|
30
30
|
"@types/express": "^5.0.0",
|
|
31
31
|
"express": "4.21.0",
|
|
32
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
32
|
+
"@remotion/eslint-config-internal": "4.0.368",
|
|
33
33
|
"eslint": "9.19.0",
|
|
34
34
|
"next": "16.0.0",
|
|
35
35
|
"@types/mime-types": "2.1.1"
|