@remotion/studio 4.0.398 → 4.0.400
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/components/OpenEditorButton.js +1 -0
- package/dist/components/RenderModal/GuiRenderStatus.js +8 -1
- package/dist/esm/{chunk-qrhc345b.js → chunk-71hmw645.js} +63 -34
- package/dist/esm/internals.mjs +63 -34
- package/dist/esm/previewEntry.mjs +63 -34
- package/dist/esm/renderEntry.mjs +1 -1
- package/package.json +10 -10
|
@@ -29,6 +29,13 @@ const right = {
|
|
|
29
29
|
const BundlingProgress = ({ progress, doneIn }) => {
|
|
30
30
|
return ((0, jsx_runtime_1.jsxs)("div", { style: progressItem, children: [progress === 1 ? ((0, jsx_runtime_1.jsx)(SuccessIcon_1.SuccessIcon, {})) : ((0, jsx_runtime_1.jsx)(CircularProgress_1.CircularProgress, { progress: progress })), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 1 }), (0, jsx_runtime_1.jsx)("div", { style: label, children: progress === 1 ? 'Bundled' : `Bundling ${progress * 100}%` }), doneIn ? (0, jsx_runtime_1.jsxs)("div", { style: right, children: [doneIn, "ms"] }) : null] }));
|
|
31
31
|
};
|
|
32
|
+
const BrowserSetupProgress = ({ progress, doneIn, startedBundling, alreadyAvailable }) => {
|
|
33
|
+
return ((0, jsx_runtime_1.jsxs)("div", { style: progressItem, children: [progress === 1 || alreadyAvailable ? ((0, jsx_runtime_1.jsx)(SuccessIcon_1.SuccessIcon, {})) : ((0, jsx_runtime_1.jsx)(CircularProgress_1.CircularProgress, { progress: progress })), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 1 }), (0, jsx_runtime_1.jsx)("div", { style: label, children: alreadyAvailable && startedBundling
|
|
34
|
+
? 'Headless browser already available'
|
|
35
|
+
: progress === 1
|
|
36
|
+
? 'Downloaded Headless Shell'
|
|
37
|
+
: `Downloading Headless Shell ${Math.round(progress * 100)}%` }), doneIn ? (0, jsx_runtime_1.jsxs)("div", { style: right, children: [doneIn, "ms"] }) : null] }));
|
|
38
|
+
};
|
|
32
39
|
const RenderingProgress = ({ progress }) => {
|
|
33
40
|
return ((0, jsx_runtime_1.jsxs)("div", { style: progressItem, children: [progress.frames === progress.totalFrames ? ((0, jsx_runtime_1.jsx)(SuccessIcon_1.SuccessIcon, {})) : ((0, jsx_runtime_1.jsx)(CircularProgress_1.CircularProgress, { progress: progress.frames / progress.totalFrames })), (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 1 }), (0, jsx_runtime_1.jsx)("div", { style: label, children: progress.doneIn
|
|
34
41
|
? `Rendered ${progress.totalFrames} frames`
|
|
@@ -73,6 +80,6 @@ const GuiRenderStatus = ({ job }) => {
|
|
|
73
80
|
if (job.status === 'idle' || job.status === 'failed') {
|
|
74
81
|
throw new Error('This component should not be rendered when the job is idle');
|
|
75
82
|
}
|
|
76
|
-
return ((0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 0.5 }), (0, jsx_runtime_1.jsx)(BundlingProgress, { progress: job.progress.bundling.progress, doneIn: job.progress.bundling.doneIn }), job.progress.rendering ? ((0, jsx_runtime_1.jsx)(RenderingProgress, { progress: job.progress.rendering })) : null, job.progress.stitching ? ((0, jsx_runtime_1.jsx)(StitchingProgress, { progress: job.progress.stitching })) : null, job.progress.downloads.length > 0 ? ((0, jsx_runtime_1.jsx)(DownloadsProgress, { downloads: job.progress.downloads })) : null, job.status === 'done' ? (0, jsx_runtime_1.jsx)(OpenFile, { job: job }) : null, (0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 1 })] }));
|
|
83
|
+
return ((0, jsx_runtime_1.jsxs)("div", { children: [(0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 0.5 }), (0, jsx_runtime_1.jsx)(BrowserSetupProgress, { ...job.progress.browser, startedBundling: Boolean(job.progress.bundling) }), job.progress.bundling && ((0, jsx_runtime_1.jsx)(BundlingProgress, { progress: job.progress.bundling.progress, doneIn: job.progress.bundling.doneIn })), job.progress.rendering ? ((0, jsx_runtime_1.jsx)(RenderingProgress, { progress: job.progress.rendering })) : null, job.progress.stitching ? ((0, jsx_runtime_1.jsx)(StitchingProgress, { progress: job.progress.stitching })) : null, job.progress.downloads.length > 0 ? ((0, jsx_runtime_1.jsx)(DownloadsProgress, { downloads: job.progress.downloads })) : null, job.status === 'done' ? (0, jsx_runtime_1.jsx)(OpenFile, { job: job }) : null, (0, jsx_runtime_1.jsx)(layout_1.Spacing, { y: 1 })] }));
|
|
77
84
|
};
|
|
78
85
|
exports.GuiRenderStatus = GuiRenderStatus;
|
|
@@ -7129,6 +7129,7 @@ var buttonStyle = {
|
|
|
7129
7129
|
border: "none",
|
|
7130
7130
|
height: "20px",
|
|
7131
7131
|
display: "flex",
|
|
7132
|
+
paddingInline: "6px",
|
|
7132
7133
|
justifyContent: "center",
|
|
7133
7134
|
alignItems: "center"
|
|
7134
7135
|
};
|
|
@@ -20746,7 +20747,7 @@ var getTimelineSequenceLayout = ({
|
|
|
20746
20747
|
// src/helpers/use-max-media-duration.ts
|
|
20747
20748
|
import { getVideoMetadata as getVideoMetadata2 } from "@remotion/media-utils";
|
|
20748
20749
|
|
|
20749
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
20750
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/misc.js
|
|
20750
20751
|
/*!
|
|
20751
20752
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
20752
20753
|
*
|
|
@@ -21176,7 +21177,7 @@ var isNumber = (x) => {
|
|
|
21176
21177
|
return typeof x === "number" && !Number.isNaN(x);
|
|
21177
21178
|
};
|
|
21178
21179
|
|
|
21179
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
21180
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/metadata.js
|
|
21180
21181
|
/*!
|
|
21181
21182
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
21182
21183
|
*
|
|
@@ -21227,7 +21228,7 @@ var DEFAULT_TRACK_DISPOSITION = {
|
|
|
21227
21228
|
visuallyImpaired: false
|
|
21228
21229
|
};
|
|
21229
21230
|
|
|
21230
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
21231
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/codec.js
|
|
21231
21232
|
/*!
|
|
21232
21233
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
21233
21234
|
*
|
|
@@ -21501,7 +21502,7 @@ var parsePcmCodec = (codec) => {
|
|
|
21501
21502
|
return { dataType, sampleSize, littleEndian, silentValue };
|
|
21502
21503
|
};
|
|
21503
21504
|
|
|
21504
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
21505
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/codec-data.js
|
|
21505
21506
|
/*!
|
|
21506
21507
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
21507
21508
|
*
|
|
@@ -22918,7 +22919,7 @@ var readVorbisComments = (bytes, metadataTags) => {
|
|
|
22918
22919
|
}
|
|
22919
22920
|
};
|
|
22920
22921
|
|
|
22921
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
22922
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/demuxer.js
|
|
22922
22923
|
/*!
|
|
22923
22924
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
22924
22925
|
*
|
|
@@ -22933,7 +22934,7 @@ class Demuxer {
|
|
|
22933
22934
|
}
|
|
22934
22935
|
}
|
|
22935
22936
|
|
|
22936
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
22937
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/custom-coder.js
|
|
22937
22938
|
/*!
|
|
22938
22939
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
22939
22940
|
*
|
|
@@ -22944,7 +22945,7 @@ class Demuxer {
|
|
|
22944
22945
|
var customVideoDecoders = [];
|
|
22945
22946
|
var customAudioDecoders = [];
|
|
22946
22947
|
|
|
22947
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
22948
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/packet.js
|
|
22948
22949
|
/*!
|
|
22949
22950
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
22950
22951
|
*
|
|
@@ -23076,7 +23077,7 @@ class EncodedPacket {
|
|
|
23076
23077
|
}
|
|
23077
23078
|
}
|
|
23078
23079
|
|
|
23079
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
23080
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/sample.js
|
|
23080
23081
|
/*!
|
|
23081
23082
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
23082
23083
|
*
|
|
@@ -23752,7 +23753,7 @@ var getPlaneConfigs = (format) => {
|
|
|
23752
23753
|
};
|
|
23753
23754
|
var AUDIO_SAMPLE_FORMATS = new Set(["f32", "f32-planar", "s16", "s16-planar", "s32", "s32-planar", "u8", "u8-planar"]);
|
|
23754
23755
|
|
|
23755
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
23756
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/media-sink.js
|
|
23756
23757
|
/*!
|
|
23757
23758
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
23758
23759
|
*
|
|
@@ -24706,7 +24707,7 @@ class VideoSampleSink extends BaseMediaSampleSink {
|
|
|
24706
24707
|
}
|
|
24707
24708
|
}
|
|
24708
24709
|
|
|
24709
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
24710
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/input-track.js
|
|
24710
24711
|
/*!
|
|
24711
24712
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
24712
24713
|
*
|
|
@@ -24915,7 +24916,7 @@ class InputAudioTrack extends InputTrack {
|
|
|
24915
24916
|
}
|
|
24916
24917
|
}
|
|
24917
24918
|
|
|
24918
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
24919
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-misc.js
|
|
24919
24920
|
/*!
|
|
24920
24921
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
24921
24922
|
*
|
|
@@ -24933,7 +24934,7 @@ var buildIsobmffMimeType = (info) => {
|
|
|
24933
24934
|
return string;
|
|
24934
24935
|
};
|
|
24935
24936
|
|
|
24936
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
24937
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-reader.js
|
|
24937
24938
|
/*!
|
|
24938
24939
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
24939
24940
|
*
|
|
@@ -25009,7 +25010,7 @@ var readDataBox = (slice) => {
|
|
|
25009
25010
|
}
|
|
25010
25011
|
};
|
|
25011
25012
|
|
|
25012
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
25013
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-demuxer.js
|
|
25013
25014
|
/*!
|
|
25014
25015
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
25015
25016
|
*
|
|
@@ -27287,7 +27288,7 @@ var sampleTableIsEmpty = (sampleTable) => {
|
|
|
27287
27288
|
return sampleTable.sampleSizes.length === 0;
|
|
27288
27289
|
};
|
|
27289
27290
|
|
|
27290
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
27291
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/matroska/ebml.js
|
|
27291
27292
|
/*!
|
|
27292
27293
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
27293
27294
|
*
|
|
@@ -27602,7 +27603,7 @@ function assertDefinedSize(size4) {
|
|
|
27602
27603
|
}
|
|
27603
27604
|
}
|
|
27604
27605
|
|
|
27605
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
27606
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/matroska/matroska-misc.js
|
|
27606
27607
|
/*!
|
|
27607
27608
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
27608
27609
|
*
|
|
@@ -27620,7 +27621,7 @@ var buildMatroskaMimeType = (info) => {
|
|
|
27620
27621
|
return string;
|
|
27621
27622
|
};
|
|
27622
27623
|
|
|
27623
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
27624
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/matroska/matroska-demuxer.js
|
|
27624
27625
|
/*!
|
|
27625
27626
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
27626
27627
|
*
|
|
@@ -29499,7 +29500,7 @@ class MatroskaAudioTrackBacking extends MatroskaTrackBacking {
|
|
|
29499
29500
|
}
|
|
29500
29501
|
}
|
|
29501
29502
|
|
|
29502
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
29503
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/shared/mp3-misc.js
|
|
29503
29504
|
/*!
|
|
29504
29505
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
29505
29506
|
*
|
|
@@ -29741,7 +29742,7 @@ var decodeSynchsafe = (synchsafed) => {
|
|
|
29741
29742
|
return unsynchsafed;
|
|
29742
29743
|
};
|
|
29743
29744
|
|
|
29744
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
29745
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/id3.js
|
|
29745
29746
|
/*!
|
|
29746
29747
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
29747
29748
|
*
|
|
@@ -30441,7 +30442,7 @@ class Id3V2Reader {
|
|
|
30441
30442
|
}
|
|
30442
30443
|
}
|
|
30443
30444
|
|
|
30444
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30445
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/mp3/mp3-reader.js
|
|
30445
30446
|
/*!
|
|
30446
30447
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30447
30448
|
*
|
|
@@ -30467,7 +30468,7 @@ var readNextFrameHeader = async (reader, startPos, until) => {
|
|
|
30467
30468
|
return null;
|
|
30468
30469
|
};
|
|
30469
30470
|
|
|
30470
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30471
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/mp3/mp3-demuxer.js
|
|
30471
30472
|
/*!
|
|
30472
30473
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30473
30474
|
*
|
|
@@ -30732,7 +30733,7 @@ class Mp3AudioTrackBacking {
|
|
|
30732
30733
|
}
|
|
30733
30734
|
}
|
|
30734
30735
|
|
|
30735
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30736
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/ogg/ogg-misc.js
|
|
30736
30737
|
/*!
|
|
30737
30738
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30738
30739
|
*
|
|
@@ -30803,7 +30804,7 @@ var buildOggMimeType = (info) => {
|
|
|
30803
30804
|
return string;
|
|
30804
30805
|
};
|
|
30805
30806
|
|
|
30806
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30807
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/ogg/ogg-reader.js
|
|
30807
30808
|
/*!
|
|
30808
30809
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30809
30810
|
*
|
|
@@ -30867,7 +30868,7 @@ var findNextPageHeader = (slice, until) => {
|
|
|
30867
30868
|
return false;
|
|
30868
30869
|
};
|
|
30869
30870
|
|
|
30870
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30871
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/ogg/ogg-demuxer.js
|
|
30871
30872
|
/*!
|
|
30872
30873
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30873
30874
|
*
|
|
@@ -31527,7 +31528,7 @@ var findPreviousPacketEndPosition = (pageList, startPage, startSegmentIndex) =>
|
|
|
31527
31528
|
return { page: previousPage, segmentIndex: previousPage.lacingValues.length - 1 };
|
|
31528
31529
|
};
|
|
31529
31530
|
|
|
31530
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
31531
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/wave/wave-demuxer.js
|
|
31531
31532
|
/*!
|
|
31532
31533
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
31533
31534
|
*
|
|
@@ -31948,7 +31949,7 @@ class WaveAudioTrackBacking {
|
|
|
31948
31949
|
}
|
|
31949
31950
|
}
|
|
31950
31951
|
|
|
31951
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
31952
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/adts/adts-reader.js
|
|
31952
31953
|
/*!
|
|
31953
31954
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
31954
31955
|
*
|
|
@@ -32009,7 +32010,7 @@ var readFrameHeader2 = (slice) => {
|
|
|
32009
32010
|
};
|
|
32010
32011
|
};
|
|
32011
32012
|
|
|
32012
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
32013
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/adts/adts-demuxer.js
|
|
32013
32014
|
/*!
|
|
32014
32015
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
32015
32016
|
*
|
|
@@ -32230,7 +32231,7 @@ class AdtsAudioTrackBacking {
|
|
|
32230
32231
|
}
|
|
32231
32232
|
}
|
|
32232
32233
|
|
|
32233
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
32234
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/flac/flac-misc.js
|
|
32234
32235
|
/*!
|
|
32235
32236
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
32236
32237
|
*
|
|
@@ -32365,7 +32366,7 @@ var calculateCrc8 = (data) => {
|
|
|
32365
32366
|
return crc;
|
|
32366
32367
|
};
|
|
32367
32368
|
|
|
32368
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
32369
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/flac/flac-demuxer.js
|
|
32369
32370
|
/*!
|
|
32370
32371
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
32371
32372
|
*
|
|
@@ -32789,7 +32790,7 @@ class FlacAudioTrackBacking {
|
|
|
32789
32790
|
}
|
|
32790
32791
|
}
|
|
32791
32792
|
|
|
32792
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
32793
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/input-format.js
|
|
32793
32794
|
/*!
|
|
32794
32795
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
32795
32796
|
*
|
|
@@ -33111,7 +33112,7 @@ var ADTS = /* @__PURE__ */ new AdtsInputFormat;
|
|
|
33111
33112
|
var FLAC = /* @__PURE__ */ new FlacInputFormat;
|
|
33112
33113
|
var ALL_FORMATS = [MP4, QTFF, MATROSKA, WEBM, WAVE, OGG, FLAC, MP3, ADTS];
|
|
33113
33114
|
|
|
33114
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
33115
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/source.js
|
|
33115
33116
|
var nodeAlias = (() => ({}));
|
|
33116
33117
|
/*!
|
|
33117
33118
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
@@ -33645,7 +33646,7 @@ class ReadOrchestrator {
|
|
|
33645
33646
|
}
|
|
33646
33647
|
}
|
|
33647
33648
|
|
|
33648
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
33649
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/input.js
|
|
33649
33650
|
/*!
|
|
33650
33651
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
33651
33652
|
*
|
|
@@ -33752,7 +33753,7 @@ class InputDisposedError extends Error {
|
|
|
33752
33753
|
}
|
|
33753
33754
|
}
|
|
33754
33755
|
|
|
33755
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
33756
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/reader.js
|
|
33756
33757
|
/*!
|
|
33757
33758
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
33758
33759
|
*
|
|
@@ -33970,7 +33971,7 @@ var readAscii = (slice, length) => {
|
|
|
33970
33971
|
}
|
|
33971
33972
|
return str;
|
|
33972
33973
|
};
|
|
33973
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
33974
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/index.js
|
|
33974
33975
|
/*!
|
|
33975
33976
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
33976
33977
|
*
|
|
@@ -37893,6 +37894,30 @@ var BundlingProgress = ({ progress, doneIn }) => {
|
|
|
37893
37894
|
]
|
|
37894
37895
|
});
|
|
37895
37896
|
};
|
|
37897
|
+
var BrowserSetupProgress = ({ progress, doneIn, startedBundling, alreadyAvailable }) => {
|
|
37898
|
+
return /* @__PURE__ */ jsxs115("div", {
|
|
37899
|
+
style: progressItem,
|
|
37900
|
+
children: [
|
|
37901
|
+
progress === 1 || alreadyAvailable ? /* @__PURE__ */ jsx224(SuccessIcon, {}) : /* @__PURE__ */ jsx224(CircularProgress, {
|
|
37902
|
+
progress
|
|
37903
|
+
}),
|
|
37904
|
+
/* @__PURE__ */ jsx224(Spacing, {
|
|
37905
|
+
x: 1
|
|
37906
|
+
}),
|
|
37907
|
+
/* @__PURE__ */ jsx224("div", {
|
|
37908
|
+
style: label10,
|
|
37909
|
+
children: alreadyAvailable && startedBundling ? "Headless browser already available" : progress === 1 ? "Downloaded Headless Shell" : `Downloading Headless Shell ${Math.round(progress * 100)}%`
|
|
37910
|
+
}),
|
|
37911
|
+
doneIn ? /* @__PURE__ */ jsxs115("div", {
|
|
37912
|
+
style: right3,
|
|
37913
|
+
children: [
|
|
37914
|
+
doneIn,
|
|
37915
|
+
"ms"
|
|
37916
|
+
]
|
|
37917
|
+
}) : null
|
|
37918
|
+
]
|
|
37919
|
+
});
|
|
37920
|
+
};
|
|
37896
37921
|
var RenderingProgress = ({ progress }) => {
|
|
37897
37922
|
return /* @__PURE__ */ jsxs115("div", {
|
|
37898
37923
|
style: progressItem,
|
|
@@ -38013,7 +38038,11 @@ var GuiRenderStatus = ({ job }) => {
|
|
|
38013
38038
|
/* @__PURE__ */ jsx224(Spacing, {
|
|
38014
38039
|
y: 0.5
|
|
38015
38040
|
}),
|
|
38016
|
-
/* @__PURE__ */ jsx224(
|
|
38041
|
+
/* @__PURE__ */ jsx224(BrowserSetupProgress, {
|
|
38042
|
+
...job.progress.browser,
|
|
38043
|
+
startedBundling: Boolean(job.progress.bundling)
|
|
38044
|
+
}),
|
|
38045
|
+
job.progress.bundling && /* @__PURE__ */ jsx224(BundlingProgress, {
|
|
38017
38046
|
progress: job.progress.bundling.progress,
|
|
38018
38047
|
doneIn: job.progress.bundling.doneIn
|
|
38019
38048
|
}),
|
package/dist/esm/internals.mjs
CHANGED
|
@@ -7148,6 +7148,7 @@ var buttonStyle = {
|
|
|
7148
7148
|
border: "none",
|
|
7149
7149
|
height: "20px",
|
|
7150
7150
|
display: "flex",
|
|
7151
|
+
paddingInline: "6px",
|
|
7151
7152
|
justifyContent: "center",
|
|
7152
7153
|
alignItems: "center"
|
|
7153
7154
|
};
|
|
@@ -20765,7 +20766,7 @@ var getTimelineSequenceLayout = ({
|
|
|
20765
20766
|
// src/helpers/use-max-media-duration.ts
|
|
20766
20767
|
import { getVideoMetadata as getVideoMetadata2 } from "@remotion/media-utils";
|
|
20767
20768
|
|
|
20768
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
20769
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/misc.js
|
|
20769
20770
|
/*!
|
|
20770
20771
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
20771
20772
|
*
|
|
@@ -21195,7 +21196,7 @@ var isNumber = (x) => {
|
|
|
21195
21196
|
return typeof x === "number" && !Number.isNaN(x);
|
|
21196
21197
|
};
|
|
21197
21198
|
|
|
21198
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
21199
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/metadata.js
|
|
21199
21200
|
/*!
|
|
21200
21201
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
21201
21202
|
*
|
|
@@ -21246,7 +21247,7 @@ var DEFAULT_TRACK_DISPOSITION = {
|
|
|
21246
21247
|
visuallyImpaired: false
|
|
21247
21248
|
};
|
|
21248
21249
|
|
|
21249
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
21250
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/codec.js
|
|
21250
21251
|
/*!
|
|
21251
21252
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
21252
21253
|
*
|
|
@@ -21520,7 +21521,7 @@ var parsePcmCodec = (codec) => {
|
|
|
21520
21521
|
return { dataType, sampleSize, littleEndian, silentValue };
|
|
21521
21522
|
};
|
|
21522
21523
|
|
|
21523
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
21524
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/codec-data.js
|
|
21524
21525
|
/*!
|
|
21525
21526
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
21526
21527
|
*
|
|
@@ -22937,7 +22938,7 @@ var readVorbisComments = (bytes, metadataTags) => {
|
|
|
22937
22938
|
}
|
|
22938
22939
|
};
|
|
22939
22940
|
|
|
22940
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
22941
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/demuxer.js
|
|
22941
22942
|
/*!
|
|
22942
22943
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
22943
22944
|
*
|
|
@@ -22952,7 +22953,7 @@ class Demuxer {
|
|
|
22952
22953
|
}
|
|
22953
22954
|
}
|
|
22954
22955
|
|
|
22955
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
22956
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/custom-coder.js
|
|
22956
22957
|
/*!
|
|
22957
22958
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
22958
22959
|
*
|
|
@@ -22963,7 +22964,7 @@ class Demuxer {
|
|
|
22963
22964
|
var customVideoDecoders = [];
|
|
22964
22965
|
var customAudioDecoders = [];
|
|
22965
22966
|
|
|
22966
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
22967
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/packet.js
|
|
22967
22968
|
/*!
|
|
22968
22969
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
22969
22970
|
*
|
|
@@ -23095,7 +23096,7 @@ class EncodedPacket {
|
|
|
23095
23096
|
}
|
|
23096
23097
|
}
|
|
23097
23098
|
|
|
23098
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
23099
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/sample.js
|
|
23099
23100
|
/*!
|
|
23100
23101
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
23101
23102
|
*
|
|
@@ -23771,7 +23772,7 @@ var getPlaneConfigs = (format) => {
|
|
|
23771
23772
|
};
|
|
23772
23773
|
var AUDIO_SAMPLE_FORMATS = new Set(["f32", "f32-planar", "s16", "s16-planar", "s32", "s32-planar", "u8", "u8-planar"]);
|
|
23773
23774
|
|
|
23774
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
23775
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/media-sink.js
|
|
23775
23776
|
/*!
|
|
23776
23777
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
23777
23778
|
*
|
|
@@ -24725,7 +24726,7 @@ class VideoSampleSink extends BaseMediaSampleSink {
|
|
|
24725
24726
|
}
|
|
24726
24727
|
}
|
|
24727
24728
|
|
|
24728
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
24729
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/input-track.js
|
|
24729
24730
|
/*!
|
|
24730
24731
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
24731
24732
|
*
|
|
@@ -24934,7 +24935,7 @@ class InputAudioTrack extends InputTrack {
|
|
|
24934
24935
|
}
|
|
24935
24936
|
}
|
|
24936
24937
|
|
|
24937
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
24938
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-misc.js
|
|
24938
24939
|
/*!
|
|
24939
24940
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
24940
24941
|
*
|
|
@@ -24952,7 +24953,7 @@ var buildIsobmffMimeType = (info) => {
|
|
|
24952
24953
|
return string;
|
|
24953
24954
|
};
|
|
24954
24955
|
|
|
24955
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
24956
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-reader.js
|
|
24956
24957
|
/*!
|
|
24957
24958
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
24958
24959
|
*
|
|
@@ -25028,7 +25029,7 @@ var readDataBox = (slice) => {
|
|
|
25028
25029
|
}
|
|
25029
25030
|
};
|
|
25030
25031
|
|
|
25031
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
25032
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-demuxer.js
|
|
25032
25033
|
/*!
|
|
25033
25034
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
25034
25035
|
*
|
|
@@ -27306,7 +27307,7 @@ var sampleTableIsEmpty = (sampleTable) => {
|
|
|
27306
27307
|
return sampleTable.sampleSizes.length === 0;
|
|
27307
27308
|
};
|
|
27308
27309
|
|
|
27309
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
27310
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/matroska/ebml.js
|
|
27310
27311
|
/*!
|
|
27311
27312
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
27312
27313
|
*
|
|
@@ -27621,7 +27622,7 @@ function assertDefinedSize(size4) {
|
|
|
27621
27622
|
}
|
|
27622
27623
|
}
|
|
27623
27624
|
|
|
27624
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
27625
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/matroska/matroska-misc.js
|
|
27625
27626
|
/*!
|
|
27626
27627
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
27627
27628
|
*
|
|
@@ -27639,7 +27640,7 @@ var buildMatroskaMimeType = (info) => {
|
|
|
27639
27640
|
return string;
|
|
27640
27641
|
};
|
|
27641
27642
|
|
|
27642
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
27643
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/matroska/matroska-demuxer.js
|
|
27643
27644
|
/*!
|
|
27644
27645
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
27645
27646
|
*
|
|
@@ -29518,7 +29519,7 @@ class MatroskaAudioTrackBacking extends MatroskaTrackBacking {
|
|
|
29518
29519
|
}
|
|
29519
29520
|
}
|
|
29520
29521
|
|
|
29521
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
29522
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/shared/mp3-misc.js
|
|
29522
29523
|
/*!
|
|
29523
29524
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
29524
29525
|
*
|
|
@@ -29760,7 +29761,7 @@ var decodeSynchsafe = (synchsafed) => {
|
|
|
29760
29761
|
return unsynchsafed;
|
|
29761
29762
|
};
|
|
29762
29763
|
|
|
29763
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
29764
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/id3.js
|
|
29764
29765
|
/*!
|
|
29765
29766
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
29766
29767
|
*
|
|
@@ -30460,7 +30461,7 @@ class Id3V2Reader {
|
|
|
30460
30461
|
}
|
|
30461
30462
|
}
|
|
30462
30463
|
|
|
30463
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30464
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/mp3/mp3-reader.js
|
|
30464
30465
|
/*!
|
|
30465
30466
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30466
30467
|
*
|
|
@@ -30486,7 +30487,7 @@ var readNextFrameHeader = async (reader, startPos, until) => {
|
|
|
30486
30487
|
return null;
|
|
30487
30488
|
};
|
|
30488
30489
|
|
|
30489
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30490
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/mp3/mp3-demuxer.js
|
|
30490
30491
|
/*!
|
|
30491
30492
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30492
30493
|
*
|
|
@@ -30751,7 +30752,7 @@ class Mp3AudioTrackBacking {
|
|
|
30751
30752
|
}
|
|
30752
30753
|
}
|
|
30753
30754
|
|
|
30754
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30755
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/ogg/ogg-misc.js
|
|
30755
30756
|
/*!
|
|
30756
30757
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30757
30758
|
*
|
|
@@ -30822,7 +30823,7 @@ var buildOggMimeType = (info) => {
|
|
|
30822
30823
|
return string;
|
|
30823
30824
|
};
|
|
30824
30825
|
|
|
30825
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30826
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/ogg/ogg-reader.js
|
|
30826
30827
|
/*!
|
|
30827
30828
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30828
30829
|
*
|
|
@@ -30886,7 +30887,7 @@ var findNextPageHeader = (slice, until) => {
|
|
|
30886
30887
|
return false;
|
|
30887
30888
|
};
|
|
30888
30889
|
|
|
30889
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30890
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/ogg/ogg-demuxer.js
|
|
30890
30891
|
/*!
|
|
30891
30892
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30892
30893
|
*
|
|
@@ -31546,7 +31547,7 @@ var findPreviousPacketEndPosition = (pageList, startPage, startSegmentIndex) =>
|
|
|
31546
31547
|
return { page: previousPage, segmentIndex: previousPage.lacingValues.length - 1 };
|
|
31547
31548
|
};
|
|
31548
31549
|
|
|
31549
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
31550
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/wave/wave-demuxer.js
|
|
31550
31551
|
/*!
|
|
31551
31552
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
31552
31553
|
*
|
|
@@ -31967,7 +31968,7 @@ class WaveAudioTrackBacking {
|
|
|
31967
31968
|
}
|
|
31968
31969
|
}
|
|
31969
31970
|
|
|
31970
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
31971
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/adts/adts-reader.js
|
|
31971
31972
|
/*!
|
|
31972
31973
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
31973
31974
|
*
|
|
@@ -32028,7 +32029,7 @@ var readFrameHeader2 = (slice) => {
|
|
|
32028
32029
|
};
|
|
32029
32030
|
};
|
|
32030
32031
|
|
|
32031
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
32032
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/adts/adts-demuxer.js
|
|
32032
32033
|
/*!
|
|
32033
32034
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
32034
32035
|
*
|
|
@@ -32249,7 +32250,7 @@ class AdtsAudioTrackBacking {
|
|
|
32249
32250
|
}
|
|
32250
32251
|
}
|
|
32251
32252
|
|
|
32252
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
32253
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/flac/flac-misc.js
|
|
32253
32254
|
/*!
|
|
32254
32255
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
32255
32256
|
*
|
|
@@ -32384,7 +32385,7 @@ var calculateCrc8 = (data) => {
|
|
|
32384
32385
|
return crc;
|
|
32385
32386
|
};
|
|
32386
32387
|
|
|
32387
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
32388
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/flac/flac-demuxer.js
|
|
32388
32389
|
/*!
|
|
32389
32390
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
32390
32391
|
*
|
|
@@ -32808,7 +32809,7 @@ class FlacAudioTrackBacking {
|
|
|
32808
32809
|
}
|
|
32809
32810
|
}
|
|
32810
32811
|
|
|
32811
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
32812
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/input-format.js
|
|
32812
32813
|
/*!
|
|
32813
32814
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
32814
32815
|
*
|
|
@@ -33130,7 +33131,7 @@ var ADTS = /* @__PURE__ */ new AdtsInputFormat;
|
|
|
33130
33131
|
var FLAC = /* @__PURE__ */ new FlacInputFormat;
|
|
33131
33132
|
var ALL_FORMATS = [MP4, QTFF, MATROSKA, WEBM, WAVE, OGG, FLAC, MP3, ADTS];
|
|
33132
33133
|
|
|
33133
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
33134
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/source.js
|
|
33134
33135
|
var nodeAlias = (() => ({}));
|
|
33135
33136
|
/*!
|
|
33136
33137
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
@@ -33664,7 +33665,7 @@ class ReadOrchestrator {
|
|
|
33664
33665
|
}
|
|
33665
33666
|
}
|
|
33666
33667
|
|
|
33667
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
33668
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/input.js
|
|
33668
33669
|
/*!
|
|
33669
33670
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
33670
33671
|
*
|
|
@@ -33771,7 +33772,7 @@ class InputDisposedError extends Error {
|
|
|
33771
33772
|
}
|
|
33772
33773
|
}
|
|
33773
33774
|
|
|
33774
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
33775
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/reader.js
|
|
33775
33776
|
/*!
|
|
33776
33777
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
33777
33778
|
*
|
|
@@ -33989,7 +33990,7 @@ var readAscii = (slice, length) => {
|
|
|
33989
33990
|
}
|
|
33990
33991
|
return str;
|
|
33991
33992
|
};
|
|
33992
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
33993
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/index.js
|
|
33993
33994
|
/*!
|
|
33994
33995
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
33995
33996
|
*
|
|
@@ -37912,6 +37913,30 @@ var BundlingProgress = ({ progress, doneIn }) => {
|
|
|
37912
37913
|
]
|
|
37913
37914
|
});
|
|
37914
37915
|
};
|
|
37916
|
+
var BrowserSetupProgress = ({ progress, doneIn, startedBundling, alreadyAvailable }) => {
|
|
37917
|
+
return /* @__PURE__ */ jsxs115("div", {
|
|
37918
|
+
style: progressItem,
|
|
37919
|
+
children: [
|
|
37920
|
+
progress === 1 || alreadyAvailable ? /* @__PURE__ */ jsx224(SuccessIcon, {}) : /* @__PURE__ */ jsx224(CircularProgress, {
|
|
37921
|
+
progress
|
|
37922
|
+
}),
|
|
37923
|
+
/* @__PURE__ */ jsx224(Spacing, {
|
|
37924
|
+
x: 1
|
|
37925
|
+
}),
|
|
37926
|
+
/* @__PURE__ */ jsx224("div", {
|
|
37927
|
+
style: label10,
|
|
37928
|
+
children: alreadyAvailable && startedBundling ? "Headless browser already available" : progress === 1 ? "Downloaded Headless Shell" : `Downloading Headless Shell ${Math.round(progress * 100)}%`
|
|
37929
|
+
}),
|
|
37930
|
+
doneIn ? /* @__PURE__ */ jsxs115("div", {
|
|
37931
|
+
style: right3,
|
|
37932
|
+
children: [
|
|
37933
|
+
doneIn,
|
|
37934
|
+
"ms"
|
|
37935
|
+
]
|
|
37936
|
+
}) : null
|
|
37937
|
+
]
|
|
37938
|
+
});
|
|
37939
|
+
};
|
|
37915
37940
|
var RenderingProgress = ({ progress }) => {
|
|
37916
37941
|
return /* @__PURE__ */ jsxs115("div", {
|
|
37917
37942
|
style: progressItem,
|
|
@@ -38032,7 +38057,11 @@ var GuiRenderStatus = ({ job }) => {
|
|
|
38032
38057
|
/* @__PURE__ */ jsx224(Spacing, {
|
|
38033
38058
|
y: 0.5
|
|
38034
38059
|
}),
|
|
38035
|
-
/* @__PURE__ */ jsx224(
|
|
38060
|
+
/* @__PURE__ */ jsx224(BrowserSetupProgress, {
|
|
38061
|
+
...job.progress.browser,
|
|
38062
|
+
startedBundling: Boolean(job.progress.bundling)
|
|
38063
|
+
}),
|
|
38064
|
+
job.progress.bundling && /* @__PURE__ */ jsx224(BundlingProgress, {
|
|
38036
38065
|
progress: job.progress.bundling.progress,
|
|
38037
38066
|
doneIn: job.progress.bundling.doneIn
|
|
38038
38067
|
}),
|
|
@@ -7153,6 +7153,7 @@ var buttonStyle = {
|
|
|
7153
7153
|
border: "none",
|
|
7154
7154
|
height: "20px",
|
|
7155
7155
|
display: "flex",
|
|
7156
|
+
paddingInline: "6px",
|
|
7156
7157
|
justifyContent: "center",
|
|
7157
7158
|
alignItems: "center"
|
|
7158
7159
|
};
|
|
@@ -21045,7 +21046,7 @@ var getTimelineSequenceLayout = ({
|
|
|
21045
21046
|
// src/helpers/use-max-media-duration.ts
|
|
21046
21047
|
import { getVideoMetadata as getVideoMetadata2 } from "@remotion/media-utils";
|
|
21047
21048
|
|
|
21048
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
21049
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/misc.js
|
|
21049
21050
|
/*!
|
|
21050
21051
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
21051
21052
|
*
|
|
@@ -21475,7 +21476,7 @@ var isNumber = (x) => {
|
|
|
21475
21476
|
return typeof x === "number" && !Number.isNaN(x);
|
|
21476
21477
|
};
|
|
21477
21478
|
|
|
21478
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
21479
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/metadata.js
|
|
21479
21480
|
/*!
|
|
21480
21481
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
21481
21482
|
*
|
|
@@ -21526,7 +21527,7 @@ var DEFAULT_TRACK_DISPOSITION = {
|
|
|
21526
21527
|
visuallyImpaired: false
|
|
21527
21528
|
};
|
|
21528
21529
|
|
|
21529
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
21530
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/codec.js
|
|
21530
21531
|
/*!
|
|
21531
21532
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
21532
21533
|
*
|
|
@@ -21800,7 +21801,7 @@ var parsePcmCodec = (codec) => {
|
|
|
21800
21801
|
return { dataType, sampleSize, littleEndian, silentValue };
|
|
21801
21802
|
};
|
|
21802
21803
|
|
|
21803
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
21804
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/codec-data.js
|
|
21804
21805
|
/*!
|
|
21805
21806
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
21806
21807
|
*
|
|
@@ -23217,7 +23218,7 @@ var readVorbisComments = (bytes, metadataTags) => {
|
|
|
23217
23218
|
}
|
|
23218
23219
|
};
|
|
23219
23220
|
|
|
23220
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
23221
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/demuxer.js
|
|
23221
23222
|
/*!
|
|
23222
23223
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
23223
23224
|
*
|
|
@@ -23232,7 +23233,7 @@ class Demuxer {
|
|
|
23232
23233
|
}
|
|
23233
23234
|
}
|
|
23234
23235
|
|
|
23235
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
23236
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/custom-coder.js
|
|
23236
23237
|
/*!
|
|
23237
23238
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
23238
23239
|
*
|
|
@@ -23243,7 +23244,7 @@ class Demuxer {
|
|
|
23243
23244
|
var customVideoDecoders = [];
|
|
23244
23245
|
var customAudioDecoders = [];
|
|
23245
23246
|
|
|
23246
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
23247
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/packet.js
|
|
23247
23248
|
/*!
|
|
23248
23249
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
23249
23250
|
*
|
|
@@ -23375,7 +23376,7 @@ class EncodedPacket {
|
|
|
23375
23376
|
}
|
|
23376
23377
|
}
|
|
23377
23378
|
|
|
23378
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
23379
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/sample.js
|
|
23379
23380
|
/*!
|
|
23380
23381
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
23381
23382
|
*
|
|
@@ -24051,7 +24052,7 @@ var getPlaneConfigs = (format) => {
|
|
|
24051
24052
|
};
|
|
24052
24053
|
var AUDIO_SAMPLE_FORMATS = new Set(["f32", "f32-planar", "s16", "s16-planar", "s32", "s32-planar", "u8", "u8-planar"]);
|
|
24053
24054
|
|
|
24054
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
24055
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/media-sink.js
|
|
24055
24056
|
/*!
|
|
24056
24057
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
24057
24058
|
*
|
|
@@ -25005,7 +25006,7 @@ class VideoSampleSink extends BaseMediaSampleSink {
|
|
|
25005
25006
|
}
|
|
25006
25007
|
}
|
|
25007
25008
|
|
|
25008
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
25009
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/input-track.js
|
|
25009
25010
|
/*!
|
|
25010
25011
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
25011
25012
|
*
|
|
@@ -25214,7 +25215,7 @@ class InputAudioTrack extends InputTrack {
|
|
|
25214
25215
|
}
|
|
25215
25216
|
}
|
|
25216
25217
|
|
|
25217
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
25218
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-misc.js
|
|
25218
25219
|
/*!
|
|
25219
25220
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
25220
25221
|
*
|
|
@@ -25232,7 +25233,7 @@ var buildIsobmffMimeType = (info) => {
|
|
|
25232
25233
|
return string;
|
|
25233
25234
|
};
|
|
25234
25235
|
|
|
25235
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
25236
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-reader.js
|
|
25236
25237
|
/*!
|
|
25237
25238
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
25238
25239
|
*
|
|
@@ -25308,7 +25309,7 @@ var readDataBox = (slice) => {
|
|
|
25308
25309
|
}
|
|
25309
25310
|
};
|
|
25310
25311
|
|
|
25311
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
25312
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/isobmff/isobmff-demuxer.js
|
|
25312
25313
|
/*!
|
|
25313
25314
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
25314
25315
|
*
|
|
@@ -27586,7 +27587,7 @@ var sampleTableIsEmpty = (sampleTable) => {
|
|
|
27586
27587
|
return sampleTable.sampleSizes.length === 0;
|
|
27587
27588
|
};
|
|
27588
27589
|
|
|
27589
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
27590
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/matroska/ebml.js
|
|
27590
27591
|
/*!
|
|
27591
27592
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
27592
27593
|
*
|
|
@@ -27901,7 +27902,7 @@ function assertDefinedSize(size4) {
|
|
|
27901
27902
|
}
|
|
27902
27903
|
}
|
|
27903
27904
|
|
|
27904
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
27905
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/matroska/matroska-misc.js
|
|
27905
27906
|
/*!
|
|
27906
27907
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
27907
27908
|
*
|
|
@@ -27919,7 +27920,7 @@ var buildMatroskaMimeType = (info) => {
|
|
|
27919
27920
|
return string;
|
|
27920
27921
|
};
|
|
27921
27922
|
|
|
27922
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
27923
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/matroska/matroska-demuxer.js
|
|
27923
27924
|
/*!
|
|
27924
27925
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
27925
27926
|
*
|
|
@@ -29798,7 +29799,7 @@ class MatroskaAudioTrackBacking extends MatroskaTrackBacking {
|
|
|
29798
29799
|
}
|
|
29799
29800
|
}
|
|
29800
29801
|
|
|
29801
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
29802
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/shared/mp3-misc.js
|
|
29802
29803
|
/*!
|
|
29803
29804
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
29804
29805
|
*
|
|
@@ -30040,7 +30041,7 @@ var decodeSynchsafe = (synchsafed) => {
|
|
|
30040
30041
|
return unsynchsafed;
|
|
30041
30042
|
};
|
|
30042
30043
|
|
|
30043
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30044
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/id3.js
|
|
30044
30045
|
/*!
|
|
30045
30046
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30046
30047
|
*
|
|
@@ -30740,7 +30741,7 @@ class Id3V2Reader {
|
|
|
30740
30741
|
}
|
|
30741
30742
|
}
|
|
30742
30743
|
|
|
30743
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30744
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/mp3/mp3-reader.js
|
|
30744
30745
|
/*!
|
|
30745
30746
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30746
30747
|
*
|
|
@@ -30766,7 +30767,7 @@ var readNextFrameHeader = async (reader, startPos, until) => {
|
|
|
30766
30767
|
return null;
|
|
30767
30768
|
};
|
|
30768
30769
|
|
|
30769
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
30770
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/mp3/mp3-demuxer.js
|
|
30770
30771
|
/*!
|
|
30771
30772
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
30772
30773
|
*
|
|
@@ -31031,7 +31032,7 @@ class Mp3AudioTrackBacking {
|
|
|
31031
31032
|
}
|
|
31032
31033
|
}
|
|
31033
31034
|
|
|
31034
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
31035
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/ogg/ogg-misc.js
|
|
31035
31036
|
/*!
|
|
31036
31037
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
31037
31038
|
*
|
|
@@ -31102,7 +31103,7 @@ var buildOggMimeType = (info) => {
|
|
|
31102
31103
|
return string;
|
|
31103
31104
|
};
|
|
31104
31105
|
|
|
31105
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
31106
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/ogg/ogg-reader.js
|
|
31106
31107
|
/*!
|
|
31107
31108
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
31108
31109
|
*
|
|
@@ -31166,7 +31167,7 @@ var findNextPageHeader = (slice, until) => {
|
|
|
31166
31167
|
return false;
|
|
31167
31168
|
};
|
|
31168
31169
|
|
|
31169
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
31170
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/ogg/ogg-demuxer.js
|
|
31170
31171
|
/*!
|
|
31171
31172
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
31172
31173
|
*
|
|
@@ -31826,7 +31827,7 @@ var findPreviousPacketEndPosition = (pageList, startPage, startSegmentIndex) =>
|
|
|
31826
31827
|
return { page: previousPage, segmentIndex: previousPage.lacingValues.length - 1 };
|
|
31827
31828
|
};
|
|
31828
31829
|
|
|
31829
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
31830
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/wave/wave-demuxer.js
|
|
31830
31831
|
/*!
|
|
31831
31832
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
31832
31833
|
*
|
|
@@ -32247,7 +32248,7 @@ class WaveAudioTrackBacking {
|
|
|
32247
32248
|
}
|
|
32248
32249
|
}
|
|
32249
32250
|
|
|
32250
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
32251
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/adts/adts-reader.js
|
|
32251
32252
|
/*!
|
|
32252
32253
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
32253
32254
|
*
|
|
@@ -32308,7 +32309,7 @@ var readFrameHeader2 = (slice) => {
|
|
|
32308
32309
|
};
|
|
32309
32310
|
};
|
|
32310
32311
|
|
|
32311
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
32312
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/adts/adts-demuxer.js
|
|
32312
32313
|
/*!
|
|
32313
32314
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
32314
32315
|
*
|
|
@@ -32529,7 +32530,7 @@ class AdtsAudioTrackBacking {
|
|
|
32529
32530
|
}
|
|
32530
32531
|
}
|
|
32531
32532
|
|
|
32532
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
32533
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/flac/flac-misc.js
|
|
32533
32534
|
/*!
|
|
32534
32535
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
32535
32536
|
*
|
|
@@ -32664,7 +32665,7 @@ var calculateCrc8 = (data) => {
|
|
|
32664
32665
|
return crc;
|
|
32665
32666
|
};
|
|
32666
32667
|
|
|
32667
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
32668
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/flac/flac-demuxer.js
|
|
32668
32669
|
/*!
|
|
32669
32670
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
32670
32671
|
*
|
|
@@ -33088,7 +33089,7 @@ class FlacAudioTrackBacking {
|
|
|
33088
33089
|
}
|
|
33089
33090
|
}
|
|
33090
33091
|
|
|
33091
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
33092
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/input-format.js
|
|
33092
33093
|
/*!
|
|
33093
33094
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
33094
33095
|
*
|
|
@@ -33410,7 +33411,7 @@ var ADTS = /* @__PURE__ */ new AdtsInputFormat;
|
|
|
33410
33411
|
var FLAC = /* @__PURE__ */ new FlacInputFormat;
|
|
33411
33412
|
var ALL_FORMATS = [MP4, QTFF, MATROSKA, WEBM, WAVE, OGG, FLAC, MP3, ADTS];
|
|
33412
33413
|
|
|
33413
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
33414
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/source.js
|
|
33414
33415
|
var nodeAlias = (() => ({}));
|
|
33415
33416
|
/*!
|
|
33416
33417
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
@@ -33944,7 +33945,7 @@ class ReadOrchestrator {
|
|
|
33944
33945
|
}
|
|
33945
33946
|
}
|
|
33946
33947
|
|
|
33947
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
33948
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/input.js
|
|
33948
33949
|
/*!
|
|
33949
33950
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
33950
33951
|
*
|
|
@@ -34051,7 +34052,7 @@ class InputDisposedError extends Error {
|
|
|
34051
34052
|
}
|
|
34052
34053
|
}
|
|
34053
34054
|
|
|
34054
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
34055
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/reader.js
|
|
34055
34056
|
/*!
|
|
34056
34057
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
34057
34058
|
*
|
|
@@ -34269,7 +34270,7 @@ var readAscii = (slice, length) => {
|
|
|
34269
34270
|
}
|
|
34270
34271
|
return str;
|
|
34271
34272
|
};
|
|
34272
|
-
// ../../node_modules/.bun/mediabunny@1.27.
|
|
34273
|
+
// ../../node_modules/.bun/mediabunny@1.27.3/node_modules/mediabunny/dist/modules/src/index.js
|
|
34273
34274
|
/*!
|
|
34274
34275
|
* Copyright (c) 2025-present, Vanilagy and contributors
|
|
34275
34276
|
*
|
|
@@ -38192,6 +38193,30 @@ var BundlingProgress = ({ progress, doneIn }) => {
|
|
|
38192
38193
|
]
|
|
38193
38194
|
});
|
|
38194
38195
|
};
|
|
38196
|
+
var BrowserSetupProgress = ({ progress, doneIn, startedBundling, alreadyAvailable }) => {
|
|
38197
|
+
return /* @__PURE__ */ jsxs115("div", {
|
|
38198
|
+
style: progressItem,
|
|
38199
|
+
children: [
|
|
38200
|
+
progress === 1 || alreadyAvailable ? /* @__PURE__ */ jsx225(SuccessIcon, {}) : /* @__PURE__ */ jsx225(CircularProgress, {
|
|
38201
|
+
progress
|
|
38202
|
+
}),
|
|
38203
|
+
/* @__PURE__ */ jsx225(Spacing, {
|
|
38204
|
+
x: 1
|
|
38205
|
+
}),
|
|
38206
|
+
/* @__PURE__ */ jsx225("div", {
|
|
38207
|
+
style: label10,
|
|
38208
|
+
children: alreadyAvailable && startedBundling ? "Headless browser already available" : progress === 1 ? "Downloaded Headless Shell" : `Downloading Headless Shell ${Math.round(progress * 100)}%`
|
|
38209
|
+
}),
|
|
38210
|
+
doneIn ? /* @__PURE__ */ jsxs115("div", {
|
|
38211
|
+
style: right3,
|
|
38212
|
+
children: [
|
|
38213
|
+
doneIn,
|
|
38214
|
+
"ms"
|
|
38215
|
+
]
|
|
38216
|
+
}) : null
|
|
38217
|
+
]
|
|
38218
|
+
});
|
|
38219
|
+
};
|
|
38195
38220
|
var RenderingProgress = ({ progress }) => {
|
|
38196
38221
|
return /* @__PURE__ */ jsxs115("div", {
|
|
38197
38222
|
style: progressItem,
|
|
@@ -38312,7 +38337,11 @@ var GuiRenderStatus = ({ job }) => {
|
|
|
38312
38337
|
/* @__PURE__ */ jsx225(Spacing, {
|
|
38313
38338
|
y: 0.5
|
|
38314
38339
|
}),
|
|
38315
|
-
/* @__PURE__ */ jsx225(
|
|
38340
|
+
/* @__PURE__ */ jsx225(BrowserSetupProgress, {
|
|
38341
|
+
...job.progress.browser,
|
|
38342
|
+
startedBundling: Boolean(job.progress.bundling)
|
|
38343
|
+
}),
|
|
38344
|
+
job.progress.bundling && /* @__PURE__ */ jsx225(BundlingProgress, {
|
|
38316
38345
|
progress: job.progress.bundling.progress,
|
|
38317
38346
|
doneIn: job.progress.bundling.doneIn
|
|
38318
38347
|
}),
|
package/dist/esm/renderEntry.mjs
CHANGED
|
@@ -206,7 +206,7 @@ var renderContent = (Root) => {
|
|
|
206
206
|
renderToDOM(/* @__PURE__ */ jsx("div", {
|
|
207
207
|
children: /* @__PURE__ */ jsx(DelayedSpinner, {})
|
|
208
208
|
}));
|
|
209
|
-
import("./chunk-
|
|
209
|
+
import("./chunk-71hmw645.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.
|
|
6
|
+
"version": "4.0.400",
|
|
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.
|
|
29
|
-
"@remotion/player": "4.0.
|
|
30
|
-
"@remotion/media-utils": "4.0.
|
|
31
|
-
"@remotion/renderer": "4.0.
|
|
32
|
-
"@remotion/web-renderer": "4.0.
|
|
33
|
-
"@remotion/studio-shared": "4.0.
|
|
34
|
-
"@remotion/zod-types": "4.0.
|
|
35
|
-
"mediabunny": "1.27.
|
|
28
|
+
"remotion": "4.0.400",
|
|
29
|
+
"@remotion/player": "4.0.400",
|
|
30
|
+
"@remotion/media-utils": "4.0.400",
|
|
31
|
+
"@remotion/renderer": "4.0.400",
|
|
32
|
+
"@remotion/web-renderer": "4.0.400",
|
|
33
|
+
"@remotion/studio-shared": "4.0.400",
|
|
34
|
+
"@remotion/zod-types": "4.0.400",
|
|
35
|
+
"mediabunny": "1.27.3",
|
|
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.
|
|
45
|
+
"@remotion/eslint-config-internal": "4.0.400",
|
|
46
46
|
"eslint": "9.19.0"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|