@remotion/renderer 3.3.37 → 3.3.39
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.
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { Codec } from './codec';
|
|
2
|
-
export declare const getFileExtensionFromCodec: (codec: Codec) => "mp3" | "aac" | "wav" | "gif" | "
|
|
2
|
+
export declare const getFileExtensionFromCodec: (codec: Codec) => "mp3" | "aac" | "wav" | "gif" | "webm" | "mp4" | "mov" | "mkv";
|
package/dist/index.d.ts
CHANGED
|
@@ -60,7 +60,7 @@ export declare const RenderInternals: {
|
|
|
60
60
|
scale: number;
|
|
61
61
|
codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
62
62
|
}) => void;
|
|
63
|
-
getFileExtensionFromCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif") => "mp3" | "aac" | "wav" | "gif" | "
|
|
63
|
+
getFileExtensionFromCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif") => "mp3" | "aac" | "wav" | "gif" | "webm" | "mp4" | "mov" | "mkv";
|
|
64
64
|
tmpDir: (str: string) => string;
|
|
65
65
|
deleteDirectory: (directory: string) => Promise<void>;
|
|
66
66
|
isServeUrl: (potentialUrl: string) => boolean;
|
|
@@ -117,8 +117,8 @@ export declare const RenderInternals: {
|
|
|
117
117
|
validPixelFormats: readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"];
|
|
118
118
|
DEFAULT_BROWSER: import("./browser").Browser;
|
|
119
119
|
validateFrameRange: (frameRange: import("./frame-range").FrameRange | null) => void;
|
|
120
|
-
DEFAULT_OPENGL_RENDERER: "
|
|
121
|
-
validateOpenGlRenderer: (option: "
|
|
120
|
+
DEFAULT_OPENGL_RENDERER: "angle" | "swangle" | "egl" | "swiftshader" | null;
|
|
121
|
+
validateOpenGlRenderer: (option: "angle" | "swangle" | "egl" | "swiftshader" | null) => "angle" | "swangle" | "egl" | "swiftshader" | null;
|
|
122
122
|
validImageFormats: readonly ["png", "jpeg", "none"];
|
|
123
123
|
validCodecs: readonly ["h264", "h265", "vp8", "vp9", "mp3", "aac", "wav", "prores", "h264-mkv", "gif"];
|
|
124
124
|
DEFAULT_PIXEL_FORMAT: "yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
|
|
@@ -128,7 +128,7 @@ export declare const RenderInternals: {
|
|
|
128
128
|
DEFAULT_CODEC: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif";
|
|
129
129
|
isAudioCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | "gif" | undefined) => boolean;
|
|
130
130
|
logLevels: readonly ["verbose", "info", "warn", "error"];
|
|
131
|
-
isEqualOrBelowLogLevel: (currentLevel: "
|
|
131
|
+
isEqualOrBelowLogLevel: (currentLevel: "error" | "verbose" | "info" | "warn", level: "error" | "verbose" | "info" | "warn") => boolean;
|
|
132
132
|
isValidLogLevel: (level: string) => boolean;
|
|
133
133
|
perf: typeof perf;
|
|
134
134
|
makeDownloadMap: () => import("./assets/download-map").DownloadMap;
|
package/dist/ws/ws-types.js
CHANGED
|
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.ws = void 0;
|
|
7
7
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
8
|
-
// @ts-expect-error
|
|
8
|
+
// eslint-disable-next-line @typescript-eslint/prefer-ts-expect-error
|
|
9
|
+
// @ts-ignore
|
|
9
10
|
const ws_1 = __importDefault(require("ws"));
|
|
10
11
|
exports.ws = ws_1.default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/renderer",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.39",
|
|
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": "3.3.
|
|
27
|
+
"remotion": "3.3.39",
|
|
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": "3.3.
|
|
53
|
-
"@remotion/compositor-darwin-x64": "3.3.
|
|
54
|
-
"@remotion/compositor-linux-arm64-gnu": "3.3.
|
|
55
|
-
"@remotion/compositor-linux-arm64-musl": "3.3.
|
|
56
|
-
"@remotion/compositor-linux-x64-gnu": "3.3.
|
|
57
|
-
"@remotion/compositor-linux-x64-musl": "3.3.
|
|
58
|
-
"@remotion/compositor-win32-x64-msvc": "3.3.
|
|
52
|
+
"@remotion/compositor-darwin-arm64": "3.3.39",
|
|
53
|
+
"@remotion/compositor-darwin-x64": "3.3.39",
|
|
54
|
+
"@remotion/compositor-linux-arm64-gnu": "3.3.39",
|
|
55
|
+
"@remotion/compositor-linux-arm64-musl": "3.3.39",
|
|
56
|
+
"@remotion/compositor-linux-x64-gnu": "3.3.39",
|
|
57
|
+
"@remotion/compositor-linux-x64-musl": "3.3.39",
|
|
58
|
+
"@remotion/compositor-win32-x64-msvc": "3.3.39"
|
|
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": "5a07260074fe3a6db2cdba0001503c665951414d"
|
|
71
71
|
}
|