@remotion/renderer 4.0.282 → 4.0.285
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/esm/client.mjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/dist/options/video-bitrate.js +1 -1
- package/dist/select-composition.js +1 -1
- package/package.json +12 -12
package/dist/esm/client.mjs
CHANGED
|
@@ -2382,7 +2382,7 @@ var videoBitrateOption = {
|
|
|
2382
2382
|
]
|
|
2383
2383
|
}),
|
|
2384
2384
|
ssrName: "videoBitrate",
|
|
2385
|
-
docLink: "https://www.remotion.dev/docs/renderer/render-media#videobitrate
|
|
2385
|
+
docLink: "https://www.remotion.dev/docs/renderer/render-media#videobitrate",
|
|
2386
2386
|
type: "",
|
|
2387
2387
|
getValue: ({ commandLine }) => {
|
|
2388
2388
|
if (commandLine[cliFlag38] !== undefined) {
|
package/dist/esm/index.mjs
CHANGED
|
@@ -22030,7 +22030,7 @@ var selectComposition = async (options) => {
|
|
|
22030
22030
|
offthreadVideoThreads
|
|
22031
22031
|
} = options;
|
|
22032
22032
|
const indent = false;
|
|
22033
|
-
const logLevel = passedLogLevel ?? verbose ? "verbose" : "info";
|
|
22033
|
+
const logLevel = passedLogLevel ?? (verbose ? "verbose" : "info");
|
|
22034
22034
|
const data = await internalSelectComposition({
|
|
22035
22035
|
id,
|
|
22036
22036
|
serveUrl,
|
|
@@ -9,7 +9,7 @@ exports.videoBitrateOption = {
|
|
|
9
9
|
cliFlag,
|
|
10
10
|
description: () => ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: ["Specify the target bitrate for the generated video. The syntax for FFmpeg", "'", "s", (0, jsx_runtime_1.jsx)("code", { children: "-b:v" }), " parameter should be used. FFmpeg may encode the video in a way that will not result in the exact video bitrate specified. Example values: ", (0, jsx_runtime_1.jsx)("code", { children: "512K" }), " for 512 kbps, ", (0, jsx_runtime_1.jsx)("code", { children: "1M" }), " for 1 Mbps."] })),
|
|
11
11
|
ssrName: 'videoBitrate',
|
|
12
|
-
docLink: 'https://www.remotion.dev/docs/renderer/render-media#videobitrate
|
|
12
|
+
docLink: 'https://www.remotion.dev/docs/renderer/render-media#videobitrate',
|
|
13
13
|
type: '',
|
|
14
14
|
getValue: ({ commandLine }) => {
|
|
15
15
|
if (commandLine[cliFlag] !== undefined) {
|
|
@@ -174,7 +174,7 @@ exports.internalSelectComposition = (0, wrap_with_error_handling_1.wrapWithError
|
|
|
174
174
|
const selectComposition = async (options) => {
|
|
175
175
|
const { id, serveUrl, browserExecutable, chromiumOptions, envVariables, inputProps, onBrowserLog, port, puppeteerInstance, timeoutInMilliseconds, verbose, logLevel: passedLogLevel, offthreadVideoCacheSizeInBytes, binariesDirectory, onBrowserDownload, chromeMode, offthreadVideoThreads, } = options;
|
|
176
176
|
const indent = false;
|
|
177
|
-
const logLevel =
|
|
177
|
+
const logLevel = passedLogLevel !== null && passedLogLevel !== void 0 ? passedLogLevel : (verbose ? 'verbose' : 'info');
|
|
178
178
|
const data = await (0, exports.internalSelectComposition)({
|
|
179
179
|
id,
|
|
180
180
|
serveUrl,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/renderer"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/renderer",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.285",
|
|
7
7
|
"description": "Render Remotion videos using Node.js or Bun",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"extract-zip": "2.0.1",
|
|
19
19
|
"source-map": "^0.8.0-beta.0",
|
|
20
20
|
"ws": "8.17.1",
|
|
21
|
-
"remotion": "4.0.
|
|
22
|
-
"@remotion/streaming": "4.0.
|
|
21
|
+
"remotion": "4.0.285",
|
|
22
|
+
"@remotion/streaming": "4.0.285"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"react": ">=16.8.0",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"react-dom": "19.0.0",
|
|
34
34
|
"@types/ws": "8.5.10",
|
|
35
35
|
"eslint": "9.19.0",
|
|
36
|
-
"@remotion/
|
|
37
|
-
"@remotion/
|
|
36
|
+
"@remotion/example-videos": "4.0.285",
|
|
37
|
+
"@remotion/eslint-config-internal": "4.0.285"
|
|
38
38
|
},
|
|
39
39
|
"optionalDependencies": {
|
|
40
|
-
"@remotion/compositor-darwin-arm64": "4.0.
|
|
41
|
-
"@remotion/compositor-
|
|
42
|
-
"@remotion/compositor-linux-arm64-musl": "4.0.
|
|
43
|
-
"@remotion/compositor-
|
|
44
|
-
"@remotion/compositor-linux-x64-
|
|
45
|
-
"@remotion/compositor-
|
|
46
|
-
"@remotion/compositor-
|
|
40
|
+
"@remotion/compositor-darwin-arm64": "4.0.285",
|
|
41
|
+
"@remotion/compositor-darwin-x64": "4.0.285",
|
|
42
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.285",
|
|
43
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.285",
|
|
44
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.285",
|
|
45
|
+
"@remotion/compositor-linux-x64-musl": "4.0.285",
|
|
46
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.285"
|
|
47
47
|
},
|
|
48
48
|
"keywords": [
|
|
49
49
|
"remotion",
|