@remotion/cloudrun 4.0.30 → 4.0.31
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/.turbo/turbo-build.log
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
> @remotion/cloudrun@4.0.
|
|
2
|
+
> @remotion/cloudrun@4.0.30 build /Users/jonathanburger/remotion/packages/cloudrun
|
|
3
3
|
> tsc -d && cp src/shared/sa-permissions.json dist/shared/sa-permissions.json && pnpm run buildContainer && pnpm run tarInstaller
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @remotion/cloudrun@4.0.
|
|
6
|
+
> @remotion/cloudrun@4.0.30 buildContainer /Users/jonathanburger/remotion/packages/cloudrun
|
|
7
7
|
> ts-node src/admin/bundle-renderLogic.ts
|
|
8
8
|
|
|
9
9
|
distribution bundled.
|
|
10
10
|
|
|
11
|
-
> @remotion/cloudrun@4.0.
|
|
11
|
+
> @remotion/cloudrun@4.0.30 tarInstaller /Users/jonathanburger/remotion/packages/cloudrun
|
|
12
12
|
> ts-node src/admin/bundle-installer.ts
|
|
13
13
|
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
package/dist/cli/log.d.ts
CHANGED
|
@@ -2,24 +2,24 @@ export declare const Log: {
|
|
|
2
2
|
verbose: (message?: any, ...optionalParams: any[]) => void;
|
|
3
3
|
verboseAdvanced: (options: {
|
|
4
4
|
indent: boolean;
|
|
5
|
-
logLevel: "
|
|
5
|
+
logLevel: "error" | "verbose" | "info" | "warn";
|
|
6
6
|
} & {
|
|
7
7
|
tag?: string | undefined;
|
|
8
8
|
}, message?: any, ...optionalParams: any[]) => void;
|
|
9
9
|
info: (message?: any, ...optionalParams: any[]) => void;
|
|
10
10
|
infoAdvanced: (options: {
|
|
11
11
|
indent: boolean;
|
|
12
|
-
logLevel: "
|
|
12
|
+
logLevel: "error" | "verbose" | "info" | "warn";
|
|
13
13
|
}, message?: any, ...optionalParams: any[]) => void;
|
|
14
14
|
warn: (message?: any, ...optionalParams: any[]) => void;
|
|
15
15
|
warnAdvanced: (options: {
|
|
16
16
|
indent: boolean;
|
|
17
|
-
logLevel: "
|
|
17
|
+
logLevel: "error" | "verbose" | "info" | "warn";
|
|
18
18
|
}, message?: any, ...optionalParams: any[]) => void;
|
|
19
19
|
error: (message?: any, ...optionalParams: any[]) => void;
|
|
20
20
|
errorAdvanced: (options: {
|
|
21
21
|
indent: boolean;
|
|
22
|
-
logLevel: "
|
|
22
|
+
logLevel: "error" | "verbose" | "info" | "warn";
|
|
23
23
|
} & {
|
|
24
24
|
tag?: string | undefined;
|
|
25
25
|
}, message?: any, ...optionalParams: any[]) => void;
|
|
@@ -52,34 +52,34 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
52
52
|
offthreadVideoCacheSizeInBytes: z.ZodNullable<z.ZodNumber>;
|
|
53
53
|
colorSpace: z.ZodEnum<["default", "bt709"]>;
|
|
54
54
|
}, "strip", z.ZodTypeAny, {
|
|
55
|
-
serveUrl: string;
|
|
56
|
-
envVariables: Record<string, string>;
|
|
57
|
-
jpegQuality: number;
|
|
58
|
-
scale: number;
|
|
59
|
-
logLevel: "verbose" | "info" | "warn" | "error";
|
|
60
|
-
offthreadVideoCacheSizeInBytes: number | null;
|
|
61
55
|
type: "media";
|
|
56
|
+
serveUrl: string;
|
|
62
57
|
composition: string;
|
|
63
|
-
imageFormat: "png" | "jpeg" | "none";
|
|
64
|
-
delayRenderTimeoutInMilliseconds: number;
|
|
65
58
|
codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
59
|
+
serializedInputPropsWithCustomSchema: string;
|
|
60
|
+
jpegQuality: number;
|
|
61
|
+
audioCodec: "mp3" | "aac" | "pcm-16" | "opus" | null;
|
|
62
|
+
audioBitrate: string | null;
|
|
63
|
+
videoBitrate: string | null;
|
|
66
64
|
crf: number | null;
|
|
67
|
-
frameRange: ((number | [number, number]) & (number | [number, number] | undefined)) | null;
|
|
68
65
|
pixelFormat: "yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
|
|
66
|
+
imageFormat: "png" | "jpeg" | "none";
|
|
67
|
+
scale: number;
|
|
69
68
|
proResProfile: "4444-xq" | "4444" | "hq" | "standard" | "light" | "proxy" | null;
|
|
69
|
+
x264Preset: "ultrafast" | "superfast" | "veryfast" | "faster" | "fast" | "medium" | "slow" | "slower" | "veryslow" | "placebo" | null;
|
|
70
70
|
everyNthFrame: number;
|
|
71
71
|
numberOfGifLoops: number | null;
|
|
72
|
+
frameRange: ((number | [number, number]) & (number | [number, number] | undefined)) | null;
|
|
73
|
+
envVariables: Record<string, string>;
|
|
72
74
|
muted: boolean;
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
audioCodec: "mp3" | "aac" | "pcm-16" | "opus" | null;
|
|
77
|
-
x264Preset: "ultrafast" | "superfast" | "veryfast" | "faster" | "fast" | "medium" | "slow" | "slower" | "veryslow" | "placebo" | null;
|
|
75
|
+
outputBucket: string;
|
|
76
|
+
logLevel: "error" | "verbose" | "info" | "warn";
|
|
77
|
+
delayRenderTimeoutInMilliseconds: number;
|
|
78
78
|
concurrency: string | number | null;
|
|
79
|
+
enforceAudioTrack: boolean;
|
|
79
80
|
preferLossless: boolean;
|
|
81
|
+
offthreadVideoCacheSizeInBytes: number | null;
|
|
80
82
|
colorSpace: "default" | "bt709";
|
|
81
|
-
serializedInputPropsWithCustomSchema: string;
|
|
82
|
-
outputBucket: string;
|
|
83
83
|
forceHeight?: number | null | undefined;
|
|
84
84
|
forceWidth?: number | null | undefined;
|
|
85
85
|
chromiumOptions?: {
|
|
@@ -92,34 +92,34 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
92
92
|
outName?: string | undefined;
|
|
93
93
|
privacy?: "public" | "private" | undefined;
|
|
94
94
|
}, {
|
|
95
|
-
serveUrl: string;
|
|
96
|
-
envVariables: Record<string, string>;
|
|
97
|
-
jpegQuality: number;
|
|
98
|
-
scale: number;
|
|
99
|
-
logLevel: "verbose" | "info" | "warn" | "error";
|
|
100
|
-
offthreadVideoCacheSizeInBytes: number | null;
|
|
101
95
|
type: "media";
|
|
96
|
+
serveUrl: string;
|
|
102
97
|
composition: string;
|
|
103
|
-
imageFormat: "png" | "jpeg" | "none";
|
|
104
|
-
delayRenderTimeoutInMilliseconds: number;
|
|
105
98
|
codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
99
|
+
serializedInputPropsWithCustomSchema: string;
|
|
100
|
+
jpegQuality: number;
|
|
101
|
+
audioCodec: "mp3" | "aac" | "pcm-16" | "opus" | null;
|
|
102
|
+
audioBitrate: string | null;
|
|
103
|
+
videoBitrate: string | null;
|
|
106
104
|
crf: number | null;
|
|
107
|
-
frameRange: ((number | [number, number]) & (number | [number, number] | undefined)) | null;
|
|
108
105
|
pixelFormat: "yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
|
|
106
|
+
imageFormat: "png" | "jpeg" | "none";
|
|
107
|
+
scale: number;
|
|
109
108
|
proResProfile: "4444-xq" | "4444" | "hq" | "standard" | "light" | "proxy" | null;
|
|
109
|
+
x264Preset: "ultrafast" | "superfast" | "veryfast" | "faster" | "fast" | "medium" | "slow" | "slower" | "veryslow" | "placebo" | null;
|
|
110
110
|
everyNthFrame: number;
|
|
111
111
|
numberOfGifLoops: number | null;
|
|
112
|
+
frameRange: ((number | [number, number]) & (number | [number, number] | undefined)) | null;
|
|
113
|
+
envVariables: Record<string, string>;
|
|
112
114
|
muted: boolean;
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
audioCodec: "mp3" | "aac" | "pcm-16" | "opus" | null;
|
|
117
|
-
x264Preset: "ultrafast" | "superfast" | "veryfast" | "faster" | "fast" | "medium" | "slow" | "slower" | "veryslow" | "placebo" | null;
|
|
115
|
+
outputBucket: string;
|
|
116
|
+
logLevel: "error" | "verbose" | "info" | "warn";
|
|
117
|
+
delayRenderTimeoutInMilliseconds: number;
|
|
118
118
|
concurrency: string | number | null;
|
|
119
|
+
enforceAudioTrack: boolean;
|
|
119
120
|
preferLossless: boolean;
|
|
121
|
+
offthreadVideoCacheSizeInBytes: number | null;
|
|
120
122
|
colorSpace: "default" | "bt709";
|
|
121
|
-
serializedInputPropsWithCustomSchema: string;
|
|
122
|
-
outputBucket: string;
|
|
123
123
|
forceHeight?: number | null | undefined;
|
|
124
124
|
forceWidth?: number | null | undefined;
|
|
125
125
|
chromiumOptions?: {
|
|
@@ -169,19 +169,19 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
169
169
|
logLevel: z.ZodEnum<["verbose", "info", "warn", "error"]>;
|
|
170
170
|
offthreadVideoCacheSizeInBytes: z.ZodNullable<z.ZodNumber>;
|
|
171
171
|
}, "strip", z.ZodTypeAny, {
|
|
172
|
-
privacy: "public" | "private";
|
|
173
|
-
serveUrl: string;
|
|
174
|
-
envVariables: Record<string, string>;
|
|
175
|
-
scale: number;
|
|
176
|
-
logLevel: "verbose" | "info" | "warn" | "error";
|
|
177
|
-
offthreadVideoCacheSizeInBytes: number | null;
|
|
178
172
|
type: "still";
|
|
173
|
+
serveUrl: string;
|
|
179
174
|
composition: string;
|
|
180
|
-
imageFormat: "png" | "jpeg" | "pdf" | "webp";
|
|
181
|
-
frame: number;
|
|
182
|
-
delayRenderTimeoutInMilliseconds: number;
|
|
183
175
|
serializedInputPropsWithCustomSchema: string;
|
|
176
|
+
imageFormat: "png" | "jpeg" | "pdf" | "webp";
|
|
177
|
+
scale: number;
|
|
178
|
+
envVariables: Record<string, string>;
|
|
184
179
|
outputBucket: string;
|
|
180
|
+
privacy: "public" | "private";
|
|
181
|
+
logLevel: "error" | "verbose" | "info" | "warn";
|
|
182
|
+
delayRenderTimeoutInMilliseconds: number;
|
|
183
|
+
offthreadVideoCacheSizeInBytes: number | null;
|
|
184
|
+
frame: number;
|
|
185
185
|
forceHeight?: number | null | undefined;
|
|
186
186
|
forceWidth?: number | null | undefined;
|
|
187
187
|
jpegQuality?: number | undefined;
|
|
@@ -194,19 +194,19 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
194
194
|
} | undefined;
|
|
195
195
|
outName?: string | undefined;
|
|
196
196
|
}, {
|
|
197
|
-
privacy: "public" | "private";
|
|
198
|
-
serveUrl: string;
|
|
199
|
-
envVariables: Record<string, string>;
|
|
200
|
-
scale: number;
|
|
201
|
-
logLevel: "verbose" | "info" | "warn" | "error";
|
|
202
|
-
offthreadVideoCacheSizeInBytes: number | null;
|
|
203
197
|
type: "still";
|
|
198
|
+
serveUrl: string;
|
|
204
199
|
composition: string;
|
|
205
|
-
imageFormat: "png" | "jpeg" | "pdf" | "webp";
|
|
206
|
-
frame: number;
|
|
207
|
-
delayRenderTimeoutInMilliseconds: number;
|
|
208
200
|
serializedInputPropsWithCustomSchema: string;
|
|
201
|
+
imageFormat: "png" | "jpeg" | "pdf" | "webp";
|
|
202
|
+
scale: number;
|
|
203
|
+
envVariables: Record<string, string>;
|
|
209
204
|
outputBucket: string;
|
|
205
|
+
privacy: "public" | "private";
|
|
206
|
+
logLevel: "error" | "verbose" | "info" | "warn";
|
|
207
|
+
delayRenderTimeoutInMilliseconds: number;
|
|
208
|
+
offthreadVideoCacheSizeInBytes: number | null;
|
|
209
|
+
frame: number;
|
|
210
210
|
forceHeight?: number | null | undefined;
|
|
211
211
|
forceWidth?: number | null | undefined;
|
|
212
212
|
jpegQuality?: number | undefined;
|
|
@@ -244,16 +244,16 @@ declare const renderStillOnCloudrunResponsePayload: z.ZodObject<{
|
|
|
244
244
|
renderId: z.ZodString;
|
|
245
245
|
privacy: z.ZodEnum<["public-read", "project-private"]>;
|
|
246
246
|
}, "strip", z.ZodTypeAny, {
|
|
247
|
-
privacy: "public-read" | "project-private";
|
|
248
247
|
type: "success";
|
|
248
|
+
privacy: "public-read" | "project-private";
|
|
249
249
|
cloudStorageUri: string;
|
|
250
250
|
size: number;
|
|
251
251
|
bucketName: string;
|
|
252
252
|
renderId: string;
|
|
253
253
|
publicUrl?: string | null | undefined;
|
|
254
254
|
}, {
|
|
255
|
-
privacy: "public-read" | "project-private";
|
|
256
255
|
type: "success";
|
|
256
|
+
privacy: "public-read" | "project-private";
|
|
257
257
|
cloudStorageUri: string;
|
|
258
258
|
size: number;
|
|
259
259
|
bucketName: string;
|
|
@@ -269,16 +269,16 @@ declare const renderMediaOnCloudrunResponsePayload: z.ZodObject<{
|
|
|
269
269
|
renderId: z.ZodString;
|
|
270
270
|
privacy: z.ZodEnum<["public-read", "project-private"]>;
|
|
271
271
|
}, "strip", z.ZodTypeAny, {
|
|
272
|
-
privacy: "public-read" | "project-private";
|
|
273
272
|
type: "success";
|
|
273
|
+
privacy: "public-read" | "project-private";
|
|
274
274
|
cloudStorageUri: string;
|
|
275
275
|
size: number;
|
|
276
276
|
bucketName: string;
|
|
277
277
|
renderId: string;
|
|
278
278
|
publicUrl?: string | null | undefined;
|
|
279
279
|
}, {
|
|
280
|
-
privacy: "public-read" | "project-private";
|
|
281
280
|
type: "success";
|
|
281
|
+
privacy: "public-read" | "project-private";
|
|
282
282
|
cloudStorageUri: string;
|
|
283
283
|
size: number;
|
|
284
284
|
bucketName: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/cloudrun",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.31",
|
|
4
4
|
"description": "GCP Cloud Run alternative to lambda rendering",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"dependencies": {
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"@google-cloud/logging": "^10.5.0",
|
|
13
13
|
"google-auth-library": "^8.7.0",
|
|
14
14
|
"zod": "^3.21.4",
|
|
15
|
-
"@remotion/bundler": "4.0.
|
|
16
|
-
"
|
|
17
|
-
"@remotion/cli": "4.0.
|
|
18
|
-
"remotion": "4.0.
|
|
15
|
+
"@remotion/bundler": "4.0.31",
|
|
16
|
+
"remotion": "4.0.31",
|
|
17
|
+
"@remotion/cli": "4.0.31",
|
|
18
|
+
"@remotion/renderer": "4.0.31"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@jonny/eslint-config": "3.0.266",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"prettier-plugin-organize-imports": "^3.2.2",
|
|
27
27
|
"ts-node": "^10.8.0",
|
|
28
28
|
"vitest": "0.24.3",
|
|
29
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
29
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.31"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|
|
32
32
|
"./package.json": "./package.json",
|