@remotion/media 4.0.513 → 4.0.514

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.
@@ -5213,6 +5213,7 @@ var audioSchema = {
5213
5213
  hiddenFromList: false,
5214
5214
  keyframable: false
5215
5215
  },
5216
+ muted: { type: "boolean", default: false, description: "Muted" },
5216
5217
  loop: { type: "boolean", default: false, description: "Loop" }
5217
5218
  };
5218
5219
  var AudioInner = (props) => {
@@ -5246,7 +5247,8 @@ var AudioInner = (props) => {
5246
5247
  displayName: name ?? "<Audio>",
5247
5248
  mediaVolume,
5248
5249
  mediaStartsAt,
5249
- loop: props.loop ?? false
5250
+ loop: props.loop ?? false,
5251
+ muted: props.muted ?? false
5250
5252
  });
5251
5253
  const [mediaDurationInSeconds, setMediaDurationInSeconds] = useState3(null);
5252
5254
  const loopDisplay = useMemo3(() => getLoopDisplay({
@@ -6421,7 +6423,8 @@ var VideoInner = ({
6421
6423
  displayName: name ?? "<Video>",
6422
6424
  mediaVolume,
6423
6425
  mediaStartsAt,
6424
- loop: loop ?? false
6426
+ loop: loop ?? false,
6427
+ muted: muted ?? false
6425
6428
  });
6426
6429
  const [mediaDurationInSeconds, setMediaDurationInSeconds] = useState6(null);
6427
6430
  const loopDisplay = useMemo6(() => getLoopDisplay({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/media",
3
- "version": "4.0.513",
3
+ "version": "4.0.514",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/esm/index.mjs",
@@ -22,8 +22,8 @@
22
22
  "make": "tsgo && bun --env-file=../.env.bundle bundle.ts"
23
23
  },
24
24
  "dependencies": {
25
- "mediabunny": "1.50.8",
26
- "remotion": "4.0.513",
25
+ "mediabunny": "1.55.1",
26
+ "remotion": "4.0.514",
27
27
  "zod": "4.4.3"
28
28
  },
29
29
  "peerDependencies": {
@@ -31,8 +31,8 @@
31
31
  "react-dom": ">=16.8.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@remotion/eslint-config-internal": "4.0.513",
35
- "@remotion/player": "4.0.513",
34
+ "@remotion/eslint-config-internal": "4.0.514",
35
+ "@remotion/player": "4.0.514",
36
36
  "@vitest/browser-webdriverio": "4.0.9",
37
37
  "eslint": "9.19.0",
38
38
  "react": "19.2.3",