@remotion/renderer 4.0.280 → 4.0.282
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/browser/BrowserRunner.js +2 -0
- package/dist/esm/client.mjs +1 -1
- package/dist/esm/index.mjs +2 -0
- package/dist/options/mute.js +1 -1
- package/package.json +12 -12
|
@@ -98,6 +98,7 @@ const makeBrowserRunner = async ({ executablePath, processArguments, userDataDir
|
|
|
98
98
|
// on linux the process group can be killed with the group id prefixed with
|
|
99
99
|
// a minus sign. The process group id is the group leader's pid.
|
|
100
100
|
const processGroupId = -proc.pid;
|
|
101
|
+
logger_1.Log.verbose({ indent, logLevel }, `Trying to kill browser process group ${processGroupId}`);
|
|
101
102
|
try {
|
|
102
103
|
process.kill(processGroupId, 'SIGKILL');
|
|
103
104
|
}
|
|
@@ -123,6 +124,7 @@ const makeBrowserRunner = async ({ executablePath, processArguments, userDataDir
|
|
|
123
124
|
if (closed) {
|
|
124
125
|
return Promise.resolve();
|
|
125
126
|
}
|
|
127
|
+
logger_1.Log.verbose({ indent, logLevel }, 'Received SIGTERM signal. Killing browser process');
|
|
126
128
|
killProcess();
|
|
127
129
|
(0, delete_directory_1.deleteDirectory)(userDataDir);
|
|
128
130
|
// Cleanup this listener last, as that makes sure the full callback runs. If we
|
package/dist/esm/client.mjs
CHANGED
|
@@ -1745,7 +1745,7 @@ var mutedOption = {
|
|
|
1745
1745
|
children: "The Audio of the video will be omitted."
|
|
1746
1746
|
}),
|
|
1747
1747
|
ssrName: "muted",
|
|
1748
|
-
docLink: "https://www.remotion.dev/docs/
|
|
1748
|
+
docLink: "https://www.remotion.dev/docs/audio/muting",
|
|
1749
1749
|
type: false,
|
|
1750
1750
|
getValue: ({ commandLine }) => {
|
|
1751
1751
|
if (commandLine[cliFlag25] !== null) {
|
package/dist/esm/index.mjs
CHANGED
|
@@ -3243,6 +3243,7 @@ var makeBrowserRunner = async ({
|
|
|
3243
3243
|
});
|
|
3244
3244
|
} else {
|
|
3245
3245
|
const processGroupId = -proc.pid;
|
|
3246
|
+
Log.verbose({ indent, logLevel }, `Trying to kill browser process group ${processGroupId}`);
|
|
3246
3247
|
try {
|
|
3247
3248
|
process.kill(processGroupId, "SIGKILL");
|
|
3248
3249
|
} catch (error) {
|
|
@@ -3262,6 +3263,7 @@ Error cause: ${isErrorLike(error) ? error.stack : error}`);
|
|
|
3262
3263
|
if (closed) {
|
|
3263
3264
|
return Promise.resolve();
|
|
3264
3265
|
}
|
|
3266
|
+
Log.verbose({ indent, logLevel }, "Received SIGTERM signal. Killing browser process");
|
|
3265
3267
|
killProcess();
|
|
3266
3268
|
deleteDirectory(userDataDir);
|
|
3267
3269
|
removeEventListeners(listeners);
|
package/dist/options/mute.js
CHANGED
|
@@ -10,7 +10,7 @@ exports.mutedOption = {
|
|
|
10
10
|
cliFlag,
|
|
11
11
|
description: () => (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: "The Audio of the video will be omitted." }),
|
|
12
12
|
ssrName: 'muted',
|
|
13
|
-
docLink: 'https://www.remotion.dev/docs/
|
|
13
|
+
docLink: 'https://www.remotion.dev/docs/audio/muting',
|
|
14
14
|
type: false,
|
|
15
15
|
getValue: ({ commandLine }) => {
|
|
16
16
|
// we set in minimist `muted` default as null
|
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.282",
|
|
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.282",
|
|
22
|
+
"@remotion/streaming": "4.0.282"
|
|
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/eslint-config-internal": "4.0.282",
|
|
37
|
+
"@remotion/example-videos": "4.0.282"
|
|
38
38
|
},
|
|
39
39
|
"optionalDependencies": {
|
|
40
|
-
"@remotion/compositor-darwin-arm64": "4.0.
|
|
41
|
-
"@remotion/compositor-
|
|
42
|
-
"@remotion/compositor-linux-arm64-
|
|
43
|
-
"@remotion/compositor-
|
|
44
|
-
"@remotion/compositor-linux-x64-
|
|
45
|
-
"@remotion/compositor-
|
|
46
|
-
"@remotion/compositor-
|
|
40
|
+
"@remotion/compositor-darwin-arm64": "4.0.282",
|
|
41
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.282",
|
|
42
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.282",
|
|
43
|
+
"@remotion/compositor-darwin-x64": "4.0.282",
|
|
44
|
+
"@remotion/compositor-linux-x64-musl": "4.0.282",
|
|
45
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.282",
|
|
46
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.282"
|
|
47
47
|
},
|
|
48
48
|
"keywords": [
|
|
49
49
|
"remotion",
|