@remotion/renderer 4.0.228 → 4.0.229

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/client.d.ts CHANGED
@@ -394,7 +394,7 @@ export declare const BrowserSafeApis: {
394
394
  webhookCustomDataOption: {
395
395
  name: string;
396
396
  cliFlag: "webhook-custom-data";
397
- description: (type: "cli" | "ssr") => import("react/jsx-runtime").JSX.Element;
397
+ description: (type: "ssr" | "cli") => import("react/jsx-runtime").JSX.Element;
398
398
  ssrName: "customData";
399
399
  docLink: string;
400
400
  type: Record<string, unknown> | null;
@@ -807,7 +807,7 @@ export declare const BrowserSafeApis: {
807
807
  metadataOption: {
808
808
  name: string;
809
809
  cliFlag: "metadata";
810
- description: (mode: "cli" | "ssr") => import("react/jsx-runtime").JSX.Element;
810
+ description: (mode: "ssr" | "cli") => import("react/jsx-runtime").JSX.Element;
811
811
  docLink: string;
812
812
  type: import("./options/metadata").Metadata;
813
813
  getValue: ({ commandLine }: {
package/dist/index.d.ts CHANGED
@@ -139,7 +139,7 @@ export declare const RenderInternals: {
139
139
  validPixelFormats: readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"];
140
140
  DEFAULT_BROWSER: "chrome";
141
141
  validateFrameRange: (frameRange: import("./frame-range").FrameRange | null) => void;
142
- DEFAULT_OPENGL_RENDERER: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null;
142
+ DEFAULT_OPENGL_RENDERER: "angle" | "swangle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null;
143
143
  validateOpenGlRenderer: (option: unknown) => import("./options/gl").OpenGlRenderer | null;
144
144
  validCodecs: readonly ["h264", "h265", "vp8", "vp9", "mp3", "aac", "wav", "prores", "h264-mkv", "h264-ts", "gif"];
145
145
  DEFAULT_PIXEL_FORMAT: "yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
@@ -352,8 +352,8 @@ export declare const RenderInternals: {
352
352
  }) => execa.ExecaChildProcess<string>;
353
353
  validStillImageFormats: readonly ["png", "jpeg", "pdf", "webp"];
354
354
  validVideoImageFormats: readonly ["png", "jpeg", "none"];
355
- DEFAULT_STILL_IMAGE_FORMAT: "png" | "jpeg" | "pdf" | "webp";
356
- DEFAULT_VIDEO_IMAGE_FORMAT: "none" | "png" | "jpeg";
355
+ DEFAULT_STILL_IMAGE_FORMAT: "jpeg" | "png" | "webp" | "pdf";
356
+ DEFAULT_VIDEO_IMAGE_FORMAT: "none" | "jpeg" | "png";
357
357
  DEFAULT_JPEG_QUALITY: number;
358
358
  chalk: {
359
359
  enabled: () => boolean;
@@ -955,39 +955,5 @@ export declare const RenderInternals: {
955
955
  setConfig: () => never;
956
956
  };
957
957
  }>) => Promise<import("./ensure-browser").BrowserStatus>;
958
- exampleVideos: {
959
- bigBuckBunny: string;
960
- transparentWebm: string;
961
- framerWithoutFileExtension: string;
962
- corrupted: string;
963
- customDar: string;
964
- screenrecording: string;
965
- nofps: string;
966
- variablefps: string;
967
- zerotimestamp: string;
968
- webcam: string;
969
- iphonevideo: string;
970
- av1: string;
971
- framer24fps: string;
972
- music: string;
973
- notavideo: string;
974
- notafile: string;
975
- transparentwithdar: string;
976
- prores: string;
977
- iphonehevc: string;
978
- matroskaPcm16: string;
979
- mp4withmp3: string;
980
- av1bbb: string;
981
- av1mp4: string;
982
- av1mp4WithColr: string;
983
- vp8Vorbis: string;
984
- vp9: string;
985
- stretchedVp8: string;
986
- matroskaMp3: string;
987
- matroskaH265Aac: string;
988
- opusWebm: string;
989
- avi: string;
990
- opus51Webm: string;
991
- };
992
958
  printUsefulErrorMessage: (err: Error, logLevel: import("./log-level").LogLevel, indent: boolean) => void;
993
959
  };
package/dist/index.js CHANGED
@@ -113,7 +113,6 @@ const browser_instances_1 = require("./browser-instances");
113
113
  const codec_supports_media_1 = require("./codec-supports-media");
114
114
  const make_file_executable_1 = require("./compositor/make-file-executable");
115
115
  const ensure_browser_2 = require("./ensure-browser");
116
- const example_videos_1 = require("./example-videos");
117
116
  const audio_codec_1 = require("./options/audio-codec");
118
117
  const print_useful_error_message_1 = require("./print-useful-error-message");
119
118
  const render_has_audio_1 = require("./render-has-audio");
@@ -205,7 +204,6 @@ exports.RenderInternals = {
205
204
  codecSupportsMedia: codec_supports_media_1.codecSupportsMedia,
206
205
  toMegabytes: to_megabytes_1.toMegabytes,
207
206
  internalEnsureBrowser: ensure_browser_2.internalEnsureBrowser,
208
- exampleVideos: example_videos_1.exampleVideos,
209
207
  printUsefulErrorMessage: print_useful_error_message_1.printUsefulErrorMessage,
210
208
  };
211
209
  // Warn of potential performance issues with Apple Silicon (M1 chip under Rosetta)
@@ -1,7 +1,7 @@
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: () => "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | "angle-egl" | null;
4
+ export declare const getChromiumOpenGlRenderer: () => "angle" | "swangle" | "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";
@@ -171,7 +171,7 @@ export declare const allOptions: {
171
171
  webhookCustomDataOption: {
172
172
  name: string;
173
173
  cliFlag: "webhook-custom-data";
174
- description: (type: "cli" | "ssr") => import("react/jsx-runtime").JSX.Element;
174
+ description: (type: "ssr" | "cli") => import("react/jsx-runtime").JSX.Element;
175
175
  ssrName: "customData";
176
176
  docLink: string;
177
177
  type: Record<string, unknown> | null;
@@ -584,7 +584,7 @@ export declare const allOptions: {
584
584
  metadataOption: {
585
585
  name: string;
586
586
  cliFlag: "metadata";
587
- description: (mode: "cli" | "ssr") => import("react/jsx-runtime").JSX.Element;
587
+ description: (mode: "ssr" | "cli") => import("react/jsx-runtime").JSX.Element;
588
588
  docLink: string;
589
589
  type: import("./metadata").Metadata;
590
590
  getValue: ({ commandLine }: {
@@ -2,7 +2,7 @@ export type Metadata = Record<string, string>;
2
2
  export declare const metadataOption: {
3
3
  name: string;
4
4
  cliFlag: "metadata";
5
- description: (mode: "cli" | "ssr") => import("react/jsx-runtime").JSX.Element;
5
+ description: (mode: "ssr" | "cli") => import("react/jsx-runtime").JSX.Element;
6
6
  docLink: string;
7
7
  type: Metadata;
8
8
  getValue: ({ commandLine }: {
@@ -1,7 +1,7 @@
1
1
  export declare const webhookCustomDataOption: {
2
2
  name: string;
3
3
  cliFlag: "webhook-custom-data";
4
- description: (type: "cli" | "ssr") => import("react/jsx-runtime").JSX.Element;
4
+ description: (type: "ssr" | "cli") => import("react/jsx-runtime").JSX.Element;
5
5
  ssrName: "customData";
6
6
  docLink: string;
7
7
  type: Record<string, unknown> | null;
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.228",
6
+ "version": "4.0.229",
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
- "remotion": "4.0.228",
22
- "@remotion/streaming": "4.0.228"
21
+ "remotion": "4.0.229",
22
+ "@remotion/streaming": "4.0.229"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "react": ">=16.8.0",
@@ -33,16 +33,17 @@
33
33
  "react-dom": "18.3.1",
34
34
  "@types/ws": "8.5.10",
35
35
  "eslint": "9.14.0",
36
- "@remotion/eslint-config-internal": "4.0.228"
36
+ "@remotion/example-videos": "4.0.229",
37
+ "@remotion/eslint-config-internal": "4.0.229"
37
38
  },
38
39
  "optionalDependencies": {
39
- "@remotion/compositor-darwin-x64": "4.0.228",
40
- "@remotion/compositor-linux-arm64-gnu": "4.0.228",
41
- "@remotion/compositor-linux-arm64-musl": "4.0.228",
42
- "@remotion/compositor-linux-x64-gnu": "4.0.228",
43
- "@remotion/compositor-linux-x64-musl": "4.0.228",
44
- "@remotion/compositor-win32-x64-msvc": "4.0.228",
45
- "@remotion/compositor-darwin-arm64": "4.0.228"
40
+ "@remotion/compositor-darwin-arm64": "4.0.229",
41
+ "@remotion/compositor-darwin-x64": "4.0.229",
42
+ "@remotion/compositor-linux-arm64-gnu": "4.0.229",
43
+ "@remotion/compositor-linux-arm64-musl": "4.0.229",
44
+ "@remotion/compositor-linux-x64-gnu": "4.0.229",
45
+ "@remotion/compositor-linux-x64-musl": "4.0.229",
46
+ "@remotion/compositor-win32-x64-msvc": "4.0.229"
46
47
  },
47
48
  "keywords": [
48
49
  "remotion",