@remotion/lambda 4.0.123 → 4.0.125

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.
@@ -128,6 +128,7 @@ const renderCommand = async (args, remotionRoot, logLevel) => {
128
128
  webpackConfigOrServeUrl: serveUrl,
129
129
  offthreadVideoCacheSizeInBytes,
130
130
  binariesDirectory,
131
+ forceIPv4: false,
131
132
  });
132
133
  const { compositionId } = await cli_1.CliInternals.getCompositionWithDimensionOverride({
133
134
  args: args.slice(1),
@@ -75,6 +75,7 @@ const stillCommand = async (args, remotionRoot, logLevel) => {
75
75
  webpackConfigOrServeUrl: serveUrl,
76
76
  offthreadVideoCacheSizeInBytes,
77
77
  binariesDirectory,
78
+ forceIPv4: false,
78
79
  });
79
80
  const { compositionId } = await getCompositionWithDimensionOverride({
80
81
  args: args.slice(1),
@@ -1,3 +1,3 @@
1
1
  import type { AudioCodec } from '@remotion/renderer';
2
- export declare const canConcatAudioSeamlessly: (audioCodec: AudioCodec | null) => boolean;
2
+ export declare const canConcatAudioSeamlessly: (_audioCodec: AudioCodec | null) => boolean;
3
3
  export declare const canConcatVideoSeamlessly: (codec: string) => boolean;
@@ -1,9 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.canConcatVideoSeamlessly = exports.canConcatAudioSeamlessly = void 0;
4
+ // Temporarily disable seamless audio concat
4
5
  // Cannot do WAV yet, because currently assumes AAC in+outpoint
5
- const canConcatAudioSeamlessly = (audioCodec) => {
6
- return audioCodec === 'aac';
6
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
7
+ const canConcatAudioSeamlessly = (_audioCodec) => {
8
+ return false;
7
9
  };
8
10
  exports.canConcatAudioSeamlessly = canConcatAudioSeamlessly;
9
11
  const canConcatVideoSeamlessly = (codec) => {
@@ -81,6 +81,7 @@ const innerStillHandler = async ({ params: lambdaParams, expectedBucketOwner, re
81
81
  webpackConfigOrServeUrl: serveUrl,
82
82
  offthreadVideoCacheSizeInBytes: lambdaParams.offthreadVideoCacheSizeInBytes,
83
83
  binariesDirectory: null,
84
+ forceIPv4: false,
84
85
  });
85
86
  const browserInstance = await browserInstancePromise;
86
87
  const composition = await (0, validate_composition_1.validateComposition)({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/lambda",
3
- "version": "4.0.123",
3
+ "version": "4.0.125",
4
4
  "description": "Distributed renderer for Remotion based on AWS Lambda",
5
5
  "main": "dist/index.js",
6
6
  "sideEffects": false,
@@ -26,10 +26,10 @@
26
26
  "aws-policies": "^1.0.1",
27
27
  "mime-types": "2.1.34",
28
28
  "zod": "3.22.3",
29
- "@remotion/cli": "4.0.123",
30
- "@remotion/renderer": "4.0.123",
31
- "remotion": "4.0.123",
32
- "@remotion/bundler": "4.0.123"
29
+ "@remotion/bundler": "4.0.125",
30
+ "@remotion/cli": "4.0.125",
31
+ "remotion": "4.0.125",
32
+ "@remotion/renderer": "4.0.125"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@jonny/eslint-config": "3.0.276",
@@ -43,11 +43,11 @@
43
43
  "ts-node": "^10.8.0",
44
44
  "vitest": "0.31.1",
45
45
  "zip-lib": "^0.7.2",
46
- "@remotion/bundler": "4.0.123",
47
- "@remotion/compositor-linux-arm64-gnu": "4.0.123"
46
+ "@remotion/bundler": "4.0.125",
47
+ "@remotion/compositor-linux-arm64-gnu": "4.0.125"
48
48
  },
49
49
  "peerDependencies": {
50
- "@remotion/bundler": "4.0.123"
50
+ "@remotion/bundler": "4.0.125"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
Binary file