@remotion/lambda 4.0.464 → 4.0.466
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.
|
@@ -24,7 +24,7 @@ const quit_1 = require("../../helpers/quit");
|
|
|
24
24
|
const log_1 = require("../../log");
|
|
25
25
|
const progress_1 = require("./progress");
|
|
26
26
|
exports.RENDER_COMMAND = 'render';
|
|
27
|
-
const { x264Option, audioBitrateOption, offthreadVideoCacheSizeInBytesOption, offthreadVideoThreadsOption, scaleOption, crfOption, jpegQualityOption, videoBitrateOption, mutedOption, colorSpaceOption, deleteAfterOption, enableMultiprocessOnLinuxOption, glOption, headlessOption, numberOfGifLoopsOption, encodingMaxRateOption, encodingBufferSizeOption, delayRenderTimeoutInMillisecondsOption, overwriteOption, binariesDirectoryOption, preferLosslessOption, metadataOption, mediaCacheSizeInBytesOption, darkModeOption, pixelFormatOption, browserExecutableOption, everyNthFrameOption, proResProfileOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, audioCodecOption, videoCodecOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, sampleRateOption, } = client_1.BrowserSafeApis.options;
|
|
27
|
+
const { x264Option, audioBitrateOption, offthreadVideoCacheSizeInBytesOption, offthreadVideoThreadsOption, scaleOption, crfOption, gopSizeOption, jpegQualityOption, videoBitrateOption, mutedOption, colorSpaceOption, deleteAfterOption, enableMultiprocessOnLinuxOption, glOption, headlessOption, numberOfGifLoopsOption, encodingMaxRateOption, encodingBufferSizeOption, delayRenderTimeoutInMillisecondsOption, overwriteOption, binariesDirectoryOption, preferLosslessOption, metadataOption, mediaCacheSizeInBytesOption, darkModeOption, pixelFormatOption, browserExecutableOption, everyNthFrameOption, proResProfileOption, userAgentOption, disableWebSecurityOption, ignoreCertificateErrorsOption, audioCodecOption, videoCodecOption, overrideHeightOption, overrideWidthOption, overrideFpsOption, overrideDurationOption, sampleRateOption, } = client_1.BrowserSafeApis.options;
|
|
28
28
|
const renderCommand = async ({ args, remotionRoot, logLevel, providerSpecifics, }) => {
|
|
29
29
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
30
30
|
const serveUrl = args[0];
|
|
@@ -95,6 +95,9 @@ const renderCommand = async ({ args, remotionRoot, logLevel, providerSpecifics,
|
|
|
95
95
|
const crf = crfOption.getValue({
|
|
96
96
|
commandLine: cli_1.CliInternals.parsedCli,
|
|
97
97
|
}).value;
|
|
98
|
+
const gopSize = gopSizeOption.getValue({
|
|
99
|
+
commandLine: cli_1.CliInternals.parsedCli,
|
|
100
|
+
}).value;
|
|
98
101
|
const jpegQuality = jpegQualityOption.getValue({
|
|
99
102
|
commandLine: cli_1.CliInternals.parsedCli,
|
|
100
103
|
}).value;
|
|
@@ -248,6 +251,7 @@ const renderCommand = async ({ args, remotionRoot, logLevel, providerSpecifics,
|
|
|
248
251
|
codec: codec,
|
|
249
252
|
imageFormat,
|
|
250
253
|
crf: crf !== null && crf !== void 0 ? crf : undefined,
|
|
254
|
+
gopSize,
|
|
251
255
|
envVariables,
|
|
252
256
|
pixelFormat,
|
|
253
257
|
proResProfile,
|
package/dist/esm/index.mjs
CHANGED
|
@@ -8604,7 +8604,7 @@ var require_package = __commonJS((exports, module) => {
|
|
|
8604
8604
|
url: "https://github.com/remotion-dev/remotion/tree/main/packages/lambda"
|
|
8605
8605
|
},
|
|
8606
8606
|
name: "@remotion/lambda",
|
|
8607
|
-
version: "4.0.
|
|
8607
|
+
version: "4.0.466",
|
|
8608
8608
|
description: "Render Remotion videos on AWS Lambda",
|
|
8609
8609
|
main: "dist/index.js",
|
|
8610
8610
|
scripts: {
|
|
@@ -11606,6 +11606,7 @@ var {
|
|
|
11606
11606
|
offthreadVideoThreadsOption,
|
|
11607
11607
|
scaleOption,
|
|
11608
11608
|
crfOption,
|
|
11609
|
+
gopSizeOption,
|
|
11609
11610
|
jpegQualityOption,
|
|
11610
11611
|
videoBitrateOption,
|
|
11611
11612
|
mutedOption,
|
|
@@ -11713,6 +11714,9 @@ var renderCommand = async ({
|
|
|
11713
11714
|
const crf = crfOption.getValue({
|
|
11714
11715
|
commandLine: CliInternals14.parsedCli
|
|
11715
11716
|
}).value;
|
|
11717
|
+
const gopSize = gopSizeOption.getValue({
|
|
11718
|
+
commandLine: CliInternals14.parsedCli
|
|
11719
|
+
}).value;
|
|
11716
11720
|
const jpegQuality = jpegQualityOption.getValue({
|
|
11717
11721
|
commandLine: CliInternals14.parsedCli
|
|
11718
11722
|
}).value;
|
|
@@ -11869,6 +11873,7 @@ var renderCommand = async ({
|
|
|
11869
11873
|
codec,
|
|
11870
11874
|
imageFormat,
|
|
11871
11875
|
crf: crf ?? undefined,
|
|
11876
|
+
gopSize,
|
|
11872
11877
|
envVariables,
|
|
11873
11878
|
pixelFormat,
|
|
11874
11879
|
proResProfile,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/lambda"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/lambda",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.466",
|
|
7
7
|
"description": "Render Remotion videos on AWS Lambda",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"scripts": {
|
|
@@ -28,22 +28,22 @@
|
|
|
28
28
|
"@aws-sdk/client-cloudwatch-logs": "3.986.0",
|
|
29
29
|
"@aws-sdk/client-service-quotas": "3.986.0",
|
|
30
30
|
"@aws-sdk/lib-storage": "3.986.0",
|
|
31
|
-
"@remotion/bundler": "4.0.
|
|
32
|
-
"@remotion/cli": "4.0.
|
|
33
|
-
"@remotion/lambda-client": "4.0.
|
|
34
|
-
"@remotion/renderer": "4.0.
|
|
35
|
-
"@remotion/serverless": "4.0.
|
|
36
|
-
"@remotion/streaming": "4.0.
|
|
31
|
+
"@remotion/bundler": "4.0.466",
|
|
32
|
+
"@remotion/cli": "4.0.466",
|
|
33
|
+
"@remotion/lambda-client": "4.0.466",
|
|
34
|
+
"@remotion/renderer": "4.0.466",
|
|
35
|
+
"@remotion/serverless": "4.0.466",
|
|
36
|
+
"@remotion/streaming": "4.0.466",
|
|
37
37
|
"@smithy/abort-controller": "4.0.1",
|
|
38
|
-
"remotion": "4.0.
|
|
38
|
+
"remotion": "4.0.466",
|
|
39
39
|
"zod": "4.3.6"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@remotion/bundler": "4.0.
|
|
42
|
+
"@remotion/bundler": "4.0.466",
|
|
43
43
|
"@types/express": "5.0.1",
|
|
44
44
|
"express": "4.21.0",
|
|
45
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.
|
|
46
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
45
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.466",
|
|
46
|
+
"@remotion/eslint-config-internal": "4.0.466",
|
|
47
47
|
"mime-types": "2.1.34",
|
|
48
48
|
"@types/mime-types": "2.1.1",
|
|
49
49
|
"@types/minimist": "1.2.2",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"@remotion/bundler": "4.0.
|
|
57
|
+
"@remotion/bundler": "4.0.466"
|
|
58
58
|
},
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public"
|
package/remotionlambda-arm64.zip
CHANGED
|
Binary file
|