@remotion/lambda 4.0.0-prefetch.10 → 4.0.0-prefetch.9
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/functions/chunk-optimization/get-frame-ranges-from-profile.d.ts +4 -1
- package/dist/functions/chunk-optimization/optimize-profile.d.ts +8 -2
- package/dist/functions/chunk-optimization/plan-frame-ranges.d.ts +4 -1
- package/dist/functions/chunk-optimization/simulate-frame-ranges.d.ts +4 -1
- package/package.json +6 -6
- package/remotionlambda.zip +0 -0
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
import type { TimingProfile } from './types';
|
|
2
|
-
export declare const getFrameRangesFromProfile: (profile: TimingProfile) => [
|
|
2
|
+
export declare const getFrameRangesFromProfile: (profile: TimingProfile) => [
|
|
3
|
+
number,
|
|
4
|
+
number
|
|
5
|
+
][];
|
|
3
6
|
export declare const sortProfileByFrameRanges: (profile: TimingProfile) => import("./types").ChunkTimingData[];
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import type { TimingProfile } from './types';
|
|
2
2
|
export declare const assignFrameToOther: ({ frameRanges, fromChunk, toChunk, framesToShift, }: {
|
|
3
|
-
frameRanges: [
|
|
3
|
+
frameRanges: [
|
|
4
|
+
number,
|
|
5
|
+
number
|
|
6
|
+
][];
|
|
4
7
|
fromChunk: number;
|
|
5
8
|
toChunk: number;
|
|
6
9
|
framesToShift: number;
|
|
7
|
-
}) => [
|
|
10
|
+
}) => [
|
|
11
|
+
number,
|
|
12
|
+
number
|
|
13
|
+
][];
|
|
8
14
|
export declare const optimizeProfile: (_profile: TimingProfile) => TimingProfile;
|
|
9
15
|
export declare const optimizeProfileRecursively: (profile: TimingProfile, amount: number) => TimingProfile;
|
|
@@ -3,5 +3,8 @@ export declare const getTimingForFrame: (profile: TimingProfile, frame: number)
|
|
|
3
3
|
export declare const getSimulatedTimingForFrameRange: (profile: TimingProfile, frameRange: [number, number]) => ChunkTimingData['timings'];
|
|
4
4
|
export declare const simulateFrameRanges: ({ profile, newFrameRanges, }: {
|
|
5
5
|
profile: TimingProfile;
|
|
6
|
-
newFrameRanges: [
|
|
6
|
+
newFrameRanges: [
|
|
7
|
+
number,
|
|
8
|
+
number
|
|
9
|
+
][];
|
|
7
10
|
}) => TimingProfile;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/lambda",
|
|
3
|
-
"version": "4.0.0-prefetch.
|
|
3
|
+
"version": "4.0.0-prefetch.9+4cce2229d",
|
|
4
4
|
"description": "Distributed renderer for Remotion based on AWS Lambda",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/client-service-quotas": "3.58.0",
|
|
33
33
|
"@aws-sdk/lib-storage": "3.58.0",
|
|
34
34
|
"@aws-sdk/s3-request-presigner": "3.58.0",
|
|
35
|
-
"@remotion/bundler": "4.0.0-prefetch.
|
|
36
|
-
"@remotion/cli": "4.0.0-prefetch.
|
|
37
|
-
"@remotion/renderer": "4.0.0-prefetch.
|
|
35
|
+
"@remotion/bundler": "4.0.0-prefetch.9+4cce2229d",
|
|
36
|
+
"@remotion/cli": "4.0.0-prefetch.9+4cce2229d",
|
|
37
|
+
"@remotion/renderer": "4.0.0-prefetch.9+4cce2229d",
|
|
38
38
|
"aws-policies": "^1.0.1",
|
|
39
39
|
"mime-types": "2.1.34",
|
|
40
|
-
"remotion": "4.0.0-prefetch.
|
|
40
|
+
"remotion": "4.0.0-prefetch.9+4cce2229d"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"react": ">=16.8.0",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"publishConfig": {
|
|
63
63
|
"access": "public"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "4cce2229dff47deccf90caea5d6412bf9179145a"
|
|
66
66
|
}
|
package/remotionlambda.zip
CHANGED
|
Binary file
|