@remotion/cloudrun 4.0.427 → 4.0.428
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/api/deploy-site.js
CHANGED
|
@@ -13,7 +13,7 @@ const validate_site_name_1 = require("../shared/validate-site-name");
|
|
|
13
13
|
const get_cloud_storage_client_1 = require("./helpers/get-cloud-storage-client");
|
|
14
14
|
const upload_dir_1 = require("./upload-dir");
|
|
15
15
|
const internalDeploySiteRaw = async ({ entryPoint, bucketName, siteName, options, privacy, }) => {
|
|
16
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
|
|
16
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
17
17
|
(0, validate_bucketname_1.validateBucketName)(bucketName, { mustStartWithRemotion: true });
|
|
18
18
|
(0, validate_site_name_1.validateSiteName)(siteName);
|
|
19
19
|
const cloudStorageClient = (0, get_cloud_storage_client_1.getCloudStorageClient)();
|
|
@@ -44,10 +44,11 @@ const internalDeploySiteRaw = async ({ entryPoint, bucketName, siteName, options
|
|
|
44
44
|
outDir: null,
|
|
45
45
|
audioLatencyHint: null,
|
|
46
46
|
experimentalClientSideRenderingEnabled: (_h = options === null || options === void 0 ? void 0 : options.experimentalClientSideRenderingEnabled) !== null && _h !== void 0 ? _h : false,
|
|
47
|
+
experimentalVisualModeEnabled: (_j = options === null || options === void 0 ? void 0 : options.experimentalVisualModeEnabled) !== null && _j !== void 0 ? _j : false,
|
|
47
48
|
renderDefaults: null,
|
|
48
|
-
askAIEnabled: (
|
|
49
|
-
keyboardShortcutsEnabled: (
|
|
50
|
-
rspack: (
|
|
49
|
+
askAIEnabled: (_k = options === null || options === void 0 ? void 0 : options.askAIEnabled) !== null && _k !== void 0 ? _k : true,
|
|
50
|
+
keyboardShortcutsEnabled: (_l = options === null || options === void 0 ? void 0 : options.keyboardShortcutsEnabled) !== null && _l !== void 0 ? _l : true,
|
|
51
|
+
rspack: (_m = options === null || options === void 0 ? void 0 : options.rspack) !== null && _m !== void 0 ? _m : false,
|
|
51
52
|
}),
|
|
52
53
|
]);
|
|
53
54
|
const { toDelete, toUpload, existingCount } = await (0, get_storage_operations_1.getStorageDiffOperations)({
|
|
@@ -59,7 +60,7 @@ const internalDeploySiteRaw = async ({ entryPoint, bucketName, siteName, options
|
|
|
59
60
|
(0, upload_dir_1.uploadDir)({
|
|
60
61
|
bucket: bucketName,
|
|
61
62
|
localDir: bundled,
|
|
62
|
-
onProgress: (
|
|
63
|
+
onProgress: (_o = options === null || options === void 0 ? void 0 : options.onUploadProgress) !== null && _o !== void 0 ? _o : (() => undefined),
|
|
63
64
|
keyPrefix: subFolder,
|
|
64
65
|
toUpload,
|
|
65
66
|
privacy: privacy !== null && privacy !== void 0 ? privacy : 'public',
|
|
@@ -31,13 +31,6 @@ type OptionalParameters = {
|
|
|
31
31
|
} & ToOptions<typeof BrowserSafeApis.optionsMap.renderStillOnCloudRun>;
|
|
32
32
|
export type RenderStillOnCloudrunInput = Partial<OptionalParameters> & MandatoryParameters;
|
|
33
33
|
export declare const renderStillOnCloudrun: (options: RenderStillOnCloudrunInput) => Promise<{
|
|
34
|
-
type: "crash";
|
|
35
|
-
cloudRunEndpoint: string;
|
|
36
|
-
message: "Service crashed without sending a response. Check the logs in GCP console.";
|
|
37
|
-
requestStartTime: string;
|
|
38
|
-
requestCrashTime: string;
|
|
39
|
-
requestElapsedTimeInSeconds: number;
|
|
40
|
-
} | {
|
|
41
34
|
type: "success";
|
|
42
35
|
publicUrl?: string | null | undefined;
|
|
43
36
|
cloudStorageUri: string;
|
|
@@ -50,5 +43,12 @@ export declare const renderStillOnCloudrun: (options: RenderStillOnCloudrunInput
|
|
|
50
43
|
message: string;
|
|
51
44
|
name: string;
|
|
52
45
|
stack: string;
|
|
46
|
+
} | {
|
|
47
|
+
type: "crash";
|
|
48
|
+
cloudRunEndpoint: string;
|
|
49
|
+
message: "Service crashed without sending a response. Check the logs in GCP console.";
|
|
50
|
+
requestStartTime: string;
|
|
51
|
+
requestCrashTime: string;
|
|
52
|
+
requestElapsedTimeInSeconds: number;
|
|
53
53
|
}>;
|
|
54
54
|
export {};
|
|
@@ -16,7 +16,7 @@ const get_gcp_region_1 = require("../../get-gcp-region");
|
|
|
16
16
|
const progress_bar_1 = require("../../helpers/progress-bar");
|
|
17
17
|
const quit_1 = require("../../helpers/quit");
|
|
18
18
|
const log_1 = require("../../log");
|
|
19
|
-
const { disableGitSourceOption, askAIOption, experimentalClientSideRenderingOption, keyboardShortcutsOption, } = client_1.BrowserSafeApis.options;
|
|
19
|
+
const { disableGitSourceOption, askAIOption, experimentalClientSideRenderingOption, experimentalVisualModeOption, keyboardShortcutsOption, } = client_1.BrowserSafeApis.options;
|
|
20
20
|
exports.SITES_CREATE_SUBCOMMAND = 'create';
|
|
21
21
|
const sitesCreateSubcommand = async (args, remotionRoot, logLevel) => {
|
|
22
22
|
var _a, _b, _c;
|
|
@@ -103,6 +103,9 @@ const sitesCreateSubcommand = async (args, remotionRoot, logLevel) => {
|
|
|
103
103
|
const experimentalClientSideRenderingEnabled = experimentalClientSideRenderingOption.getValue({
|
|
104
104
|
commandLine: cli_1.CliInternals.parsedCli,
|
|
105
105
|
}).value;
|
|
106
|
+
const experimentalVisualModeEnabled = experimentalVisualModeOption.getValue({
|
|
107
|
+
commandLine: cli_1.CliInternals.parsedCli,
|
|
108
|
+
}).value;
|
|
106
109
|
const keyboardShortcutsEnabled = keyboardShortcutsOption.getValue({
|
|
107
110
|
commandLine: cli_1.CliInternals.parsedCli,
|
|
108
111
|
}).value;
|
|
@@ -140,6 +143,7 @@ const sitesCreateSubcommand = async (args, remotionRoot, logLevel) => {
|
|
|
140
143
|
rootDir: remotionRoot,
|
|
141
144
|
askAIEnabled,
|
|
142
145
|
experimentalClientSideRenderingEnabled,
|
|
146
|
+
experimentalVisualModeEnabled,
|
|
143
147
|
keyboardShortcutsEnabled,
|
|
144
148
|
},
|
|
145
149
|
indent: false,
|
package/dist/index.d.ts
CHANGED
|
@@ -17,13 +17,6 @@ import type { GcpRegion } from './pricing/gcp-regions';
|
|
|
17
17
|
* @deprecated Import this from `@remotion/cloudrun/client` instead
|
|
18
18
|
*/
|
|
19
19
|
declare const renderMediaOnCloudrun: ({ cloudRunUrl, serviceName, region, serveUrl, composition, inputProps, codec, forceBucketName, privacy, outName, updateRenderProgress, jpegQuality, audioCodec, audioBitrate, videoBitrate, encodingMaxRate, encodingBufferSize, proResProfile, x264Preset, crf, pixelFormat, imageFormat, scale, everyNthFrame, numberOfGifLoops, frameRange, envVariables, chromiumOptions, muted, forceWidth, forceHeight, forceFps, forceDurationInFrames, logLevel, delayRenderTimeoutInMilliseconds, concurrency, enforceAudioTrack, preferLossless, offthreadVideoCacheSizeInBytes, colorSpace, downloadBehavior, metadata, renderIdOverride, renderStatusWebhook, offthreadVideoThreads, mediaCacheSizeInBytes, }: RenderMediaOnCloudrunInput) => Promise<{
|
|
20
|
-
type: "crash";
|
|
21
|
-
cloudRunEndpoint: string;
|
|
22
|
-
message: "Service crashed without sending a response. Check the logs in GCP console.";
|
|
23
|
-
requestStartTime: string;
|
|
24
|
-
requestCrashTime: string;
|
|
25
|
-
requestElapsedTimeInSeconds: number;
|
|
26
|
-
} | {
|
|
27
20
|
type: "success";
|
|
28
21
|
publicUrl?: string | null | undefined;
|
|
29
22
|
cloudStorageUri: string;
|
|
@@ -31,18 +24,18 @@ declare const renderMediaOnCloudrun: ({ cloudRunUrl, serviceName, region, serveU
|
|
|
31
24
|
bucketName: string;
|
|
32
25
|
renderId: string;
|
|
33
26
|
privacy: "project-private" | "public-read";
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* @deprecated Import this from `@remotion/cloudrun/client` instead
|
|
37
|
-
*/
|
|
38
|
-
declare const renderStillOnCloudrun: (options: import("./client").RenderStillOnCloudrunInput) => Promise<{
|
|
27
|
+
} | {
|
|
39
28
|
type: "crash";
|
|
40
29
|
cloudRunEndpoint: string;
|
|
41
30
|
message: "Service crashed without sending a response. Check the logs in GCP console.";
|
|
42
31
|
requestStartTime: string;
|
|
43
32
|
requestCrashTime: string;
|
|
44
33
|
requestElapsedTimeInSeconds: number;
|
|
45
|
-
}
|
|
34
|
+
}>;
|
|
35
|
+
/**
|
|
36
|
+
* @deprecated Import this from `@remotion/cloudrun/client` instead
|
|
37
|
+
*/
|
|
38
|
+
declare const renderStillOnCloudrun: (options: import("./client").RenderStillOnCloudrunInput) => Promise<{
|
|
46
39
|
type: "success";
|
|
47
40
|
publicUrl?: string | null | undefined;
|
|
48
41
|
cloudStorageUri: string;
|
|
@@ -55,6 +48,13 @@ declare const renderStillOnCloudrun: (options: import("./client").RenderStillOnC
|
|
|
55
48
|
message: string;
|
|
56
49
|
name: string;
|
|
57
50
|
stack: string;
|
|
51
|
+
} | {
|
|
52
|
+
type: "crash";
|
|
53
|
+
cloudRunEndpoint: string;
|
|
54
|
+
message: "Service crashed without sending a response. Check the logs in GCP console.";
|
|
55
|
+
requestStartTime: string;
|
|
56
|
+
requestCrashTime: string;
|
|
57
|
+
requestElapsedTimeInSeconds: number;
|
|
58
58
|
}>;
|
|
59
59
|
/**
|
|
60
60
|
* @deprecated Import this from `@remotion/lambda/client` instead
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/cloudrun"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/cloudrun",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.428",
|
|
7
7
|
"description": "Render Remotion videos on Google Cloud Run",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"@google-cloud/storage": "7.15.2",
|
|
22
22
|
"@google-cloud/resource-manager": "5.3.1",
|
|
23
23
|
"@google-cloud/logging": "11.2.0",
|
|
24
|
-
"@remotion/bundler": "4.0.
|
|
25
|
-
"@remotion/cli": "4.0.
|
|
26
|
-
"@remotion/renderer": "4.0.
|
|
24
|
+
"@remotion/bundler": "4.0.428",
|
|
25
|
+
"@remotion/cli": "4.0.428",
|
|
26
|
+
"@remotion/renderer": "4.0.428",
|
|
27
27
|
"google-auth-library": "8.7.0",
|
|
28
|
-
"remotion": "4.0.
|
|
28
|
+
"remotion": "4.0.428",
|
|
29
29
|
"zod": "4.3.6"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
32
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.428",
|
|
33
33
|
"@types/minimist": "1.2.2",
|
|
34
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
34
|
+
"@remotion/eslint-config-internal": "4.0.428",
|
|
35
35
|
"eslint": "9.19.0",
|
|
36
36
|
"@types/node": "20.12.14",
|
|
37
37
|
"@typescript/native-preview": "7.0.0-dev.20260217.1"
|