@remotion/cloudrun 4.0.122 → 4.0.123

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.
@@ -1,15 +1,15 @@
1
1
 
2
2
  
3
- > @remotion/cloudrun@4.0.121 build /Users/jonathanburger/remotion/packages/cloudrun
3
+ > @remotion/cloudrun@4.0.122 build /Users/jonathanburger/remotion/packages/cloudrun
4
4
  > tsc -d && cp src/shared/sa-permissions.json dist/shared/sa-permissions.json && pnpm run buildContainer && pnpm run tarInstaller
5
5
 
6
6
 
7
- > @remotion/cloudrun@4.0.121 buildContainer /Users/jonathanburger/remotion/packages/cloudrun
7
+ > @remotion/cloudrun@4.0.122 buildContainer /Users/jonathanburger/remotion/packages/cloudrun
8
8
  > ts-node src/admin/bundle-renderLogic.ts
9
9
 
10
10
  distribution bundled.
11
11
 
12
- > @remotion/cloudrun@4.0.121 tarInstaller /Users/jonathanburger/remotion/packages/cloudrun
12
+ > @remotion/cloudrun@4.0.122 tarInstaller /Users/jonathanburger/remotion/packages/cloudrun
13
13
  > ts-node src/admin/bundle-installer.ts
14
14
 
15
15
  Making reproducible build with gtar
@@ -5,7 +5,7 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
5
5
  composition: z.ZodString;
6
6
  forceHeight: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
7
7
  forceWidth: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
8
- codec: z.ZodEnum<["h264", "h265", "vp8", "vp9", "mp3", "aac", "wav", "prores", "h264-mkv", "gif"]>;
8
+ codec: z.ZodEnum<["h264", "h265", "vp8", "vp9", "mp3", "aac", "wav", "prores", "h264-mkv", "h264-ts", "gif"]>;
9
9
  serializedInputPropsWithCustomSchema: z.ZodString;
10
10
  jpegQuality: z.ZodNullable<z.ZodNumber>;
11
11
  audioCodec: z.ZodNullable<z.ZodEnum<["pcm-16", "aac", "mp3", "opus"]>>;
@@ -58,7 +58,7 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
58
58
  type: "media";
59
59
  serveUrl: string;
60
60
  composition: string;
61
- codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
61
+ codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "h264-ts" | "gif";
62
62
  serializedInputPropsWithCustomSchema: string;
63
63
  jpegQuality: number | null;
64
64
  audioCodec: "mp3" | "aac" | "pcm-16" | "opus" | null;
@@ -101,7 +101,7 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
101
101
  type: "media";
102
102
  serveUrl: string;
103
103
  composition: string;
104
- codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
104
+ codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "h264-ts" | "gif";
105
105
  serializedInputPropsWithCustomSchema: string;
106
106
  jpegQuality: number | null;
107
107
  audioCodec: "mp3" | "aac" | "pcm-16" | "opus" | null;
@@ -95,6 +95,8 @@ const renderMediaSingleThread = async (body, res) => {
95
95
  repro: false,
96
96
  finishRenderProgress: () => undefined,
97
97
  binariesDirectory: null,
98
+ separateAudioTo: null,
99
+ forSeamlessAacConcatenation: false,
98
100
  });
99
101
  const storage = new storage_1.Storage();
100
102
  const publicUpload = body.privacy === 'public' || !body.privacy;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/cloudrun",
3
- "version": "4.0.122",
3
+ "version": "4.0.123",
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.22.3",
15
- "@remotion/bundler": "4.0.122",
16
- "@remotion/cli": "4.0.122",
17
- "remotion": "4.0.122",
18
- "@remotion/renderer": "4.0.122"
15
+ "@remotion/bundler": "4.0.123",
16
+ "@remotion/cli": "4.0.123",
17
+ "remotion": "4.0.123",
18
+ "@remotion/renderer": "4.0.123"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@jonny/eslint-config": "3.0.276",
@@ -26,7 +26,7 @@
26
26
  "prettier-plugin-organize-imports": "^3.2.4",
27
27
  "ts-node": "^10.8.0",
28
28
  "vitest": "0.31.1",
29
- "@remotion/compositor-linux-x64-gnu": "4.0.122"
29
+ "@remotion/compositor-linux-x64-gnu": "4.0.123"
30
30
  },
31
31
  "exports": {
32
32
  "./package.json": "./package.json",