@remotion/cloudrun 4.0.59 → 4.0.61
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,14 +1,14 @@
|
|
|
1
1
|
|
|
2
|
-
> @remotion/cloudrun@4.0.
|
|
2
|
+
> @remotion/cloudrun@4.0.60 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.60 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.60 tarInstaller /Users/jonathanburger/remotion/packages/cloudrun
|
|
12
12
|
> ts-node src/admin/bundle-installer.ts
|
|
13
13
|
|
|
14
14
|
Making reproducible build with gtar
|
|
@@ -26,7 +26,7 @@ const renderCommand = async (args, remotionRoot, logLevel) => {
|
|
|
26
26
|
});
|
|
27
27
|
const imageFormat = args_1.parsedCloudrunCli['image-format'];
|
|
28
28
|
const audioCodec = args_1.parsedCloudrunCli['audio-codec'];
|
|
29
|
-
const { chromiumOptions, crf, envVariables, frameRange, inputProps, puppeteerTimeout, pixelFormat, proResProfile, x264Preset, jpegQuality, scale, everyNthFrame, numberOfGifLoops, muted, audioBitrate, videoBitrate, height, width, browserExecutable,
|
|
29
|
+
const { chromiumOptions, crf, envVariables, frameRange, inputProps, puppeteerTimeout, pixelFormat, proResProfile, x264Preset, jpegQuality, scale, everyNthFrame, numberOfGifLoops, muted, audioBitrate, videoBitrate, height, width, browserExecutable, enforceAudioTrack, offthreadVideoCacheSizeInBytes, colorSpace, } = await cli_1.CliInternals.getCliOptions({
|
|
30
30
|
type: 'series',
|
|
31
31
|
isLambda: true,
|
|
32
32
|
remotionRoot,
|
|
@@ -42,7 +42,7 @@ const renderCommand = async (args, remotionRoot, logLevel) => {
|
|
|
42
42
|
const server = renderer_1.RenderInternals.prepareServer({
|
|
43
43
|
concurrency: 1,
|
|
44
44
|
indent: false,
|
|
45
|
-
port,
|
|
45
|
+
port: config_1.ConfigInternals.getRendererPortFromConfigFileAndCliFlag(),
|
|
46
46
|
remotionRoot,
|
|
47
47
|
logLevel,
|
|
48
48
|
webpackConfigOrServeUrl: serveUrl,
|
|
@@ -56,7 +56,7 @@ const renderCommand = async (args, remotionRoot, logLevel) => {
|
|
|
56
56
|
envVariables,
|
|
57
57
|
height,
|
|
58
58
|
indent: false,
|
|
59
|
-
port,
|
|
59
|
+
port: config_1.ConfigInternals.getRendererPortFromConfigFileAndCliFlag(),
|
|
60
60
|
puppeteerInstance: undefined,
|
|
61
61
|
serveUrlOrWebpackUrl: serveUrl,
|
|
62
62
|
timeoutInMilliseconds: puppeteerTimeout,
|
|
@@ -15,7 +15,7 @@ exports.STILL_COMMAND = 'still';
|
|
|
15
15
|
const stillCommand = async (args, remotionRoot, logLevel) => {
|
|
16
16
|
var _a, _b;
|
|
17
17
|
const { serveUrl, cloudRunUrl, outName, forceBucketName, privacy, downloadName, region, } = await (0, renderArgsCheck_1.renderArgsCheck)(exports.STILL_COMMAND, args, logLevel);
|
|
18
|
-
const { chromiumOptions, envVariables, inputProps, puppeteerTimeout, jpegQuality, stillFrame, scale, height, width, browserExecutable,
|
|
18
|
+
const { chromiumOptions, envVariables, inputProps, puppeteerTimeout, jpegQuality, stillFrame, scale, height, width, browserExecutable, offthreadVideoCacheSizeInBytes, } = await cli_1.CliInternals.getCliOptions({
|
|
19
19
|
type: 'still',
|
|
20
20
|
isLambda: true,
|
|
21
21
|
remotionRoot,
|
|
@@ -31,7 +31,7 @@ const stillCommand = async (args, remotionRoot, logLevel) => {
|
|
|
31
31
|
const server = renderer_1.RenderInternals.prepareServer({
|
|
32
32
|
concurrency: 1,
|
|
33
33
|
indent: false,
|
|
34
|
-
port,
|
|
34
|
+
port: config_1.ConfigInternals.getRendererPortFromConfigFileAndCliFlag(),
|
|
35
35
|
remotionRoot,
|
|
36
36
|
logLevel,
|
|
37
37
|
webpackConfigOrServeUrl: serveUrl,
|
|
@@ -51,7 +51,7 @@ const stillCommand = async (args, remotionRoot, logLevel) => {
|
|
|
51
51
|
indent: undefined,
|
|
52
52
|
staticBase: null,
|
|
53
53
|
}).serializedString,
|
|
54
|
-
port,
|
|
54
|
+
port: config_1.ConfigInternals.getRendererPortFromConfigFileAndCliFlag(),
|
|
55
55
|
puppeteerInstance: undefined,
|
|
56
56
|
timeoutInMilliseconds: puppeteerTimeout,
|
|
57
57
|
height,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/cloudrun",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.61",
|
|
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/
|
|
16
|
-
"@remotion/
|
|
17
|
-
"@remotion/renderer": "4.0.
|
|
18
|
-
"remotion": "4.0.
|
|
15
|
+
"@remotion/cli": "4.0.61",
|
|
16
|
+
"@remotion/bundler": "4.0.61",
|
|
17
|
+
"@remotion/renderer": "4.0.61",
|
|
18
|
+
"remotion": "4.0.61"
|
|
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.2",
|
|
27
27
|
"ts-node": "^10.8.0",
|
|
28
28
|
"vitest": "0.31.1",
|
|
29
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
29
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.61"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|
|
32
32
|
"./package.json": "./package.json",
|
package/.turbo/turbo-lint.log
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
> @remotion/cloudrun@4.0.51 lint /Users/jonathanburger/remotion/packages/cloudrun
|
|
3
|
-
> eslint src --ext ts,tsx
|
|
4
|
-
|
|
5
|
-
Warning: React version was set to "detect" in eslint-plugin-react settings, but the "react" package is not installed. Assuming latest React version for linting.
|
|
6
|
-
|
|
7
|
-
/Users/jonathanburger/remotion/packages/cloudrun/src/api/check-if-service-exists.ts
|
|
8
|
-
56:14 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
|
|
9
|
-
|
|
10
|
-
/Users/jonathanburger/remotion/packages/cloudrun/src/api/render-media-on-cloudrun.ts
|
|
11
|
-
217:3 warning Unexpected 'todo' comment: 'TODO: Add any sort of type safety' no-warning-comments
|
|
12
|
-
226:17 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
|
|
13
|
-
|
|
14
|
-
/Users/jonathanburger/remotion/packages/cloudrun/src/api/render-still-on-cloudrun.ts
|
|
15
|
-
153:17 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
|
|
16
|
-
|
|
17
|
-
/Users/jonathanburger/remotion/packages/cloudrun/src/cli/commands/render/helpers/renderArgsCheck.ts
|
|
18
|
-
68:4 warning Unexpected 'todo' comment: 'TODO: Log if there is an incompatible...' no-warning-comments
|
|
19
|
-
|
|
20
|
-
/Users/jonathanburger/remotion/packages/cloudrun/src/cli/commands/render/index.ts
|
|
21
|
-
119:2 warning Unexpected 'todo' comment: 'Todo: Check cloudRunUrl is valid, as the...' no-warning-comments
|
|
22
|
-
|
|
23
|
-
/Users/jonathanburger/remotion/packages/cloudrun/src/cli/commands/still.ts
|
|
24
|
-
104:2 warning Unexpected 'todo' comment: 'Todo: Check cloudRunUrl is valid, as the...' no-warning-comments
|
|
25
|
-
|
|
26
|
-
✖ 7 problems (0 errors, 7 warnings)
|
|
27
|
-
|