@remotion/studio-shared 4.0.446 → 4.0.448

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.
@@ -69,6 +69,7 @@ type AddRenderRequestDynamicFields = {
69
69
  separateAudioTo: string | null;
70
70
  hardwareAcceleration: HardwareAccelerationOption;
71
71
  chromeMode: ChromeMode;
72
+ sampleRate: number;
72
73
  };
73
74
  export type CancelRenderRequest = {
74
75
  jobId: string;
@@ -1,4 +1,4 @@
1
- export declare const packages: readonly ["svg-3d-engine", "animation-utils", "animated-emoji", "astro-example", "babel-loader", "bugs", "brand", "bundler", "cli", "cloudrun", "compositor-darwin-arm64", "compositor-darwin-x64", "compositor-linux-arm64-gnu", "compositor-linux-arm64-musl", "compositor-linux-x64-gnu", "compositor-linux-x64-musl", "compositor-win32-x64-msvc", "core", "create-video", "discord-poster", "docusaurus-plugin", "docs", "enable-scss", "eslint-config", "eslint-config-flat", "eslint-config-internal", "eslint-plugin", "example-without-zod", "example", "fonts", "gif", "google-fonts", "install-whisper-cpp", "it-tests", "react18-tests", "lambda-go-example", "lambda-go", "lambda-php", "lambda-ruby", "lambda-python", "lambda", "lambda-client", "layout-utils", "rounded-text-box", "licensing", "lottie", "mcp", "media-utils", "motion-blur", "noise", "paths", "player-example", "player", "preload", "renderer", "rive", "shapes", "skia", "promo-pages", "streaming", "serverless", "serverless-client", "skills", "studio-server", "studio-shared", "studio", "tailwind", "tailwind-v4", "test-utils", "three", "transitions", "media-parser", "zod-types", "zod-types-v3", "webcodecs", "convert", "captions", "openai-whisper", "elevenlabs", "compositor", "example-videos", "whisper-web", "media", "web-renderer", "design", "light-leaks", "starburst", "vercel", "sfx"];
1
+ export declare const packages: readonly ["svg-3d-engine", "animation-utils", "animated-emoji", "astro-example", "babel-loader", "bugs", "brand", "bundler", "cli", "cloudrun", "codex-plugin", "compositor-darwin-arm64", "compositor-darwin-x64", "compositor-linux-arm64-gnu", "compositor-linux-arm64-musl", "compositor-linux-x64-gnu", "compositor-linux-x64-musl", "compositor-win32-x64-msvc", "core", "create-video", "discord-poster", "docusaurus-plugin", "docs", "enable-scss", "eslint-config", "eslint-config-flat", "eslint-config-internal", "eslint-plugin", "example-without-zod", "example", "fonts", "gif", "google-fonts", "install-whisper-cpp", "it-tests", "react18-tests", "lambda-go-example", "lambda-go", "lambda-php", "lambda-ruby", "lambda-python", "lambda", "lambda-client", "layout-utils", "rounded-text-box", "licensing", "lottie", "mcp", "media-utils", "motion-blur", "noise", "paths", "player-example", "player", "preload", "renderer", "rive", "shapes", "skia", "promo-pages", "streaming", "serverless", "serverless-client", "skills", "studio-server", "studio-shared", "studio", "tailwind", "tailwind-v4", "test-utils", "three", "transitions", "media-parser", "zod-types", "zod-types-v3", "webcodecs", "convert", "captions", "openai-whisper", "elevenlabs", "compositor", "example-videos", "whisper-web", "media", "web-renderer", "design", "light-leaks", "starburst", "vercel", "sfx"];
2
2
  export type Pkgs = (typeof packages)[number];
3
3
  export type ExtraPackage = {
4
4
  name: string;
@@ -12,6 +12,7 @@ exports.packages = [
12
12
  'bundler',
13
13
  'cli',
14
14
  'cloudrun',
15
+ 'codex-plugin',
15
16
  'compositor-darwin-arm64',
16
17
  'compositor-darwin-x64',
17
18
  'compositor-linux-arm64-gnu',
@@ -116,6 +117,7 @@ exports.descriptions = {
116
117
  compositor: 'Rust binary for Remotion',
117
118
  player: 'React component for embedding a Remotion preview into your app',
118
119
  cloudrun: 'Render Remotion videos on Google Cloud Run',
120
+ 'codex-plugin': null,
119
121
  renderer: 'Render Remotion videos using Node.js or Bun',
120
122
  cli: 'Control Remotion features using the `npx remotion` command',
121
123
  core: 'Make videos programmatically',
@@ -214,6 +216,7 @@ exports.installableMap = {
214
216
  bundler: false,
215
217
  cli: false,
216
218
  cloudrun: true,
219
+ 'codex-plugin': false,
217
220
  'lambda-client': false,
218
221
  'serverless-client': false,
219
222
  'compositor-darwin-arm64': false,
@@ -297,6 +300,7 @@ exports.installableMap = {
297
300
  exports.apiDocs = {
298
301
  player: 'https://www.remotion.dev/docs/player',
299
302
  cloudrun: 'https://www.remotion.dev/docs/cloudrun',
303
+ 'codex-plugin': null,
300
304
  renderer: 'https://www.remotion.dev/docs/renderer',
301
305
  cli: 'https://www.remotion.dev/docs/cli',
302
306
  core: 'https://www.remotion.dev/docs/remotion',
@@ -45,6 +45,8 @@ export type RenderDefaults = {
45
45
  chromeMode: ChromeMode;
46
46
  publicLicenseKey: string | null;
47
47
  outputLocation: string | null;
48
+ allowHtmlInCanvas: boolean;
49
+ sampleRate: number;
48
50
  };
49
51
  declare global {
50
52
  interface Window {
@@ -127,6 +127,7 @@ type RenderJobDynamicFields = ({
127
127
  forSeamlessAacConcatenation: boolean;
128
128
  separateAudioTo: string | null;
129
129
  hardwareAcceleration: HardwareAccelerationOption;
130
+ sampleRate: number;
130
131
  } & RenderJobDynamicStatus);
131
132
  import type { ChromiumOptions, OpenGlRenderer } from '@remotion/renderer';
132
133
  import type { HardwareAccelerationOption } from '@remotion/renderer/client';
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/studio-shared"
4
4
  },
5
5
  "name": "@remotion/studio-shared",
6
- "version": "4.0.446",
6
+ "version": "4.0.448",
7
7
  "description": "Internal package for shared objects between the Studio backend and frontend",
8
8
  "main": "dist",
9
9
  "sideEffects": false,
@@ -20,11 +20,11 @@
20
20
  "url": "https://github.com/remotion-dev/remotion/issues"
21
21
  },
22
22
  "dependencies": {
23
- "remotion": "4.0.446"
23
+ "remotion": "4.0.448"
24
24
  },
25
25
  "devDependencies": {
26
- "@remotion/renderer": "4.0.446",
27
- "@remotion/eslint-config-internal": "4.0.446",
26
+ "@remotion/renderer": "4.0.448",
27
+ "@remotion/eslint-config-internal": "4.0.448",
28
28
  "eslint": "9.19.0",
29
29
  "@typescript/native-preview": "7.0.0-dev.20260217.1"
30
30
  },