@remotion/lambda 4.0.123 → 4.0.124

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.
@@ -3,8 +3,5 @@ export declare const planFrameRanges: ({ framesPerLambda, frameRange, everyNthFr
3
3
  frameRange: [number, number];
4
4
  everyNthFrame: number;
5
5
  }) => {
6
- chunks: [
7
- number,
8
- number
9
- ][];
6
+ chunks: [number, number][];
10
7
  };
@@ -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) => {
@@ -1,3 +1,5 @@
1
+ /// <reference types="node" />
2
+ /// <reference types="node" />
1
3
  import type { LogLevel } from '@remotion/renderer';
2
4
  import https from 'https';
3
5
  import http from 'node:http';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/lambda",
3
- "version": "4.0.123",
3
+ "version": "4.0.124",
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.124",
30
+ "@remotion/renderer": "4.0.124",
31
+ "@remotion/cli": "4.0.124",
32
+ "remotion": "4.0.124"
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.124",
47
+ "@remotion/compositor-linux-arm64-gnu": "4.0.124"
48
48
  },
49
49
  "peerDependencies": {
50
- "@remotion/bundler": "4.0.123"
50
+ "@remotion/bundler": "4.0.124"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public"
Binary file