@remotion/studio 4.0.319 → 4.0.321

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.
@@ -35095,9 +35095,9 @@ var parseWav = (state) => {
35095
35095
  if (insideMediaSection === "in-section") {
35096
35096
  return parseMediaSection2({ state });
35097
35097
  }
35098
- const type = iterator.getByteString(4, false);
35098
+ const type = iterator.getByteString(4, false).toLowerCase();
35099
35099
  Log.trace(state.logLevel, `Processing box type ${type}`);
35100
- if (type === "RIFF") {
35100
+ if (type === "riff") {
35101
35101
  return parseHeader({ state });
35102
35102
  }
35103
35103
  if (type === "fmt") {
@@ -35106,13 +35106,13 @@ var parseWav = (state) => {
35106
35106
  if (type === "data") {
35107
35107
  return parseData({ state });
35108
35108
  }
35109
- if (type === "LIST") {
35109
+ if (type === "list") {
35110
35110
  return parseList({ state });
35111
35111
  }
35112
- if (type === "id3" || type === "ID3") {
35112
+ if (type === "id3") {
35113
35113
  return parseId32({ state });
35114
35114
  }
35115
- if (type === "JUNK" || type === "FLLR") {
35115
+ if (type === "junk" || type === "fllr") {
35116
35116
  return parseJunk({ state });
35117
35117
  }
35118
35118
  if (type === "fact") {
@@ -35375,9 +35375,9 @@ var parseWav = (state) => {
35375
35375
  if (insideMediaSection === "in-section") {
35376
35376
  return parseMediaSection2({ state });
35377
35377
  }
35378
- const type = iterator.getByteString(4, false);
35378
+ const type = iterator.getByteString(4, false).toLowerCase();
35379
35379
  Log.trace(state.logLevel, `Processing box type ${type}`);
35380
- if (type === "RIFF") {
35380
+ if (type === "riff") {
35381
35381
  return parseHeader({ state });
35382
35382
  }
35383
35383
  if (type === "fmt") {
@@ -35386,13 +35386,13 @@ var parseWav = (state) => {
35386
35386
  if (type === "data") {
35387
35387
  return parseData({ state });
35388
35388
  }
35389
- if (type === "LIST") {
35389
+ if (type === "list") {
35390
35390
  return parseList({ state });
35391
35391
  }
35392
- if (type === "id3" || type === "ID3") {
35392
+ if (type === "id3") {
35393
35393
  return parseId32({ state });
35394
35394
  }
35395
- if (type === "JUNK" || type === "FLLR") {
35395
+ if (type === "junk" || type === "fllr") {
35396
35396
  return parseJunk({ state });
35397
35397
  }
35398
35398
  if (type === "fact") {
@@ -183,7 +183,7 @@ var renderContent = (Root) => {
183
183
  renderToDOM(/* @__PURE__ */ jsx("div", {
184
184
  children: /* @__PURE__ */ jsx(DelayedSpinner, {})
185
185
  }));
186
- import("./chunk-xg9wh6m7.js").then(({ StudioInternals }) => {
186
+ import("./chunk-x83trzrx.js").then(({ StudioInternals }) => {
187
187
  renderToDOM(/* @__PURE__ */ jsx(StudioInternals.Studio, {
188
188
  readOnly: true,
189
189
  rootComponent: Root
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "url": "https://github.com/remotion-dev/remotion/tree/main/packages/studio"
4
4
  },
5
5
  "name": "@remotion/studio",
6
- "version": "4.0.319",
6
+ "version": "4.0.321",
7
7
  "description": "APIs for interacting with the Remotion Studio",
8
8
  "main": "dist",
9
9
  "sideEffects": false,
@@ -23,21 +23,21 @@
23
23
  "source-map": "0.7.3",
24
24
  "open": "^8.4.2",
25
25
  "zod": "3.22.3",
26
- "remotion": "4.0.319",
27
- "@remotion/media-parser": "4.0.319",
28
- "@remotion/player": "4.0.319",
29
- "@remotion/renderer": "4.0.319",
30
- "@remotion/media-utils": "4.0.319",
31
- "@remotion/webcodecs": "4.0.319",
32
- "@remotion/studio-shared": "4.0.319",
33
- "@remotion/zod-types": "4.0.319"
26
+ "@remotion/studio-shared": "4.0.321",
27
+ "@remotion/zod-types": "4.0.321",
28
+ "@remotion/media-utils": "4.0.321",
29
+ "@remotion/player": "4.0.321",
30
+ "@remotion/media-parser": "4.0.321",
31
+ "@remotion/renderer": "4.0.321",
32
+ "remotion": "4.0.321",
33
+ "@remotion/webcodecs": "4.0.321"
34
34
  },
35
35
  "devDependencies": {
36
36
  "react": "19.0.0",
37
37
  "react-dom": "19.0.0",
38
38
  "@types/semver": "^7.3.4",
39
39
  "eslint": "9.19.0",
40
- "@remotion/eslint-config-internal": "4.0.319"
40
+ "@remotion/eslint-config-internal": "4.0.321"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"