@remotion/renderer 4.0.0-alpha10 → 4.0.0-alpha11
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/index.d.ts +10 -10
- package/dist/logger.d.ts +1 -1
- package/dist/seek-to-frame.js +1 -1
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -115,8 +115,8 @@ export declare const RenderInternals: {
|
|
|
115
115
|
validPixelFormats: readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"];
|
|
116
116
|
DEFAULT_BROWSER: import("./browser").Browser;
|
|
117
117
|
validateFrameRange: (frameRange: import("./frame-range").FrameRange | null) => void;
|
|
118
|
-
DEFAULT_OPENGL_RENDERER: "
|
|
119
|
-
validateOpenGlRenderer: (option: "
|
|
118
|
+
DEFAULT_OPENGL_RENDERER: "angle" | "swangle" | "egl" | "swiftshader" | null;
|
|
119
|
+
validateOpenGlRenderer: (option: "angle" | "swangle" | "egl" | "swiftshader" | null) => "angle" | "swangle" | "egl" | "swiftshader" | null;
|
|
120
120
|
validCodecs: readonly ["h264", "h265", "vp8", "vp9", "mp3", "aac", "wav", "prores", "h264-mkv", "gif"];
|
|
121
121
|
DEFAULT_PIXEL_FORMAT: "yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
|
|
122
122
|
validateJpegQuality: (q: number | undefined) => void;
|
|
@@ -124,7 +124,7 @@ export declare const RenderInternals: {
|
|
|
124
124
|
DEFAULT_CODEC: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
125
125
|
isAudioCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | undefined) => boolean;
|
|
126
126
|
logLevels: readonly ["verbose", "info", "warn", "error"];
|
|
127
|
-
isEqualOrBelowLogLevel: (currentLevel: "
|
|
127
|
+
isEqualOrBelowLogLevel: (currentLevel: "error" | "verbose" | "info" | "warn", level: "error" | "verbose" | "info" | "warn") => boolean;
|
|
128
128
|
isValidLogLevel: (level: string) => boolean;
|
|
129
129
|
perf: typeof perf;
|
|
130
130
|
makeDownloadMap: () => import("./assets/download-map").DownloadMap;
|
|
@@ -303,8 +303,8 @@ export declare const RenderInternals: {
|
|
|
303
303
|
};
|
|
304
304
|
validStillImageFormats: readonly ["png", "jpeg", "pdf", "webp"];
|
|
305
305
|
validVideoImageFormats: readonly ["png", "jpeg", "none"];
|
|
306
|
-
DEFAULT_STILL_IMAGE_FORMAT: "
|
|
307
|
-
DEFAULT_VIDEO_IMAGE_FORMAT: "
|
|
306
|
+
DEFAULT_STILL_IMAGE_FORMAT: "jpeg" | "png" | "webp" | "pdf";
|
|
307
|
+
DEFAULT_VIDEO_IMAGE_FORMAT: "jpeg" | "png" | "none";
|
|
308
308
|
chalk: {
|
|
309
309
|
enabled: boolean;
|
|
310
310
|
visible: boolean;
|
|
@@ -358,24 +358,24 @@ export declare const RenderInternals: {
|
|
|
358
358
|
verbose: (message?: any, ...optionalParams: any[]) => void;
|
|
359
359
|
verboseAdvanced: (options: {
|
|
360
360
|
indent: boolean;
|
|
361
|
-
logLevel: "
|
|
361
|
+
logLevel: "error" | "verbose" | "info" | "warn";
|
|
362
362
|
} & {
|
|
363
363
|
tag?: string | undefined;
|
|
364
364
|
}, message?: any, ...optionalParams: any[]) => void;
|
|
365
365
|
info: (message?: any, ...optionalParams: any[]) => void;
|
|
366
366
|
infoAdvanced: (options: {
|
|
367
367
|
indent: boolean;
|
|
368
|
-
logLevel: "
|
|
368
|
+
logLevel: "error" | "verbose" | "info" | "warn";
|
|
369
369
|
}, message?: any, ...optionalParams: any[]) => void;
|
|
370
370
|
warn: (message?: any, ...optionalParams: any[]) => void;
|
|
371
371
|
warnAdvanced: (options: {
|
|
372
372
|
indent: boolean;
|
|
373
|
-
logLevel: "
|
|
373
|
+
logLevel: "error" | "verbose" | "info" | "warn";
|
|
374
374
|
}, message?: any, ...optionalParams: any[]) => void;
|
|
375
375
|
error: (message?: any, ...optionalParams: any[]) => void;
|
|
376
376
|
};
|
|
377
|
-
getLogLevel: () => "
|
|
378
|
-
setLogLevel: (newLogLevel: "
|
|
377
|
+
getLogLevel: () => "error" | "verbose" | "info" | "warn";
|
|
378
|
+
setLogLevel: (newLogLevel: "error" | "verbose" | "info" | "warn") => void;
|
|
379
379
|
INDENT_TOKEN: string;
|
|
380
380
|
isColorSupported: boolean;
|
|
381
381
|
HeadlessBrowser: typeof HeadlessBrowser;
|
package/dist/logger.d.ts
CHANGED
|
@@ -17,6 +17,6 @@ export declare const Log: {
|
|
|
17
17
|
warnAdvanced: (options: LogOptions, message?: any, ...optionalParams: any[]) => void;
|
|
18
18
|
error: (message?: any, ...optionalParams: any[]) => void;
|
|
19
19
|
};
|
|
20
|
-
export declare const getLogLevel: () => "
|
|
20
|
+
export declare const getLogLevel: () => "error" | "verbose" | "info" | "warn";
|
|
21
21
|
export declare const setLogLevel: (newLogLevel: LogLevel) => void;
|
|
22
22
|
export {};
|
package/dist/seek-to-frame.js
CHANGED
|
@@ -18,7 +18,7 @@ const waitForReady = (page) => {
|
|
|
18
18
|
}),
|
|
19
19
|
page
|
|
20
20
|
.mainFrame()
|
|
21
|
-
._mainWorld.waitForFunction(page.browser, 'window.
|
|
21
|
+
._mainWorld.waitForFunction(page.browser, 'window.remotion_renderReady === true')
|
|
22
22
|
.catch((err) => {
|
|
23
23
|
throw err;
|
|
24
24
|
}),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/renderer",
|
|
3
|
-
"version": "4.0.0-
|
|
3
|
+
"version": "4.0.0-alpha11",
|
|
4
4
|
"description": "Renderer for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"extract-zip": "2.0.1",
|
|
19
19
|
"source-map": "^0.8.0-beta.0",
|
|
20
20
|
"ws": "8.7.0",
|
|
21
|
-
"remotion": "4.0.0-
|
|
21
|
+
"remotion": "4.0.0-alpha11"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"react": ">=16.8.0",
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
"zod": "^3.21.4"
|
|
43
43
|
},
|
|
44
44
|
"optionalDependencies": {
|
|
45
|
-
"@remotion/compositor-darwin-
|
|
46
|
-
"@remotion/compositor-
|
|
47
|
-
"@remotion/compositor-linux-
|
|
48
|
-
"@remotion/compositor-
|
|
49
|
-
"@remotion/compositor-
|
|
50
|
-
"@remotion/compositor-linux-arm64-
|
|
51
|
-
"@remotion/compositor-
|
|
45
|
+
"@remotion/compositor-darwin-x64": "4.0.0-alpha11",
|
|
46
|
+
"@remotion/compositor-darwin-arm64": "4.0.0-alpha11",
|
|
47
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.0-alpha11",
|
|
48
|
+
"@remotion/compositor-linux-x64-musl": "4.0.0-alpha11",
|
|
49
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.0-alpha11",
|
|
50
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.0-alpha11",
|
|
51
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.0-alpha11"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
54
54
|
"remotion",
|