@remotion/studio 4.0.393 → 4.0.395

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.
@@ -20772,7 +20772,7 @@ var getTimelineSequenceLayout = ({
20772
20772
  // src/helpers/use-max-media-duration.ts
20773
20773
  import { getVideoMetadata as getVideoMetadata2 } from "@remotion/media-utils";
20774
20774
 
20775
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/misc.js
20775
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/misc.js
20776
20776
  /*!
20777
20777
  * Copyright (c) 2025-present, Vanilagy and contributors
20778
20778
  *
@@ -21036,6 +21036,19 @@ var getUint24 = (view, byteOffset, littleEndian) => {
21036
21036
  return byte1 << 16 | byte2 << 8 | byte3;
21037
21037
  }
21038
21038
  };
21039
+ var setUint24 = (view, byteOffset, value, littleEndian) => {
21040
+ value = value >>> 0;
21041
+ value = value & 16777215;
21042
+ if (littleEndian) {
21043
+ view.setUint8(byteOffset, value & 255);
21044
+ view.setUint8(byteOffset + 1, value >>> 8 & 255);
21045
+ view.setUint8(byteOffset + 2, value >>> 16 & 255);
21046
+ } else {
21047
+ view.setUint8(byteOffset, value >>> 16 & 255);
21048
+ view.setUint8(byteOffset + 1, value >>> 8 & 255);
21049
+ view.setUint8(byteOffset + 2, value & 255);
21050
+ }
21051
+ };
21039
21052
  var clamp = (value, min, max) => {
21040
21053
  return Math.max(min, Math.min(max, value));
21041
21054
  };
@@ -21189,7 +21202,7 @@ var isNumber = (x) => {
21189
21202
  return typeof x === "number" && !Number.isNaN(x);
21190
21203
  };
21191
21204
 
21192
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/metadata.js
21205
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/metadata.js
21193
21206
  /*!
21194
21207
  * Copyright (c) 2025-present, Vanilagy and contributors
21195
21208
  *
@@ -21240,7 +21253,7 @@ var DEFAULT_TRACK_DISPOSITION = {
21240
21253
  visuallyImpaired: false
21241
21254
  };
21242
21255
 
21243
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/codec.js
21256
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/codec.js
21244
21257
  /*!
21245
21258
  * Copyright (c) 2025-present, Vanilagy and contributors
21246
21259
  *
@@ -21514,7 +21527,7 @@ var parsePcmCodec = (codec) => {
21514
21527
  return { dataType, sampleSize, littleEndian, silentValue };
21515
21528
  };
21516
21529
 
21517
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/codec-data.js
21530
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/codec-data.js
21518
21531
  /*!
21519
21532
  * Copyright (c) 2025-present, Vanilagy and contributors
21520
21533
  *
@@ -21617,6 +21630,45 @@ var removeEmulationPreventionBytes = (data) => {
21617
21630
  }
21618
21631
  return new Uint8Array(result);
21619
21632
  };
21633
+ var ANNEX_B_START_CODE = new Uint8Array([0, 0, 0, 1]);
21634
+ var concatNalUnitsInAnnexB = (nalUnits) => {
21635
+ const totalLength = nalUnits.reduce((a, b) => a + ANNEX_B_START_CODE.byteLength + b.byteLength, 0);
21636
+ const result = new Uint8Array(totalLength);
21637
+ let offset = 0;
21638
+ for (const nalUnit of nalUnits) {
21639
+ result.set(ANNEX_B_START_CODE, offset);
21640
+ offset += ANNEX_B_START_CODE.byteLength;
21641
+ result.set(nalUnit, offset);
21642
+ offset += nalUnit.byteLength;
21643
+ }
21644
+ return result;
21645
+ };
21646
+ var concatNalUnitsInLengthPrefixed = (nalUnits, lengthSize) => {
21647
+ const totalLength = nalUnits.reduce((a, b) => a + lengthSize + b.byteLength, 0);
21648
+ const result = new Uint8Array(totalLength);
21649
+ let offset = 0;
21650
+ for (const nalUnit of nalUnits) {
21651
+ const dataView = new DataView(result.buffer, result.byteOffset, result.byteLength);
21652
+ switch (lengthSize) {
21653
+ case 1:
21654
+ dataView.setUint8(offset, nalUnit.byteLength);
21655
+ break;
21656
+ case 2:
21657
+ dataView.setUint16(offset, nalUnit.byteLength, false);
21658
+ break;
21659
+ case 3:
21660
+ setUint24(dataView, offset, nalUnit.byteLength, false);
21661
+ break;
21662
+ case 4:
21663
+ dataView.setUint32(offset, nalUnit.byteLength, false);
21664
+ break;
21665
+ }
21666
+ offset += lengthSize;
21667
+ result.set(nalUnit, offset);
21668
+ offset += nalUnit.byteLength;
21669
+ }
21670
+ return result;
21671
+ };
21620
21672
  var extractAvcNalUnits = (packetData, decoderConfig) => {
21621
21673
  if (decoderConfig.description) {
21622
21674
  const bytes = toUint8Array(decoderConfig.description);
@@ -21627,6 +21679,16 @@ var extractAvcNalUnits = (packetData, decoderConfig) => {
21627
21679
  return findNalUnitsInAnnexB(packetData);
21628
21680
  }
21629
21681
  };
21682
+ var concatAvcNalUnits = (nalUnits, decoderConfig) => {
21683
+ if (decoderConfig.description) {
21684
+ const bytes = toUint8Array(decoderConfig.description);
21685
+ const lengthSizeMinusOne = bytes[4] & 3;
21686
+ const lengthSize = lengthSizeMinusOne + 1;
21687
+ return concatNalUnitsInLengthPrefixed(nalUnits, lengthSize);
21688
+ } else {
21689
+ return concatNalUnitsInAnnexB(nalUnits);
21690
+ }
21691
+ };
21630
21692
  var extractNalUnitTypeForAvc = (data) => {
21631
21693
  return data[0] & 31;
21632
21694
  };
@@ -22882,7 +22944,7 @@ var readVorbisComments = (bytes, metadataTags) => {
22882
22944
  }
22883
22945
  };
22884
22946
 
22885
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/demuxer.js
22947
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/demuxer.js
22886
22948
  /*!
22887
22949
  * Copyright (c) 2025-present, Vanilagy and contributors
22888
22950
  *
@@ -22897,7 +22959,7 @@ class Demuxer {
22897
22959
  }
22898
22960
  }
22899
22961
 
22900
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/custom-coder.js
22962
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/custom-coder.js
22901
22963
  /*!
22902
22964
  * Copyright (c) 2025-present, Vanilagy and contributors
22903
22965
  *
@@ -22908,7 +22970,7 @@ class Demuxer {
22908
22970
  var customVideoDecoders = [];
22909
22971
  var customAudioDecoders = [];
22910
22972
 
22911
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/packet.js
22973
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/packet.js
22912
22974
  /*!
22913
22975
  * Copyright (c) 2025-present, Vanilagy and contributors
22914
22976
  *
@@ -23040,7 +23102,7 @@ class EncodedPacket {
23040
23102
  }
23041
23103
  }
23042
23104
 
23043
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/sample.js
23105
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/sample.js
23044
23106
  /*!
23045
23107
  * Copyright (c) 2025-present, Vanilagy and contributors
23046
23108
  *
@@ -23716,7 +23778,7 @@ var getPlaneConfigs = (format) => {
23716
23778
  };
23717
23779
  var AUDIO_SAMPLE_FORMATS = new Set(["f32", "f32-planar", "s16", "s16-planar", "s32", "s32-planar", "u8", "u8-planar"]);
23718
23780
 
23719
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/media-sink.js
23781
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/media-sink.js
23720
23782
  /*!
23721
23783
  * Copyright (c) 2025-present, Vanilagy and contributors
23722
23784
  *
@@ -24315,7 +24377,6 @@ class VideoDecoderWrapper extends DecoderWrapper {
24315
24377
  }
24316
24378
  this.raslSkipped = true;
24317
24379
  }
24318
- this.currentPacketIndex++;
24319
24380
  if (this.customDecoder) {
24320
24381
  this.customDecoderQueueSize++;
24321
24382
  this.customDecoderCallSerializer.call(() => this.customDecoder.decode(packet)).then(() => this.customDecoderQueueSize--);
@@ -24324,9 +24385,19 @@ class VideoDecoderWrapper extends DecoderWrapper {
24324
24385
  if (!isWebKit()) {
24325
24386
  insertSorted(this.inputTimestamps, packet.timestamp, (x) => x);
24326
24387
  }
24388
+ if (isChromium() && this.currentPacketIndex === 0 && this.codec === "avc") {
24389
+ const nalUnits = extractAvcNalUnits(packet.data, this.decoderConfig);
24390
+ const filteredNalUnits = nalUnits.filter((x) => {
24391
+ const type = extractNalUnitTypeForAvc(x);
24392
+ return !(type >= 20 && type <= 31);
24393
+ });
24394
+ const newData = concatAvcNalUnits(filteredNalUnits, this.decoderConfig);
24395
+ packet = new EncodedPacket(newData, packet.type, packet.timestamp, packet.duration);
24396
+ }
24327
24397
  this.decoder.decode(packet.toEncodedVideoChunk());
24328
24398
  this.decodeAlphaData(packet);
24329
24399
  }
24400
+ this.currentPacketIndex++;
24330
24401
  }
24331
24402
  decodeAlphaData(packet) {
24332
24403
  if (!packet.sideData.alpha || this.mergerCreationFailed) {
@@ -24661,7 +24732,7 @@ class VideoSampleSink extends BaseMediaSampleSink {
24661
24732
  }
24662
24733
  }
24663
24734
 
24664
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/input-track.js
24735
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/input-track.js
24665
24736
  /*!
24666
24737
  * Copyright (c) 2025-present, Vanilagy and contributors
24667
24738
  *
@@ -24870,7 +24941,7 @@ class InputAudioTrack extends InputTrack {
24870
24941
  }
24871
24942
  }
24872
24943
 
24873
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-misc.js
24944
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-misc.js
24874
24945
  /*!
24875
24946
  * Copyright (c) 2025-present, Vanilagy and contributors
24876
24947
  *
@@ -24888,7 +24959,7 @@ var buildIsobmffMimeType = (info) => {
24888
24959
  return string;
24889
24960
  };
24890
24961
 
24891
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-reader.js
24962
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-reader.js
24892
24963
  /*!
24893
24964
  * Copyright (c) 2025-present, Vanilagy and contributors
24894
24965
  *
@@ -24964,7 +25035,7 @@ var readDataBox = (slice) => {
24964
25035
  }
24965
25036
  };
24966
25037
 
24967
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-demuxer.js
25038
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-demuxer.js
24968
25039
  /*!
24969
25040
  * Copyright (c) 2025-present, Vanilagy and contributors
24970
25041
  *
@@ -27242,7 +27313,7 @@ var sampleTableIsEmpty = (sampleTable) => {
27242
27313
  return sampleTable.sampleSizes.length === 0;
27243
27314
  };
27244
27315
 
27245
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/matroska/ebml.js
27316
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/matroska/ebml.js
27246
27317
  /*!
27247
27318
  * Copyright (c) 2025-present, Vanilagy and contributors
27248
27319
  *
@@ -27557,7 +27628,7 @@ function assertDefinedSize(size4) {
27557
27628
  }
27558
27629
  }
27559
27630
 
27560
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/matroska/matroska-misc.js
27631
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/matroska/matroska-misc.js
27561
27632
  /*!
27562
27633
  * Copyright (c) 2025-present, Vanilagy and contributors
27563
27634
  *
@@ -27575,7 +27646,7 @@ var buildMatroskaMimeType = (info) => {
27575
27646
  return string;
27576
27647
  };
27577
27648
 
27578
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/matroska/matroska-demuxer.js
27649
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/matroska/matroska-demuxer.js
27579
27650
  /*!
27580
27651
  * Copyright (c) 2025-present, Vanilagy and contributors
27581
27652
  *
@@ -29454,7 +29525,7 @@ class MatroskaAudioTrackBacking extends MatroskaTrackBacking {
29454
29525
  }
29455
29526
  }
29456
29527
 
29457
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/shared/mp3-misc.js
29528
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/shared/mp3-misc.js
29458
29529
  /*!
29459
29530
  * Copyright (c) 2025-present, Vanilagy and contributors
29460
29531
  *
@@ -29696,7 +29767,7 @@ var decodeSynchsafe = (synchsafed) => {
29696
29767
  return unsynchsafed;
29697
29768
  };
29698
29769
 
29699
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/id3.js
29770
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/id3.js
29700
29771
  /*!
29701
29772
  * Copyright (c) 2025-present, Vanilagy and contributors
29702
29773
  *
@@ -30396,7 +30467,7 @@ class Id3V2Reader {
30396
30467
  }
30397
30468
  }
30398
30469
 
30399
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/mp3/mp3-reader.js
30470
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/mp3/mp3-reader.js
30400
30471
  /*!
30401
30472
  * Copyright (c) 2025-present, Vanilagy and contributors
30402
30473
  *
@@ -30422,7 +30493,7 @@ var readNextFrameHeader = async (reader, startPos, until) => {
30422
30493
  return null;
30423
30494
  };
30424
30495
 
30425
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/mp3/mp3-demuxer.js
30496
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/mp3/mp3-demuxer.js
30426
30497
  /*!
30427
30498
  * Copyright (c) 2025-present, Vanilagy and contributors
30428
30499
  *
@@ -30687,7 +30758,7 @@ class Mp3AudioTrackBacking {
30687
30758
  }
30688
30759
  }
30689
30760
 
30690
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/ogg/ogg-misc.js
30761
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/ogg/ogg-misc.js
30691
30762
  /*!
30692
30763
  * Copyright (c) 2025-present, Vanilagy and contributors
30693
30764
  *
@@ -30758,7 +30829,7 @@ var buildOggMimeType = (info) => {
30758
30829
  return string;
30759
30830
  };
30760
30831
 
30761
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/ogg/ogg-reader.js
30832
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/ogg/ogg-reader.js
30762
30833
  /*!
30763
30834
  * Copyright (c) 2025-present, Vanilagy and contributors
30764
30835
  *
@@ -30822,7 +30893,7 @@ var findNextPageHeader = (slice, until) => {
30822
30893
  return false;
30823
30894
  };
30824
30895
 
30825
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/ogg/ogg-demuxer.js
30896
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/ogg/ogg-demuxer.js
30826
30897
  /*!
30827
30898
  * Copyright (c) 2025-present, Vanilagy and contributors
30828
30899
  *
@@ -31482,7 +31553,7 @@ var findPreviousPacketEndPosition = (pageList, startPage, startSegmentIndex) =>
31482
31553
  return { page: previousPage, segmentIndex: previousPage.lacingValues.length - 1 };
31483
31554
  };
31484
31555
 
31485
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/wave/wave-demuxer.js
31556
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/wave/wave-demuxer.js
31486
31557
  /*!
31487
31558
  * Copyright (c) 2025-present, Vanilagy and contributors
31488
31559
  *
@@ -31903,7 +31974,7 @@ class WaveAudioTrackBacking {
31903
31974
  }
31904
31975
  }
31905
31976
 
31906
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/adts/adts-reader.js
31977
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/adts/adts-reader.js
31907
31978
  /*!
31908
31979
  * Copyright (c) 2025-present, Vanilagy and contributors
31909
31980
  *
@@ -31964,7 +32035,7 @@ var readFrameHeader2 = (slice) => {
31964
32035
  };
31965
32036
  };
31966
32037
 
31967
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/adts/adts-demuxer.js
32038
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/adts/adts-demuxer.js
31968
32039
  /*!
31969
32040
  * Copyright (c) 2025-present, Vanilagy and contributors
31970
32041
  *
@@ -32185,7 +32256,7 @@ class AdtsAudioTrackBacking {
32185
32256
  }
32186
32257
  }
32187
32258
 
32188
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/flac/flac-misc.js
32259
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/flac/flac-misc.js
32189
32260
  /*!
32190
32261
  * Copyright (c) 2025-present, Vanilagy and contributors
32191
32262
  *
@@ -32320,7 +32391,7 @@ var calculateCrc8 = (data) => {
32320
32391
  return crc;
32321
32392
  };
32322
32393
 
32323
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/flac/flac-demuxer.js
32394
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/flac/flac-demuxer.js
32324
32395
  /*!
32325
32396
  * Copyright (c) 2025-present, Vanilagy and contributors
32326
32397
  *
@@ -32744,7 +32815,7 @@ class FlacAudioTrackBacking {
32744
32815
  }
32745
32816
  }
32746
32817
 
32747
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/input-format.js
32818
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/input-format.js
32748
32819
  /*!
32749
32820
  * Copyright (c) 2025-present, Vanilagy and contributors
32750
32821
  *
@@ -33066,7 +33137,7 @@ var ADTS = /* @__PURE__ */ new AdtsInputFormat;
33066
33137
  var FLAC = /* @__PURE__ */ new FlacInputFormat;
33067
33138
  var ALL_FORMATS = [MP4, QTFF, MATROSKA, WEBM, WAVE, OGG, FLAC, MP3, ADTS];
33068
33139
 
33069
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/source.js
33140
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/source.js
33070
33141
  var nodeAlias = (() => ({}));
33071
33142
  /*!
33072
33143
  * Copyright (c) 2025-present, Vanilagy and contributors
@@ -33233,7 +33304,7 @@ class UrlSource extends Source {
33233
33304
  }
33234
33305
  }
33235
33306
  if (worker.aborted) {
33236
- break;
33307
+ continue;
33237
33308
  }
33238
33309
  const { done, value } = readResult;
33239
33310
  if (done) {
@@ -33247,11 +33318,7 @@ class UrlSource extends Source {
33247
33318
  this.onread?.(worker.currentPos, worker.currentPos + value.length);
33248
33319
  this._orchestrator.supplyWorkerData(worker, value);
33249
33320
  }
33250
- if (worker.aborted) {
33251
- break;
33252
- }
33253
33321
  }
33254
- worker.running = false;
33255
33322
  }
33256
33323
  _getTotalLengthFromRangeResponse(response) {
33257
33324
  const contentRange = response.headers.get("Content-Range");
@@ -33604,7 +33671,7 @@ class ReadOrchestrator {
33604
33671
  }
33605
33672
  }
33606
33673
 
33607
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/input.js
33674
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/input.js
33608
33675
  /*!
33609
33676
  * Copyright (c) 2025-present, Vanilagy and contributors
33610
33677
  *
@@ -33711,7 +33778,7 @@ class InputDisposedError extends Error {
33711
33778
  }
33712
33779
  }
33713
33780
 
33714
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/reader.js
33781
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/reader.js
33715
33782
  /*!
33716
33783
  * Copyright (c) 2025-present, Vanilagy and contributors
33717
33784
  *
@@ -33929,7 +33996,7 @@ var readAscii = (slice, length) => {
33929
33996
  }
33930
33997
  return str;
33931
33998
  };
33932
- // ../../node_modules/.bun/mediabunny@1.27.0/node_modules/mediabunny/dist/modules/src/index.js
33999
+ // ../../node_modules/.bun/mediabunny@1.27.2/node_modules/mediabunny/dist/modules/src/index.js
33933
34000
  /*!
33934
34001
  * Copyright (c) 2025-present, Vanilagy and contributors
33935
34002
  *
@@ -206,7 +206,7 @@ var renderContent = (Root) => {
206
206
  renderToDOM(/* @__PURE__ */ jsx("div", {
207
207
  children: /* @__PURE__ */ jsx(DelayedSpinner, {})
208
208
  }));
209
- import("./chunk-ate3k4rb.js").then(({ StudioInternals }) => {
209
+ import("./chunk-jzq8t233.js").then(({ StudioInternals }) => {
210
210
  window.remotion_isStudio = true;
211
211
  window.remotion_isReadOnlyStudio = true;
212
212
  window.remotion_inputProps = "{}";
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.393",
6
+ "version": "4.0.395",
7
7
  "description": "APIs for interacting with the Remotion Studio",
8
8
  "main": "dist",
9
9
  "sideEffects": false,
@@ -25,14 +25,14 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "semver": "7.5.3",
28
- "remotion": "4.0.393",
29
- "@remotion/player": "4.0.393",
30
- "@remotion/media-utils": "4.0.393",
31
- "@remotion/renderer": "4.0.393",
32
- "@remotion/web-renderer": "4.0.393",
33
- "@remotion/studio-shared": "4.0.393",
34
- "@remotion/zod-types": "4.0.393",
35
- "mediabunny": "1.27.0",
28
+ "remotion": "4.0.395",
29
+ "@remotion/player": "4.0.395",
30
+ "@remotion/media-utils": "4.0.395",
31
+ "@remotion/renderer": "4.0.395",
32
+ "@remotion/web-renderer": "4.0.395",
33
+ "@remotion/studio-shared": "4.0.395",
34
+ "@remotion/zod-types": "4.0.395",
35
+ "mediabunny": "1.27.2",
36
36
  "memfs": "3.4.3",
37
37
  "source-map": "0.7.3",
38
38
  "open": "^8.4.2",
@@ -42,7 +42,7 @@
42
42
  "react": "19.2.3",
43
43
  "react-dom": "19.2.3",
44
44
  "@types/semver": "^7.3.4",
45
- "@remotion/eslint-config-internal": "4.0.393",
45
+ "@remotion/eslint-config-internal": "4.0.395",
46
46
  "eslint": "9.19.0"
47
47
  },
48
48
  "publishConfig": {