@remotion/renderer
Advanced tools
Comparing version 4.0.228 to 4.0.229
@@ -142,3 +142,3 @@ import execa from 'execa'; | ||
validateFrameRange: (frameRange: import("./frame-range").FrameRange | null) => void; | ||
DEFAULT_OPENGL_RENDERER: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null; | ||
DEFAULT_OPENGL_RENDERER: "angle" | "swangle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null; | ||
validateOpenGlRenderer: (option: unknown) => import("./options/gl").OpenGlRenderer | null; | ||
@@ -356,4 +356,4 @@ validCodecs: readonly ["h264", "h265", "vp8", "vp9", "mp3", "aac", "wav", "prores", "h264-mkv", "h264-ts", "gif"]; | ||
validVideoImageFormats: readonly ["png", "jpeg", "none"]; | ||
DEFAULT_STILL_IMAGE_FORMAT: "png" | "jpeg" | "pdf" | "webp"; | ||
DEFAULT_VIDEO_IMAGE_FORMAT: "none" | "png" | "jpeg"; | ||
DEFAULT_STILL_IMAGE_FORMAT: "jpeg" | "png" | "webp" | "pdf"; | ||
DEFAULT_VIDEO_IMAGE_FORMAT: "none" | "jpeg" | "png"; | ||
DEFAULT_JPEG_QUALITY: number; | ||
@@ -960,37 +960,3 @@ chalk: { | ||
}>) => Promise<import("./ensure-browser").BrowserStatus>; | ||
exampleVideos: { | ||
bigBuckBunny: string; | ||
transparentWebm: string; | ||
framerWithoutFileExtension: string; | ||
corrupted: string; | ||
customDar: string; | ||
screenrecording: string; | ||
nofps: string; | ||
variablefps: string; | ||
zerotimestamp: string; | ||
webcam: string; | ||
iphonevideo: string; | ||
av1: string; | ||
framer24fps: string; | ||
music: string; | ||
notavideo: string; | ||
notafile: string; | ||
transparentwithdar: string; | ||
prores: string; | ||
iphonehevc: string; | ||
matroskaPcm16: string; | ||
mp4withmp3: string; | ||
av1bbb: string; | ||
av1mp4: string; | ||
av1mp4WithColr: string; | ||
vp8Vorbis: string; | ||
vp9: string; | ||
stretchedVp8: string; | ||
matroskaMp3: string; | ||
matroskaH265Aac: string; | ||
opusWebm: string; | ||
avi: string; | ||
opus51Webm: string; | ||
}; | ||
printUsefulErrorMessage: (err: Error, logLevel: import("./log-level").LogLevel, indent: boolean) => void; | ||
}; |
@@ -116,3 +116,2 @@ "use strict"; | ||
const ensure_browser_2 = require("./ensure-browser"); | ||
const example_videos_1 = require("./example-videos"); | ||
const audio_codec_1 = require("./options/audio-codec"); | ||
@@ -209,3 +208,2 @@ const print_useful_error_message_1 = require("./print-useful-error-message"); | ||
internalEnsureBrowser: ensure_browser_2.internalEnsureBrowser, | ||
exampleVideos: example_videos_1.exampleVideos, | ||
printUsefulErrorMessage: print_useful_error_message_1.printUsefulErrorMessage, | ||
@@ -212,0 +210,0 @@ }; |
export declare const validOpenGlRenderers: readonly ["swangle", "angle", "egl", "swiftshader", "vulkan", "angle-egl"]; | ||
export type OpenGlRenderer = (typeof validOpenGlRenderers)[number]; | ||
export declare const DEFAULT_OPENGL_RENDERER: OpenGlRenderer | null; | ||
export declare const getChromiumOpenGlRenderer: () => "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null; | ||
export declare const getChromiumOpenGlRenderer: () => "angle" | "swangle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null; | ||
export declare const setChromiumOpenGlRenderer: (renderer: OpenGlRenderer) => void; | ||
@@ -6,0 +6,0 @@ export declare const glOption: { |
@@ -174,3 +174,3 @@ import type { AnyRemotionOption } from './option'; | ||
cliFlag: "webhook-custom-data"; | ||
description: (type: "cli" | "ssr") => import("react/jsx-runtime").JSX.Element; | ||
description: (type: "ssr" | "cli") => import("react/jsx-runtime").JSX.Element; | ||
ssrName: "customData"; | ||
@@ -588,3 +588,3 @@ docLink: string; | ||
cliFlag: "metadata"; | ||
description: (mode: "cli" | "ssr") => import("react/jsx-runtime").JSX.Element; | ||
description: (mode: "ssr" | "cli") => import("react/jsx-runtime").JSX.Element; | ||
docLink: string; | ||
@@ -591,0 +591,0 @@ type: import("./metadata").Metadata; |
@@ -5,3 +5,3 @@ export type Metadata = Record<string, string>; | ||
cliFlag: "metadata"; | ||
description: (mode: "cli" | "ssr") => import("react/jsx-runtime").JSX.Element; | ||
description: (mode: "ssr" | "cli") => import("react/jsx-runtime").JSX.Element; | ||
docLink: string; | ||
@@ -8,0 +8,0 @@ type: Metadata; |
export declare const webhookCustomDataOption: { | ||
name: string; | ||
cliFlag: "webhook-custom-data"; | ||
description: (type: "cli" | "ssr") => import("react/jsx-runtime").JSX.Element; | ||
description: (type: "ssr" | "cli") => import("react/jsx-runtime").JSX.Element; | ||
ssrName: "customData"; | ||
@@ -6,0 +6,0 @@ docLink: string; |
@@ -6,3 +6,3 @@ { | ||
"name": "@remotion/renderer", | ||
"version": "4.0.228", | ||
"version": "4.0.229", | ||
"description": "Render Remotion videos using Node.js or Bun", | ||
@@ -22,4 +22,4 @@ "main": "dist/index.js", | ||
"ws": "8.17.1", | ||
"remotion": "4.0.228", | ||
"@remotion/streaming": "4.0.228" | ||
"remotion": "4.0.229", | ||
"@remotion/streaming": "4.0.229" | ||
}, | ||
@@ -38,12 +38,13 @@ "peerDependencies": { | ||
"eslint": "9.14.0", | ||
"@remotion/eslint-config-internal": "4.0.228" | ||
"@remotion/example-videos": "4.0.229", | ||
"@remotion/eslint-config-internal": "4.0.229" | ||
}, | ||
"optionalDependencies": { | ||
"@remotion/compositor-darwin-x64": "4.0.228", | ||
"@remotion/compositor-linux-arm64-gnu": "4.0.228", | ||
"@remotion/compositor-linux-arm64-musl": "4.0.228", | ||
"@remotion/compositor-linux-x64-gnu": "4.0.228", | ||
"@remotion/compositor-linux-x64-musl": "4.0.228", | ||
"@remotion/compositor-win32-x64-msvc": "4.0.228", | ||
"@remotion/compositor-darwin-arm64": "4.0.228" | ||
"@remotion/compositor-darwin-arm64": "4.0.229", | ||
"@remotion/compositor-darwin-x64": "4.0.229", | ||
"@remotion/compositor-linux-arm64-gnu": "4.0.229", | ||
"@remotion/compositor-linux-arm64-musl": "4.0.229", | ||
"@remotion/compositor-linux-x64-gnu": "4.0.229", | ||
"@remotion/compositor-linux-x64-musl": "4.0.229", | ||
"@remotion/compositor-win32-x64-msvc": "4.0.229" | ||
}, | ||
@@ -50,0 +51,0 @@ "keywords": [ |
Sorry, the diff of this file is too big to display
1511142
9
40575
+ Added@remotion/compositor-darwin-arm64@4.0.229(transitive)
+ Added@remotion/compositor-darwin-x64@4.0.229(transitive)
+ Added@remotion/compositor-linux-arm64-gnu@4.0.229(transitive)
+ Added@remotion/compositor-linux-arm64-musl@4.0.229(transitive)
+ Added@remotion/compositor-linux-x64-gnu@4.0.229(transitive)
+ Added@remotion/compositor-linux-x64-musl@4.0.229(transitive)
+ Added@remotion/compositor-win32-x64-msvc@4.0.229(transitive)
+ Added@remotion/streaming@4.0.229(transitive)
+ Addedremotion@4.0.229(transitive)
- Removed@remotion/compositor-darwin-arm64@4.0.228(transitive)
- Removed@remotion/compositor-darwin-x64@4.0.228(transitive)
- Removed@remotion/compositor-linux-arm64-gnu@4.0.228(transitive)
- Removed@remotion/compositor-linux-arm64-musl@4.0.228(transitive)
- Removed@remotion/compositor-linux-x64-gnu@4.0.228(transitive)
- Removed@remotion/compositor-linux-x64-musl@4.0.228(transitive)
- Removed@remotion/compositor-win32-x64-msvc@4.0.228(transitive)
- Removed@remotion/streaming@4.0.228(transitive)
- Removedremotion@4.0.228(transitive)
Updated@remotion/streaming@4.0.229
Updatedremotion@4.0.229