@remotion/renderer 4.0.0-alpha.115 → 4.0.0-alpha.130
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 +6 -6
- package/package.json +10 -10
package/dist/index.d.ts
CHANGED
|
@@ -110,8 +110,8 @@ export declare const RenderInternals: {
|
|
|
110
110
|
validPixelFormats: readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"];
|
|
111
111
|
DEFAULT_BROWSER: import("./browser").Browser;
|
|
112
112
|
validateFrameRange: (frameRange: import("./frame-range").FrameRange | null) => void;
|
|
113
|
-
DEFAULT_OPENGL_RENDERER: "
|
|
114
|
-
validateOpenGlRenderer: (option: "
|
|
113
|
+
DEFAULT_OPENGL_RENDERER: "swangle" | "angle" | "egl" | "swiftshader" | null;
|
|
114
|
+
validateOpenGlRenderer: (option: "swangle" | "angle" | "egl" | "swiftshader" | null) => "swangle" | "angle" | "egl" | "swiftshader" | null;
|
|
115
115
|
validCodecs: readonly ["h264", "h265", "vp8", "vp9", "mp3", "aac", "wav", "prores", "h264-mkv", "gif"];
|
|
116
116
|
DEFAULT_PIXEL_FORMAT: "yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
|
|
117
117
|
validateQuality: (q: number | undefined) => void;
|
|
@@ -119,7 +119,7 @@ export declare const RenderInternals: {
|
|
|
119
119
|
DEFAULT_CODEC: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
120
120
|
isAudioCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | undefined) => boolean;
|
|
121
121
|
logLevels: readonly ["verbose", "info", "warn", "error"];
|
|
122
|
-
isEqualOrBelowLogLevel: (currentLevel: "
|
|
122
|
+
isEqualOrBelowLogLevel: (currentLevel: "verbose" | "error" | "info" | "warn", level: "verbose" | "error" | "info" | "warn") => boolean;
|
|
123
123
|
isValidLogLevel: (level: string) => boolean;
|
|
124
124
|
perf: typeof perf;
|
|
125
125
|
makeDownloadMap: () => import("./assets/download-map").DownloadMap;
|
|
@@ -282,7 +282,7 @@ export declare const RenderInternals: {
|
|
|
282
282
|
};
|
|
283
283
|
makeFileExtensionMap: () => Record<string, ("h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif")[]>;
|
|
284
284
|
defaultCodecsForFileExtension: Record<import("./file-extensions").FileExtension, "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif">;
|
|
285
|
-
getExecutablePath: (type: "
|
|
285
|
+
getExecutablePath: (type: "ffmpeg" | "ffprobe" | "compositor" | "ffmpeg-cwd") => string;
|
|
286
286
|
callFf: (bin: "ffmpeg" | "ffprobe", args: (string | null)[], options?: execa.Options<string> | undefined) => execa.ExecaChildProcess<string>;
|
|
287
287
|
callFfExtraOptions: () => {
|
|
288
288
|
env: {
|
|
@@ -301,6 +301,6 @@ export declare const RenderInternals: {
|
|
|
301
301
|
};
|
|
302
302
|
validStillImageFormats: readonly ["png", "jpeg", "pdf", "webp"];
|
|
303
303
|
validVideoImageFormats: readonly ["png", "jpeg", "none"];
|
|
304
|
-
DEFAULT_STILL_IMAGE_FORMAT: "
|
|
305
|
-
DEFAULT_VIDEO_IMAGE_FORMAT: "
|
|
304
|
+
DEFAULT_STILL_IMAGE_FORMAT: "png" | "jpeg" | "pdf" | "webp";
|
|
305
|
+
DEFAULT_VIDEO_IMAGE_FORMAT: "none" | "png" | "jpeg";
|
|
306
306
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/renderer",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.130+167d9bb7f",
|
|
4
4
|
"description": "Renderer for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"execa": "5.1.1",
|
|
26
26
|
"extract-zip": "2.0.1",
|
|
27
|
-
"remotion": "4.0.0-alpha.
|
|
27
|
+
"remotion": "4.0.0-alpha.130+167d9bb7f",
|
|
28
28
|
"source-map": "^0.8.0-beta.0",
|
|
29
29
|
"ws": "8.7.0"
|
|
30
30
|
},
|
|
@@ -49,13 +49,13 @@
|
|
|
49
49
|
"vitest": "0.24.3"
|
|
50
50
|
},
|
|
51
51
|
"optionalDependencies": {
|
|
52
|
-
"@remotion/compositor-darwin-arm64": "4.0.0-alpha.
|
|
53
|
-
"@remotion/compositor-darwin-x64": "4.0.0-alpha.
|
|
54
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.0-alpha.
|
|
55
|
-
"@remotion/compositor-linux-arm64-musl": "4.0.0-alpha.
|
|
56
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.0-alpha.
|
|
57
|
-
"@remotion/compositor-linux-x64-musl": "4.0.0-alpha.
|
|
58
|
-
"@remotion/compositor-win32-x64-msvc": "4.0.0-alpha.
|
|
52
|
+
"@remotion/compositor-darwin-arm64": "4.0.0-alpha.130+167d9bb7f",
|
|
53
|
+
"@remotion/compositor-darwin-x64": "4.0.0-alpha.130+167d9bb7f",
|
|
54
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.0-alpha.130+167d9bb7f",
|
|
55
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.0-alpha.130+167d9bb7f",
|
|
56
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.0-alpha.130+167d9bb7f",
|
|
57
|
+
"@remotion/compositor-linux-x64-musl": "4.0.0-alpha.130+167d9bb7f",
|
|
58
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.0-alpha.130+167d9bb7f"
|
|
59
59
|
},
|
|
60
60
|
"keywords": [
|
|
61
61
|
"remotion",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"publishConfig": {
|
|
68
68
|
"access": "public"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "167d9bb7fc36e3cb939dec0e904be7a19a8eebb2"
|
|
71
71
|
}
|