@remotion/renderer 4.0.209 → 4.0.210
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/browser-download-progress-bar.js +1 -1
- package/dist/client.d.ts +5 -5
- package/dist/create-ffmpeg-complex-filter.d.ts +4 -1
- package/dist/example-videos.d.ts +1 -0
- package/dist/example-videos.js +1 -0
- package/dist/index.d.ts +6 -5
- package/dist/options/gl.d.ts +3 -3
- package/dist/options/index.d.ts +3 -3
- package/dist/pixel-format.d.ts +1 -1
- package/dist/port-config.d.ts +2 -2
- package/ensure-browser.mjs +114 -114
- package/package.json +10 -10
|
@@ -6,9 +6,9 @@ const to_megabytes_1 = require("../to-megabytes");
|
|
|
6
6
|
const defaultBrowserDownloadProgress = ({ indent, logLevel, api, }) => () => {
|
|
7
7
|
logger_1.Log.info({ indent, logLevel }, 'Downloading Chrome Headless Shell https://www.remotion.dev/docs/miscellaneous/chrome-headless-shell');
|
|
8
8
|
logger_1.Log.info({ indent, logLevel }, `Customize this behavior by adding a onBrowserDownload function to ${api}.`);
|
|
9
|
+
let lastProgress = 0;
|
|
9
10
|
return {
|
|
10
11
|
onProgress: (progress) => {
|
|
11
|
-
let lastProgress = 0;
|
|
12
12
|
if (progress.downloadedBytes > lastProgress + 10000000) {
|
|
13
13
|
lastProgress = progress.downloadedBytes;
|
|
14
14
|
logger_1.Log.info({ indent, logLevel }, `Downloading Chrome Headless Shell - ${(0, to_megabytes_1.toMegabytes)(progress.downloadedBytes)}/${(0, to_megabytes_1.toMegabytes)(progress.totalSizeInBytes)}`);
|
package/dist/client.d.ts
CHANGED
|
@@ -10,10 +10,10 @@ export declare const BrowserSafeApis: {
|
|
|
10
10
|
x264PresetOptions: readonly ["ultrafast", "superfast", "veryfast", "faster", "fast", "medium", "slow", "slower", "veryslow", "placebo"];
|
|
11
11
|
validPixelFormats: readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"];
|
|
12
12
|
validOpenGlRenderers: readonly ["swangle", "angle", "egl", "swiftshader", "vulkan", "angle-egl"];
|
|
13
|
-
validPixelFormatsForCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "h264-ts" | "gif") => readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"] | ("yuv420p" | "
|
|
13
|
+
validPixelFormatsForCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "h264-ts" | "gif") => readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"] | ("yuv420p" | "yuv422p" | "yuv444p" | "yuva420p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le")[];
|
|
14
14
|
validVideoImageFormats: readonly ["png", "jpeg", "none"];
|
|
15
15
|
validStillImageFormats: readonly ["png", "jpeg", "pdf", "webp"];
|
|
16
|
-
DEFAULT_PIXEL_FORMAT: "yuv420p" | "
|
|
16
|
+
DEFAULT_PIXEL_FORMAT: "yuv420p" | "yuv422p" | "yuv444p" | "yuva420p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
|
|
17
17
|
DEFAULT_TIMEOUT: number;
|
|
18
18
|
DEFAULT_JPEG_QUALITY: number;
|
|
19
19
|
DEFAULT_COLOR_SPACE: "default";
|
|
@@ -467,19 +467,19 @@ export declare const BrowserSafeApis: {
|
|
|
467
467
|
cliFlag: "gl";
|
|
468
468
|
docLink: string;
|
|
469
469
|
name: string;
|
|
470
|
-
type: "
|
|
470
|
+
type: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null;
|
|
471
471
|
ssrName: string;
|
|
472
472
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
473
473
|
getValue: ({ commandLine }: {
|
|
474
474
|
commandLine: Record<string, unknown>;
|
|
475
475
|
}) => {
|
|
476
|
-
value: "
|
|
476
|
+
value: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl";
|
|
477
477
|
source: string;
|
|
478
478
|
} | {
|
|
479
479
|
value: null;
|
|
480
480
|
source: string;
|
|
481
481
|
};
|
|
482
|
-
setConfig: (value: "
|
|
482
|
+
setConfig: (value: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null) => void;
|
|
483
483
|
};
|
|
484
484
|
enableLambdaInsights: {
|
|
485
485
|
name: string;
|
|
@@ -4,6 +4,9 @@ export declare const createFfmpegComplexFilter: ({ filters, downloadMap, }: {
|
|
|
4
4
|
filters: PreprocessedAudioTrack[];
|
|
5
5
|
downloadMap: DownloadMap;
|
|
6
6
|
}) => Promise<{
|
|
7
|
-
complexFilterFlag: [
|
|
7
|
+
complexFilterFlag: [
|
|
8
|
+
string,
|
|
9
|
+
string
|
|
10
|
+
] | null;
|
|
8
11
|
cleanup: () => void;
|
|
9
12
|
}>;
|
package/dist/example-videos.d.ts
CHANGED
package/dist/example-videos.js
CHANGED
|
@@ -39,4 +39,5 @@ exports.exampleVideos = {
|
|
|
39
39
|
matroskaH265Aac: node_path_1.default.join(examplePackage, 'public', 'matroska-h265-aac.mkv'),
|
|
40
40
|
opusWebm: node_path_1.default.join(examplePackage, 'public', 'opus.webm'),
|
|
41
41
|
avi: node_path_1.default.join(examplePackage, 'public', 'example.avi'),
|
|
42
|
+
opus51Webm: node_path_1.default.join(examplePackage, 'public', 'vp8-opus-5-1-channels.webm'),
|
|
42
43
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -141,10 +141,10 @@ export declare const RenderInternals: {
|
|
|
141
141
|
validPixelFormats: readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"];
|
|
142
142
|
DEFAULT_BROWSER: "chrome";
|
|
143
143
|
validateFrameRange: (frameRange: import("./frame-range").FrameRange | null) => void;
|
|
144
|
-
DEFAULT_OPENGL_RENDERER: "
|
|
145
|
-
validateOpenGlRenderer: (option: unknown) => "
|
|
144
|
+
DEFAULT_OPENGL_RENDERER: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null;
|
|
145
|
+
validateOpenGlRenderer: (option: unknown) => "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null;
|
|
146
146
|
validCodecs: readonly ["h264", "h265", "vp8", "vp9", "mp3", "aac", "wav", "prores", "h264-mkv", "h264-ts", "gif"];
|
|
147
|
-
DEFAULT_PIXEL_FORMAT: "yuv420p" | "
|
|
147
|
+
DEFAULT_PIXEL_FORMAT: "yuv420p" | "yuv422p" | "yuv444p" | "yuva420p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
|
|
148
148
|
validateJpegQuality: (q: unknown) => void;
|
|
149
149
|
DEFAULT_TIMEOUT: number;
|
|
150
150
|
DEFAULT_CODEC: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "h264-ts" | "gif";
|
|
@@ -338,7 +338,7 @@ export declare const RenderInternals: {
|
|
|
338
338
|
makeFileExtensionMap: () => Record<string, ("h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "h264-ts" | "gif")[]>;
|
|
339
339
|
defaultCodecsForFileExtension: Record<import("./file-extensions").FileExtension, "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "h264-ts" | "gif">;
|
|
340
340
|
getExecutablePath: ({ indent, logLevel, type, binariesDirectory, }: {
|
|
341
|
-
type: "
|
|
341
|
+
type: "compositor" | "ffmpeg" | "ffprobe";
|
|
342
342
|
indent: boolean;
|
|
343
343
|
logLevel: "verbose" | "info" | "warn" | "error";
|
|
344
344
|
binariesDirectory: string | null;
|
|
@@ -767,7 +767,7 @@ export declare const RenderInternals: {
|
|
|
767
767
|
scale: number;
|
|
768
768
|
port: number | null;
|
|
769
769
|
cancelSignal: import("./make-cancel-signal").CancelSignal | undefined;
|
|
770
|
-
composition: Omit<import("remotion").VideoConfig, "
|
|
770
|
+
composition: Omit<import("remotion").VideoConfig, "props" | "defaultProps">;
|
|
771
771
|
indent: boolean;
|
|
772
772
|
server: import("./prepare-server").RemotionServer | undefined;
|
|
773
773
|
muted: boolean;
|
|
@@ -990,6 +990,7 @@ export declare const RenderInternals: {
|
|
|
990
990
|
matroskaH265Aac: string;
|
|
991
991
|
opusWebm: string;
|
|
992
992
|
avi: string;
|
|
993
|
+
opus51Webm: string;
|
|
993
994
|
};
|
|
994
995
|
printUsefulErrorMessage: (err: Error, logLevel: "verbose" | "info" | "warn" | "error", indent: boolean) => void;
|
|
995
996
|
};
|
package/dist/options/gl.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
export declare const validOpenGlRenderers: readonly ["swangle", "angle", "egl", "swiftshader", "vulkan", "angle-egl"];
|
|
2
2
|
export type OpenGlRenderer = (typeof validOpenGlRenderers)[number];
|
|
3
3
|
export declare const DEFAULT_OPENGL_RENDERER: OpenGlRenderer | null;
|
|
4
|
-
export declare const getChromiumOpenGlRenderer: () => "
|
|
4
|
+
export declare const getChromiumOpenGlRenderer: () => "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null;
|
|
5
5
|
export declare const setChromiumOpenGlRenderer: (renderer: OpenGlRenderer) => void;
|
|
6
6
|
export declare const glOption: {
|
|
7
7
|
cliFlag: "gl";
|
|
8
8
|
docLink: string;
|
|
9
9
|
name: string;
|
|
10
|
-
type: "
|
|
10
|
+
type: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null;
|
|
11
11
|
ssrName: string;
|
|
12
12
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
getValue: ({ commandLine }: {
|
|
14
14
|
commandLine: Record<string, unknown>;
|
|
15
15
|
}) => {
|
|
16
|
-
value: "
|
|
16
|
+
value: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl";
|
|
17
17
|
source: string;
|
|
18
18
|
} | {
|
|
19
19
|
value: null;
|
package/dist/options/index.d.ts
CHANGED
|
@@ -245,19 +245,19 @@ export declare const allOptions: {
|
|
|
245
245
|
cliFlag: "gl";
|
|
246
246
|
docLink: string;
|
|
247
247
|
name: string;
|
|
248
|
-
type: "
|
|
248
|
+
type: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null;
|
|
249
249
|
ssrName: string;
|
|
250
250
|
description: () => import("react/jsx-runtime").JSX.Element;
|
|
251
251
|
getValue: ({ commandLine }: {
|
|
252
252
|
commandLine: Record<string, unknown>;
|
|
253
253
|
}) => {
|
|
254
|
-
value: "
|
|
254
|
+
value: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl";
|
|
255
255
|
source: string;
|
|
256
256
|
} | {
|
|
257
257
|
value: null;
|
|
258
258
|
source: string;
|
|
259
259
|
};
|
|
260
|
-
setConfig: (value: "
|
|
260
|
+
setConfig: (value: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null) => void;
|
|
261
261
|
};
|
|
262
262
|
enableLambdaInsights: {
|
|
263
263
|
name: string;
|
package/dist/pixel-format.d.ts
CHANGED
|
@@ -2,5 +2,5 @@ import type { Codec } from './codec';
|
|
|
2
2
|
export declare const validPixelFormats: readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"];
|
|
3
3
|
export type PixelFormat = (typeof validPixelFormats)[number];
|
|
4
4
|
export declare const DEFAULT_PIXEL_FORMAT: PixelFormat;
|
|
5
|
-
export declare const validPixelFormatsForCodec: (codec: Codec) => readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"] | ("yuv420p" | "
|
|
5
|
+
export declare const validPixelFormatsForCodec: (codec: Codec) => readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"] | ("yuv420p" | "yuv422p" | "yuv444p" | "yuva420p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le")[];
|
|
6
6
|
export declare const validateSelectedPixelFormatAndCodecCombination: (pixelFormat: PixelFormat | undefined, codec: Codec) => undefined;
|
package/dist/port-config.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
1
2
|
/// <reference types="bun-types" />
|
|
2
3
|
/// <reference types="node" />
|
|
3
4
|
/// <reference types="node" />
|
|
@@ -6,7 +7,6 @@
|
|
|
6
7
|
/// <reference types="node" />
|
|
7
8
|
/// <reference types="bun-types" />
|
|
8
9
|
/// <reference types="bun-types" />
|
|
9
|
-
/// <reference types="node" />
|
|
10
10
|
import type { NetworkInterfaceInfo } from 'os';
|
|
11
11
|
import os from 'os';
|
|
12
12
|
type PortConfig = {
|
|
@@ -14,7 +14,7 @@ type PortConfig = {
|
|
|
14
14
|
hostsToTry: string[];
|
|
15
15
|
};
|
|
16
16
|
export declare const getPortConfig: (preferIpv4: boolean) => PortConfig;
|
|
17
|
-
export declare const getHostToBind: (flattened: os.NetworkInterfaceInfo[], preferIpv4: boolean) => "0.0.0.0"
|
|
17
|
+
export declare const getHostToBind: (flattened: os.NetworkInterfaceInfo[], preferIpv4: boolean) => "::" | "0.0.0.0";
|
|
18
18
|
export declare const getHostsToTry: (flattened: os.NetworkInterfaceInfo[]) => string[];
|
|
19
19
|
export declare const flattenNetworkInterfaces: (networkInterfaces: NodeJS.Dict<NetworkInterfaceInfo[]>) => NetworkInterfaceInfo[];
|
|
20
20
|
export declare const isIpV6Supported: (flattened: os.NetworkInterfaceInfo[]) => boolean;
|
package/ensure-browser.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {createRequire} from "node:module";
|
|
2
2
|
var __create = Object.create;
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
3
|
var __getProtoOf = Object.getPrototypeOf;
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
6
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
7
|
var __toESM = (mod, isNodeMode, target) => {
|
|
@@ -16,11 +16,11 @@ var __toESM = (mod, isNodeMode, target) => {
|
|
|
16
16
|
return to;
|
|
17
17
|
};
|
|
18
18
|
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
19
|
-
var __require = createRequire(import.meta.url);
|
|
19
|
+
var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
20
20
|
|
|
21
21
|
// /Users/jonathanburger/remotion/node_modules/.pnpm/debug@4.3.4/node_modules/ms/index.js
|
|
22
22
|
var require_ms = __commonJS((exports, module) => {
|
|
23
|
-
|
|
23
|
+
function parse(str) {
|
|
24
24
|
str = String(str);
|
|
25
25
|
if (str.length > 100) {
|
|
26
26
|
return;
|
|
@@ -73,8 +73,8 @@ var require_ms = __commonJS((exports, module) => {
|
|
|
73
73
|
default:
|
|
74
74
|
return;
|
|
75
75
|
}
|
|
76
|
-
}
|
|
77
|
-
|
|
76
|
+
}
|
|
77
|
+
function fmtShort(ms) {
|
|
78
78
|
var msAbs = Math.abs(ms);
|
|
79
79
|
if (msAbs >= d) {
|
|
80
80
|
return Math.round(ms / d) + "d";
|
|
@@ -89,8 +89,8 @@ var require_ms = __commonJS((exports, module) => {
|
|
|
89
89
|
return Math.round(ms / s) + "s";
|
|
90
90
|
}
|
|
91
91
|
return ms + "ms";
|
|
92
|
-
}
|
|
93
|
-
|
|
92
|
+
}
|
|
93
|
+
function fmtLong(ms) {
|
|
94
94
|
var msAbs = Math.abs(ms);
|
|
95
95
|
if (msAbs >= d) {
|
|
96
96
|
return plural(ms, msAbs, d, "day");
|
|
@@ -105,11 +105,11 @@ var require_ms = __commonJS((exports, module) => {
|
|
|
105
105
|
return plural(ms, msAbs, s, "second");
|
|
106
106
|
}
|
|
107
107
|
return ms + " ms";
|
|
108
|
-
}
|
|
109
|
-
|
|
108
|
+
}
|
|
109
|
+
function plural(ms, msAbs, n, name) {
|
|
110
110
|
var isPlural = msAbs >= n * 1.5;
|
|
111
111
|
return Math.round(ms / n) + " " + name + (isPlural ? "s" : "");
|
|
112
|
-
}
|
|
112
|
+
}
|
|
113
113
|
var s = 1000;
|
|
114
114
|
var m = s * 60;
|
|
115
115
|
var h = m * 60;
|
|
@@ -130,7 +130,7 @@ var require_ms = __commonJS((exports, module) => {
|
|
|
130
130
|
|
|
131
131
|
// ../../node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/common.js
|
|
132
132
|
var require_common = __commonJS((exports, module) => {
|
|
133
|
-
|
|
133
|
+
function setup(env) {
|
|
134
134
|
createDebug.debug = createDebug;
|
|
135
135
|
createDebug.default = createDebug;
|
|
136
136
|
createDebug.coerce = coerce;
|
|
@@ -285,13 +285,13 @@ var require_common = __commonJS((exports, module) => {
|
|
|
285
285
|
}
|
|
286
286
|
createDebug.enable(createDebug.load());
|
|
287
287
|
return createDebug;
|
|
288
|
-
}
|
|
288
|
+
}
|
|
289
289
|
module.exports = setup;
|
|
290
290
|
});
|
|
291
291
|
|
|
292
292
|
// ../../node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/browser.js
|
|
293
293
|
var require_browser = __commonJS((exports, module) => {
|
|
294
|
-
|
|
294
|
+
function useColors() {
|
|
295
295
|
if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
|
|
296
296
|
return true;
|
|
297
297
|
}
|
|
@@ -299,9 +299,9 @@ var require_browser = __commonJS((exports, module) => {
|
|
|
299
299
|
return false;
|
|
300
300
|
}
|
|
301
301
|
return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31 || typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + exports.humanize(this.diff);
|
|
302
|
+
}
|
|
303
|
+
function formatArgs(args) {
|
|
304
|
+
args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module.exports.humanize(this.diff);
|
|
305
305
|
if (!this.useColors) {
|
|
306
306
|
return;
|
|
307
307
|
}
|
|
@@ -319,8 +319,8 @@ var require_browser = __commonJS((exports, module) => {
|
|
|
319
319
|
}
|
|
320
320
|
});
|
|
321
321
|
args.splice(lastC, 0, c);
|
|
322
|
-
}
|
|
323
|
-
|
|
322
|
+
}
|
|
323
|
+
function save(namespaces) {
|
|
324
324
|
try {
|
|
325
325
|
if (namespaces) {
|
|
326
326
|
exports.storage.setItem("debug", namespaces);
|
|
@@ -329,8 +329,8 @@ var require_browser = __commonJS((exports, module) => {
|
|
|
329
329
|
}
|
|
330
330
|
} catch (error) {
|
|
331
331
|
}
|
|
332
|
-
}
|
|
333
|
-
|
|
332
|
+
}
|
|
333
|
+
function load() {
|
|
334
334
|
let r;
|
|
335
335
|
try {
|
|
336
336
|
r = exports.storage.getItem("debug");
|
|
@@ -340,13 +340,13 @@ var require_browser = __commonJS((exports, module) => {
|
|
|
340
340
|
r = process.env.DEBUG;
|
|
341
341
|
}
|
|
342
342
|
return r;
|
|
343
|
-
}
|
|
344
|
-
|
|
343
|
+
}
|
|
344
|
+
function localstorage() {
|
|
345
345
|
try {
|
|
346
346
|
return localStorage;
|
|
347
347
|
} catch (error) {
|
|
348
348
|
}
|
|
349
|
-
}
|
|
349
|
+
}
|
|
350
350
|
exports.formatArgs = formatArgs;
|
|
351
351
|
exports.save = save;
|
|
352
352
|
exports.load = load;
|
|
@@ -464,7 +464,7 @@ var require_has_flag = __commonJS((exports, module) => {
|
|
|
464
464
|
|
|
465
465
|
// /Users/jonathanburger/remotion/node_modules/.pnpm/node_modules/supports-color/index.js
|
|
466
466
|
var require_supports_color = __commonJS((exports, module) => {
|
|
467
|
-
|
|
467
|
+
function translateLevel(level) {
|
|
468
468
|
if (level === 0) {
|
|
469
469
|
return false;
|
|
470
470
|
}
|
|
@@ -474,8 +474,8 @@ var require_supports_color = __commonJS((exports, module) => {
|
|
|
474
474
|
has256: level >= 2,
|
|
475
475
|
has16m: level >= 3
|
|
476
476
|
};
|
|
477
|
-
}
|
|
478
|
-
|
|
477
|
+
}
|
|
478
|
+
function supportsColor(haveStream, streamIsTTY) {
|
|
479
479
|
if (forceColor === 0) {
|
|
480
480
|
return 0;
|
|
481
481
|
}
|
|
@@ -530,11 +530,11 @@ var require_supports_color = __commonJS((exports, module) => {
|
|
|
530
530
|
return 1;
|
|
531
531
|
}
|
|
532
532
|
return min;
|
|
533
|
-
}
|
|
534
|
-
|
|
533
|
+
}
|
|
534
|
+
function getSupportLevel(stream) {
|
|
535
535
|
const level = supportsColor(stream, stream && stream.isTTY);
|
|
536
536
|
return translateLevel(level);
|
|
537
|
-
}
|
|
537
|
+
}
|
|
538
538
|
var os = __require("os");
|
|
539
539
|
var tty = __require("tty");
|
|
540
540
|
var hasFlag = require_has_flag();
|
|
@@ -563,47 +563,47 @@ var require_supports_color = __commonJS((exports, module) => {
|
|
|
563
563
|
|
|
564
564
|
// ../../node_modules/.pnpm/debug@4.3.4/node_modules/debug/src/node.js
|
|
565
565
|
var require_node = __commonJS((exports, module) => {
|
|
566
|
-
|
|
566
|
+
function useColors() {
|
|
567
567
|
return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
|
568
|
-
}
|
|
569
|
-
|
|
568
|
+
}
|
|
569
|
+
function formatArgs(args) {
|
|
570
570
|
const { namespace: name, useColors: useColors2 } = this;
|
|
571
571
|
if (useColors2) {
|
|
572
572
|
const c = this.color;
|
|
573
573
|
const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
|
|
574
574
|
const prefix = ` ${colorCode};1m${name} \x1B[0m`;
|
|
575
575
|
args[0] = prefix + args[0].split("\n").join("\n" + prefix);
|
|
576
|
-
args.push(colorCode + "m+" + exports.humanize(this.diff) + "\x1B[0m");
|
|
576
|
+
args.push(colorCode + "m+" + module.exports.humanize(this.diff) + "\x1B[0m");
|
|
577
577
|
} else {
|
|
578
578
|
args[0] = getDate() + name + " " + args[0];
|
|
579
579
|
}
|
|
580
|
-
}
|
|
581
|
-
|
|
580
|
+
}
|
|
581
|
+
function getDate() {
|
|
582
582
|
if (exports.inspectOpts.hideDate) {
|
|
583
583
|
return "";
|
|
584
584
|
}
|
|
585
585
|
return new Date().toISOString() + " ";
|
|
586
|
-
}
|
|
587
|
-
|
|
586
|
+
}
|
|
587
|
+
function log(...args) {
|
|
588
588
|
return process.stderr.write(util.format(...args) + "\n");
|
|
589
|
-
}
|
|
590
|
-
|
|
589
|
+
}
|
|
590
|
+
function save(namespaces) {
|
|
591
591
|
if (namespaces) {
|
|
592
592
|
process.env.DEBUG = namespaces;
|
|
593
593
|
} else {
|
|
594
594
|
delete process.env.DEBUG;
|
|
595
595
|
}
|
|
596
|
-
}
|
|
597
|
-
|
|
596
|
+
}
|
|
597
|
+
function load() {
|
|
598
598
|
return process.env.DEBUG;
|
|
599
|
-
}
|
|
600
|
-
|
|
599
|
+
}
|
|
600
|
+
function init(debug) {
|
|
601
601
|
debug.inspectOpts = {};
|
|
602
602
|
const keys = Object.keys(exports.inspectOpts);
|
|
603
603
|
for (let i = 0;i < keys.length; i++) {
|
|
604
604
|
debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
|
|
605
605
|
}
|
|
606
|
-
}
|
|
606
|
+
}
|
|
607
607
|
var tty = __require("tty");
|
|
608
608
|
var util = __require("util");
|
|
609
609
|
exports.init = init;
|
|
@@ -741,7 +741,7 @@ var require_src = __commonJS((exports, module) => {
|
|
|
741
741
|
|
|
742
742
|
// /Users/jonathanburger/remotion/node_modules/.pnpm/once@1.4.0/node_modules/wrappy/wrappy.js
|
|
743
743
|
var require_wrappy = __commonJS((exports, module) => {
|
|
744
|
-
|
|
744
|
+
function wrappy(fn, cb) {
|
|
745
745
|
if (fn && cb)
|
|
746
746
|
return wrappy(fn)(cb);
|
|
747
747
|
if (typeof fn !== "function")
|
|
@@ -764,13 +764,13 @@ var require_wrappy = __commonJS((exports, module) => {
|
|
|
764
764
|
}
|
|
765
765
|
return ret;
|
|
766
766
|
}
|
|
767
|
-
}
|
|
767
|
+
}
|
|
768
768
|
module.exports = wrappy;
|
|
769
769
|
});
|
|
770
770
|
|
|
771
771
|
// /Users/jonathanburger/remotion/node_modules/.pnpm/pump@3.0.0/node_modules/once/once.js
|
|
772
772
|
var require_once = __commonJS((exports, module) => {
|
|
773
|
-
|
|
773
|
+
function once(fn) {
|
|
774
774
|
var f = function() {
|
|
775
775
|
if (f.called)
|
|
776
776
|
return f.value;
|
|
@@ -779,8 +779,8 @@ var require_once = __commonJS((exports, module) => {
|
|
|
779
779
|
};
|
|
780
780
|
f.called = false;
|
|
781
781
|
return f;
|
|
782
|
-
}
|
|
783
|
-
|
|
782
|
+
}
|
|
783
|
+
function onceStrict(fn) {
|
|
784
784
|
var f = function() {
|
|
785
785
|
if (f.called)
|
|
786
786
|
throw new Error(f.onceError);
|
|
@@ -791,7 +791,7 @@ var require_once = __commonJS((exports, module) => {
|
|
|
791
791
|
f.onceError = name + " shouldn't be called more than once";
|
|
792
792
|
f.called = false;
|
|
793
793
|
return f;
|
|
794
|
-
}
|
|
794
|
+
}
|
|
795
795
|
var wrappy = require_wrappy();
|
|
796
796
|
module.exports = wrappy(once);
|
|
797
797
|
module.exports.strict = wrappy(onceStrict);
|
|
@@ -1081,14 +1081,14 @@ var require_get_stream = __commonJS((exports, module) => {
|
|
|
1081
1081
|
|
|
1082
1082
|
// /Users/jonathanburger/remotion/node_modules/.pnpm/fd-slicer@1.1.0/node_modules/pend/index.js
|
|
1083
1083
|
var require_pend = __commonJS((exports, module) => {
|
|
1084
|
-
|
|
1084
|
+
function Pend() {
|
|
1085
1085
|
this.pending = 0;
|
|
1086
1086
|
this.max = Infinity;
|
|
1087
1087
|
this.listeners = [];
|
|
1088
1088
|
this.waiting = [];
|
|
1089
1089
|
this.error = null;
|
|
1090
|
-
}
|
|
1091
|
-
|
|
1090
|
+
}
|
|
1091
|
+
function pendHold(self) {
|
|
1092
1092
|
self.pending += 1;
|
|
1093
1093
|
var called = false;
|
|
1094
1094
|
return onCb;
|
|
@@ -1109,10 +1109,10 @@ var require_pend = __commonJS((exports, module) => {
|
|
|
1109
1109
|
function cbListener(listener) {
|
|
1110
1110
|
listener(self.error);
|
|
1111
1111
|
}
|
|
1112
|
-
}
|
|
1113
|
-
|
|
1112
|
+
}
|
|
1113
|
+
function pendGo(self, fn) {
|
|
1114
1114
|
fn(pendHold(self));
|
|
1115
|
-
}
|
|
1115
|
+
}
|
|
1116
1116
|
module.exports = Pend;
|
|
1117
1117
|
Pend.prototype.go = function(fn) {
|
|
1118
1118
|
if (this.pending < this.max) {
|
|
@@ -1135,7 +1135,7 @@ var require_pend = __commonJS((exports, module) => {
|
|
|
1135
1135
|
|
|
1136
1136
|
// /Users/jonathanburger/remotion/node_modules/.pnpm/yauzl@2.10.0/node_modules/fd-slicer/index.js
|
|
1137
1137
|
var require_fd_slicer = __commonJS((exports) => {
|
|
1138
|
-
|
|
1138
|
+
function FdSlicer(fd, options) {
|
|
1139
1139
|
options = options || {};
|
|
1140
1140
|
EventEmitter.call(this);
|
|
1141
1141
|
this.fd = fd;
|
|
@@ -1143,8 +1143,8 @@ var require_fd_slicer = __commonJS((exports) => {
|
|
|
1143
1143
|
this.pend.max = 1;
|
|
1144
1144
|
this.refCount = 0;
|
|
1145
1145
|
this.autoClose = !!options.autoClose;
|
|
1146
|
-
}
|
|
1147
|
-
|
|
1146
|
+
}
|
|
1147
|
+
function ReadStream(context, options) {
|
|
1148
1148
|
options = options || {};
|
|
1149
1149
|
Readable.call(this, options);
|
|
1150
1150
|
this.context = context;
|
|
@@ -1153,8 +1153,8 @@ var require_fd_slicer = __commonJS((exports) => {
|
|
|
1153
1153
|
this.endOffset = options.end;
|
|
1154
1154
|
this.pos = this.start;
|
|
1155
1155
|
this.destroyed = false;
|
|
1156
|
-
}
|
|
1157
|
-
|
|
1156
|
+
}
|
|
1157
|
+
function WriteStream(context, options) {
|
|
1158
1158
|
options = options || {};
|
|
1159
1159
|
Writable.call(this, options);
|
|
1160
1160
|
this.context = context;
|
|
@@ -1165,20 +1165,20 @@ var require_fd_slicer = __commonJS((exports) => {
|
|
|
1165
1165
|
this.pos = this.start;
|
|
1166
1166
|
this.destroyed = false;
|
|
1167
1167
|
this.on("finish", this.destroy.bind(this));
|
|
1168
|
-
}
|
|
1169
|
-
|
|
1168
|
+
}
|
|
1169
|
+
function BufferSlicer(buffer, options) {
|
|
1170
1170
|
EventEmitter.call(this);
|
|
1171
1171
|
options = options || {};
|
|
1172
1172
|
this.refCount = 0;
|
|
1173
1173
|
this.buffer = buffer;
|
|
1174
1174
|
this.maxChunkSize = options.maxChunkSize || Number.MAX_SAFE_INTEGER;
|
|
1175
|
-
}
|
|
1176
|
-
|
|
1175
|
+
}
|
|
1176
|
+
function createFromBuffer(buffer, options) {
|
|
1177
1177
|
return new BufferSlicer(buffer, options);
|
|
1178
|
-
}
|
|
1179
|
-
|
|
1178
|
+
}
|
|
1179
|
+
function createFromFd(fd, options) {
|
|
1180
1180
|
return new FdSlicer(fd, options);
|
|
1181
|
-
}
|
|
1181
|
+
}
|
|
1182
1182
|
var fs = __require("fs");
|
|
1183
1183
|
var util = __require("util");
|
|
1184
1184
|
var stream = __require("stream");
|
|
@@ -1401,7 +1401,7 @@ var require_fd_slicer = __commonJS((exports) => {
|
|
|
1401
1401
|
|
|
1402
1402
|
// /Users/jonathanburger/remotion/node_modules/.pnpm/yauzl@2.10.0/node_modules/buffer-crc32/index.js
|
|
1403
1403
|
var require_buffer_crc32 = __commonJS((exports, module) => {
|
|
1404
|
-
|
|
1404
|
+
function ensureBuffer(input) {
|
|
1405
1405
|
if (Buffer2.isBuffer(input)) {
|
|
1406
1406
|
return input;
|
|
1407
1407
|
}
|
|
@@ -1413,13 +1413,13 @@ var require_buffer_crc32 = __commonJS((exports, module) => {
|
|
|
1413
1413
|
} else {
|
|
1414
1414
|
throw new Error("input must be buffer, number, or string, received " + typeof input);
|
|
1415
1415
|
}
|
|
1416
|
-
}
|
|
1417
|
-
|
|
1416
|
+
}
|
|
1417
|
+
function bufferizeInt(num) {
|
|
1418
1418
|
var tmp = ensureBuffer(4);
|
|
1419
1419
|
tmp.writeInt32BE(num, 0);
|
|
1420
1420
|
return tmp;
|
|
1421
|
-
}
|
|
1422
|
-
|
|
1421
|
+
}
|
|
1422
|
+
function _crc32(buf, previous) {
|
|
1423
1423
|
buf = ensureBuffer(buf);
|
|
1424
1424
|
if (Buffer2.isBuffer(previous)) {
|
|
1425
1425
|
previous = previous.readUInt32BE(0);
|
|
@@ -1429,10 +1429,10 @@ var require_buffer_crc32 = __commonJS((exports, module) => {
|
|
|
1429
1429
|
crc = CRC_TABLE[(crc ^ buf[n]) & 255] ^ crc >>> 8;
|
|
1430
1430
|
}
|
|
1431
1431
|
return crc ^ -1;
|
|
1432
|
-
}
|
|
1433
|
-
|
|
1432
|
+
}
|
|
1433
|
+
function crc32() {
|
|
1434
1434
|
return bufferizeInt(_crc32.apply(null, arguments));
|
|
1435
|
-
}
|
|
1435
|
+
}
|
|
1436
1436
|
var Buffer2 = __require("buffer").Buffer;
|
|
1437
1437
|
var CRC_TABLE = [
|
|
1438
1438
|
0,
|
|
@@ -1706,7 +1706,7 @@ var require_buffer_crc32 = __commonJS((exports, module) => {
|
|
|
1706
1706
|
|
|
1707
1707
|
// /Users/jonathanburger/remotion/node_modules/.pnpm/extract-zip@2.0.1/node_modules/yauzl/index.js
|
|
1708
1708
|
var require_yauzl = __commonJS((exports) => {
|
|
1709
|
-
|
|
1709
|
+
function open(path, options, callback) {
|
|
1710
1710
|
if (typeof options === "function") {
|
|
1711
1711
|
callback = options;
|
|
1712
1712
|
options = null;
|
|
@@ -1734,8 +1734,8 @@ var require_yauzl = __commonJS((exports) => {
|
|
|
1734
1734
|
callback(err2, zipfile);
|
|
1735
1735
|
});
|
|
1736
1736
|
});
|
|
1737
|
-
}
|
|
1738
|
-
|
|
1737
|
+
}
|
|
1738
|
+
function fromFd(fd, options, callback) {
|
|
1739
1739
|
if (typeof options === "function") {
|
|
1740
1740
|
callback = options;
|
|
1741
1741
|
options = null;
|
|
@@ -1760,8 +1760,8 @@ var require_yauzl = __commonJS((exports) => {
|
|
|
1760
1760
|
var reader = fd_slicer.createFromFd(fd, { autoClose: true });
|
|
1761
1761
|
fromRandomAccessReader(reader, stats.size, options, callback);
|
|
1762
1762
|
});
|
|
1763
|
-
}
|
|
1764
|
-
|
|
1763
|
+
}
|
|
1764
|
+
function fromBuffer(buffer, options, callback) {
|
|
1765
1765
|
if (typeof options === "function") {
|
|
1766
1766
|
callback = options;
|
|
1767
1767
|
options = null;
|
|
@@ -1779,8 +1779,8 @@ var require_yauzl = __commonJS((exports) => {
|
|
|
1779
1779
|
options.strictFileNames = false;
|
|
1780
1780
|
var reader = fd_slicer.createFromBuffer(buffer, { maxChunkSize: 65536 });
|
|
1781
1781
|
fromRandomAccessReader(reader, buffer.length, options, callback);
|
|
1782
|
-
}
|
|
1783
|
-
|
|
1782
|
+
}
|
|
1783
|
+
function fromRandomAccessReader(reader, totalSize, options, callback) {
|
|
1784
1784
|
if (typeof options === "function") {
|
|
1785
1785
|
callback = options;
|
|
1786
1786
|
options = null;
|
|
@@ -1858,8 +1858,8 @@ var require_yauzl = __commonJS((exports) => {
|
|
|
1858
1858
|
}
|
|
1859
1859
|
callback(new Error("end of central directory record signature not found"));
|
|
1860
1860
|
});
|
|
1861
|
-
}
|
|
1862
|
-
|
|
1861
|
+
}
|
|
1862
|
+
function ZipFile(reader, centralDirectoryOffset, fileSize, entryCount, comment, autoClose, lazyEntries, decodeStrings, validateEntrySizes, strictFileNames) {
|
|
1863
1863
|
var self = this;
|
|
1864
1864
|
EventEmitter.call(self);
|
|
1865
1865
|
self.reader = reader;
|
|
@@ -1883,21 +1883,21 @@ var require_yauzl = __commonJS((exports) => {
|
|
|
1883
1883
|
self.emittedError = false;
|
|
1884
1884
|
if (!self.lazyEntries)
|
|
1885
1885
|
self._readEntry();
|
|
1886
|
-
}
|
|
1887
|
-
|
|
1886
|
+
}
|
|
1887
|
+
function emitErrorAndAutoClose(self, err) {
|
|
1888
1888
|
if (self.autoClose)
|
|
1889
1889
|
self.close();
|
|
1890
1890
|
emitError(self, err);
|
|
1891
|
-
}
|
|
1892
|
-
|
|
1891
|
+
}
|
|
1892
|
+
function emitError(self, err) {
|
|
1893
1893
|
if (self.emittedError)
|
|
1894
1894
|
return;
|
|
1895
1895
|
self.emittedError = true;
|
|
1896
1896
|
self.emit("error", err);
|
|
1897
|
-
}
|
|
1898
|
-
|
|
1899
|
-
}
|
|
1900
|
-
|
|
1897
|
+
}
|
|
1898
|
+
function Entry() {
|
|
1899
|
+
}
|
|
1900
|
+
function dosDateTimeToDate(date, time) {
|
|
1901
1901
|
var day = date & 31;
|
|
1902
1902
|
var month = (date >> 5 & 15) - 1;
|
|
1903
1903
|
var year = (date >> 9 & 127) + 1980;
|
|
@@ -1906,8 +1906,8 @@ var require_yauzl = __commonJS((exports) => {
|
|
|
1906
1906
|
var minute = time >> 5 & 63;
|
|
1907
1907
|
var hour = time >> 11 & 31;
|
|
1908
1908
|
return new Date(year, month, day, hour, minute, second, millisecond);
|
|
1909
|
-
}
|
|
1910
|
-
|
|
1909
|
+
}
|
|
1910
|
+
function validateFileName(fileName) {
|
|
1911
1911
|
if (fileName.indexOf("\\") !== -1) {
|
|
1912
1912
|
return "invalid characters in fileName: " + fileName;
|
|
1913
1913
|
}
|
|
@@ -1918,8 +1918,8 @@ var require_yauzl = __commonJS((exports) => {
|
|
|
1918
1918
|
return "invalid relative path: " + fileName;
|
|
1919
1919
|
}
|
|
1920
1920
|
return null;
|
|
1921
|
-
}
|
|
1922
|
-
|
|
1921
|
+
}
|
|
1922
|
+
function readAndAssertNoEof(reader, buffer, offset, length, position, callback) {
|
|
1923
1923
|
if (length === 0) {
|
|
1924
1924
|
return setImmediate(function() {
|
|
1925
1925
|
callback(null, newBuffer(0));
|
|
@@ -1933,23 +1933,23 @@ var require_yauzl = __commonJS((exports) => {
|
|
|
1933
1933
|
}
|
|
1934
1934
|
callback();
|
|
1935
1935
|
});
|
|
1936
|
-
}
|
|
1937
|
-
|
|
1936
|
+
}
|
|
1937
|
+
function AssertByteCountStream(byteCount) {
|
|
1938
1938
|
Transform.call(this);
|
|
1939
1939
|
this.actualByteCount = 0;
|
|
1940
1940
|
this.expectedByteCount = byteCount;
|
|
1941
|
-
}
|
|
1942
|
-
|
|
1941
|
+
}
|
|
1942
|
+
function RandomAccessReader() {
|
|
1943
1943
|
EventEmitter.call(this);
|
|
1944
1944
|
this.refCount = 0;
|
|
1945
|
-
}
|
|
1946
|
-
|
|
1945
|
+
}
|
|
1946
|
+
function RefUnrefFilter(context) {
|
|
1947
1947
|
PassThrough.call(this);
|
|
1948
1948
|
this.context = context;
|
|
1949
1949
|
this.context.ref();
|
|
1950
1950
|
this.unreffedYet = false;
|
|
1951
|
-
}
|
|
1952
|
-
|
|
1951
|
+
}
|
|
1952
|
+
function decodeBuffer(buffer, start, end, isUtf8) {
|
|
1953
1953
|
if (isUtf8) {
|
|
1954
1954
|
return buffer.toString("utf8", start, end);
|
|
1955
1955
|
} else {
|
|
@@ -1959,16 +1959,16 @@ var require_yauzl = __commonJS((exports) => {
|
|
|
1959
1959
|
}
|
|
1960
1960
|
return result;
|
|
1961
1961
|
}
|
|
1962
|
-
}
|
|
1963
|
-
|
|
1962
|
+
}
|
|
1963
|
+
function readUInt64LE(buffer, offset) {
|
|
1964
1964
|
var lower32 = buffer.readUInt32LE(offset);
|
|
1965
1965
|
var upper32 = buffer.readUInt32LE(offset + 4);
|
|
1966
1966
|
return upper32 * 4294967296 + lower32;
|
|
1967
|
-
}
|
|
1968
|
-
|
|
1967
|
+
}
|
|
1968
|
+
function defaultCallback(err) {
|
|
1969
1969
|
if (err)
|
|
1970
1970
|
throw err;
|
|
1971
|
-
}
|
|
1971
|
+
}
|
|
1972
1972
|
var fs = __require("fs");
|
|
1973
1973
|
var zlib = __require("zlib");
|
|
1974
1974
|
var fd_slicer = require_fd_slicer();
|
|
@@ -3022,7 +3022,7 @@ var getDownloadsCacheDir = () => {
|
|
|
3022
3022
|
};
|
|
3023
3023
|
|
|
3024
3024
|
// src/browser/BrowserFetcher.ts
|
|
3025
|
-
|
|
3025
|
+
function getChromeDownloadUrl({
|
|
3026
3026
|
platform: platform2,
|
|
3027
3027
|
version: version2
|
|
3028
3028
|
}) {
|
|
@@ -3030,14 +3030,14 @@ var getChromeDownloadUrl = function({
|
|
|
3030
3030
|
return `https://playwright.azureedge.net/builds/chromium/${version2 ?? PLAYWRIGHT_VERSION}/chromium-linux-arm64.zip`;
|
|
3031
3031
|
}
|
|
3032
3032
|
return `https://storage.googleapis.com/chrome-for-testing-public/${version2 ?? TESTED_VERSION}/${platform2}/chrome-headless-shell-${platform2}.zip`;
|
|
3033
|
-
}
|
|
3034
|
-
|
|
3033
|
+
}
|
|
3034
|
+
function existsAsync(filePath) {
|
|
3035
3035
|
return new Promise((resolve2) => {
|
|
3036
3036
|
fs3.access(filePath, (err) => {
|
|
3037
3037
|
return resolve2(!err);
|
|
3038
3038
|
});
|
|
3039
3039
|
});
|
|
3040
|
-
}
|
|
3040
|
+
}
|
|
3041
3041
|
var TESTED_VERSION = "123.0.6312.86";
|
|
3042
3042
|
var PLAYWRIGHT_VERSION = "1105";
|
|
3043
3043
|
var mkdirAsync = fs3.promises.mkdir;
|
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.210",
|
|
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
|
-
"
|
|
22
|
-
"remotion": "4.0.
|
|
21
|
+
"remotion": "4.0.210",
|
|
22
|
+
"@remotion/streaming": "4.0.210"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"react": ">=16.8.0",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"@types/ws": "8.5.10"
|
|
35
35
|
},
|
|
36
36
|
"optionalDependencies": {
|
|
37
|
-
"@remotion/compositor-darwin-arm64": "4.0.
|
|
38
|
-
"@remotion/compositor-
|
|
39
|
-
"@remotion/compositor-
|
|
40
|
-
"@remotion/compositor-linux-
|
|
41
|
-
"@remotion/compositor-
|
|
42
|
-
"@remotion/compositor-
|
|
43
|
-
"@remotion/compositor-linux-
|
|
37
|
+
"@remotion/compositor-darwin-arm64": "4.0.210",
|
|
38
|
+
"@remotion/compositor-darwin-x64": "4.0.210",
|
|
39
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.210",
|
|
40
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.210",
|
|
41
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.210",
|
|
42
|
+
"@remotion/compositor-linux-x64-musl": "4.0.210",
|
|
43
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.210"
|
|
44
44
|
},
|
|
45
45
|
"keywords": [
|
|
46
46
|
"remotion",
|