@remotion/promo-pages 4.0.481 → 4.0.482

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/experts.js CHANGED
@@ -2335,7 +2335,7 @@ var getComponentsToAddStacksTo = () => componentsToAddStacksTo;
2335
2335
  var addSequenceStackTraces = (component) => {
2336
2336
  componentsToAddStacksTo.push(component);
2337
2337
  };
2338
- var VERSION = "4.0.481";
2338
+ var VERSION = "4.0.482";
2339
2339
  var checkMultipleRemotionVersions = () => {
2340
2340
  if (typeof globalThis === "undefined") {
2341
2341
  return;
@@ -2735,6 +2735,77 @@ var transformSchema = {
2735
2735
  }
2736
2736
  };
2737
2737
  var sequenceVisualStyleSchema = transformSchema;
2738
+ var textSchema = {
2739
+ "style.color": {
2740
+ type: "color",
2741
+ default: undefined,
2742
+ description: "Color"
2743
+ },
2744
+ "style.fontSize": {
2745
+ type: "number",
2746
+ default: undefined,
2747
+ min: 0,
2748
+ step: 1,
2749
+ description: "Font size",
2750
+ hiddenFromList: false
2751
+ },
2752
+ "style.lineHeight": {
2753
+ type: "number",
2754
+ default: undefined,
2755
+ min: 0,
2756
+ step: 0.05,
2757
+ description: "Line height",
2758
+ hiddenFromList: false
2759
+ },
2760
+ "style.fontWeight": {
2761
+ type: "enum",
2762
+ default: "400",
2763
+ description: "Font weight",
2764
+ variants: {
2765
+ "100": {},
2766
+ "200": {},
2767
+ "300": {},
2768
+ "400": {},
2769
+ "500": {},
2770
+ "600": {},
2771
+ "700": {},
2772
+ "800": {},
2773
+ "900": {},
2774
+ normal: {},
2775
+ bold: {}
2776
+ }
2777
+ },
2778
+ "style.fontStyle": {
2779
+ type: "enum",
2780
+ default: "normal",
2781
+ description: "Font style",
2782
+ variants: {
2783
+ normal: {},
2784
+ italic: {},
2785
+ oblique: {}
2786
+ }
2787
+ },
2788
+ "style.textAlign": {
2789
+ type: "enum",
2790
+ default: "left",
2791
+ description: "Text align",
2792
+ variants: {
2793
+ left: {},
2794
+ center: {},
2795
+ right: {},
2796
+ justify: {},
2797
+ start: {},
2798
+ end: {}
2799
+ }
2800
+ },
2801
+ "style.letterSpacing": {
2802
+ type: "number",
2803
+ default: undefined,
2804
+ step: 0.1,
2805
+ description: "Letter spacing",
2806
+ hiddenFromList: false
2807
+ }
2808
+ };
2738
2809
  var premountSchema = {
2739
2810
  premountFor: {
2740
2811
  type: "number",
@@ -2793,6 +2864,13 @@ var fromField = {
2793
2864
  step: 1,
2794
2865
  hiddenFromList: true
2795
2866
  };
2867
+ var trimBeforeField = {
2868
+ type: "number",
2869
+ default: 0,
2870
+ min: 0,
2871
+ step: 1,
2872
+ hiddenFromList: true
2873
+ };
2796
2874
  var freezeField = {
2797
2875
  type: "number",
2798
2876
  default: null,
@@ -2802,6 +2880,7 @@ var freezeField = {
2802
2880
  var baseSchema = {
2803
2881
  durationInFrames: durationInFramesField,
2804
2882
  from: fromField,
2883
+ trimBefore: trimBeforeField,
2805
2884
  freeze: freezeField,
2806
2885
  hidden: hiddenField,
2807
2886
  name: sequenceNameField,
@@ -2821,6 +2900,7 @@ var sequenceSchema = {
2821
2900
  };
2822
2901
  var baseSchemaWithoutFrom = {
2823
2902
  durationInFrames: durationInFramesField,
2903
+ trimBefore: trimBeforeField,
2824
2904
  freeze: freezeField,
2825
2905
  hidden: hiddenField,
2826
2906
  name: sequenceNameField,
@@ -5122,6 +5202,7 @@ var withInteractivitySchema = ({
5122
5202
  var EMPTY_EFFECTS = [];
5123
5203
  var RegularSequenceRefForwardingFunction = ({
5124
5204
  from = 0,
5205
+ trimBefore = 0,
5125
5206
  freeze,
5126
5207
  durationInFrames = Infinity,
5127
5208
  children,
@@ -5146,7 +5227,6 @@ var RegularSequenceRefForwardingFunction = ({
5146
5227
  const parentSequence = useContext17(SequenceContext);
5147
5228
  const { rootId } = useTimelineContext();
5148
5229
  const cumulatedFrom = parentSequence ? parentSequence.cumulatedFrom + parentSequence.relativeFrom : 0;
5149
- const absoluteFrom = (parentSequence?.absoluteFrom ?? 0) + from;
5150
5230
  const nonce = useNonce();
5151
5231
  if (layout !== "absolute-fill" && layout !== "none") {
5152
5232
  throw new TypeError(`The layout prop of <Sequence /> expects either "absolute-fill" or "none", but you passed: ${layout}`);
@@ -5166,6 +5246,18 @@ var RegularSequenceRefForwardingFunction = ({
5166
5246
  if (!Number.isFinite(from)) {
5167
5247
  throw new TypeError(`The "from" prop of a sequence must be finite, but got ${from}.`);
5168
5248
  }
5249
+ if (typeof trimBefore !== "number") {
5250
+ throw new TypeError(`You passed to the "trimBefore" prop of your <Sequence> an argument of type ${typeof trimBefore}, but it must be a number.`);
5251
+ }
5252
+ if (trimBefore < 0) {
5253
+ throw new TypeError(`The "trimBefore" prop of <Sequence /> must be greater than or equal to 0, but got ${trimBefore}.`);
5254
+ }
5255
+ if (Number.isNaN(trimBefore)) {
5256
+ throw new TypeError('The "trimBefore" prop of <Sequence /> must be a real number, but it is NaN.');
5257
+ }
5258
+ if (!Number.isFinite(trimBefore)) {
5259
+ throw new TypeError(`The "trimBefore" prop of <Sequence /> must be finite, but it is ${trimBefore}.`);
5260
+ }
5169
5261
  if (typeof freeze !== "undefined" && freeze !== null) {
5170
5262
  if (typeof freeze !== "number") {
5171
5263
  throw new TypeError(`The "freeze" prop of <Sequence /> must be a number, but is of type ${typeof freeze}.`);
@@ -5179,7 +5271,9 @@ var RegularSequenceRefForwardingFunction = ({
5179
5271
  }
5180
5272
  const absoluteFrame = useTimelinePosition();
5181
5273
  const videoConfig = useVideoConfig();
5182
- const parentSequenceDuration = parentSequence ? Math.min(parentSequence.durationInFrames - from, durationInFrames) : durationInFrames;
5274
+ const effectiveRelativeFrom = from - trimBefore;
5275
+ const absoluteFrom = (parentSequence?.absoluteFrom ?? 0) + effectiveRelativeFrom;
5276
+ const parentSequenceDuration = parentSequence ? Math.min(parentSequence.durationInFrames - effectiveRelativeFrom, durationInFrames) : durationInFrames;
5183
5277
  const actualDurationInFrames = Math.max(0, Math.min(videoConfig.durationInFrames - from, parentSequenceDuration));
5184
5278
  const { registerSequence, unregisterSequence } = useContext17(SequenceManager);
5185
5279
  const wrapperRefForOutline = useRef6(null);
@@ -5190,7 +5284,7 @@ var RegularSequenceRefForwardingFunction = ({
5190
5284
  const postmounting = useMemo14(() => {
5191
5285
  return parentSequence?.postmounting || Boolean(other._remotionInternalIsPostmounting);
5192
5286
  }, [other._remotionInternalIsPostmounting, parentSequence?.postmounting]);
5193
- const currentSequenceStart = cumulatedFrom + from;
5287
+ const currentSequenceStart = cumulatedFrom + effectiveRelativeFrom;
5194
5288
  const parentSequenceStart = parentSequence ? parentSequence.cumulatedFrom + parentSequence.relativeFrom : 0;
5195
5289
  const parentFirstFrame = parentSequence ? parentSequenceStart - parentSequence.cumulatedNegativeFrom : 0;
5196
5290
  const firstFrame = Math.max(0, parentFirstFrame, currentSequenceStart);
@@ -5199,7 +5293,7 @@ var RegularSequenceRefForwardingFunction = ({
5199
5293
  return {
5200
5294
  absoluteFrom,
5201
5295
  cumulatedFrom,
5202
- relativeFrom: from,
5296
+ relativeFrom: effectiveRelativeFrom,
5203
5297
  cumulatedNegativeFrom,
5204
5298
  durationInFrames: actualDurationInFrames,
5205
5299
  parentFrom: parentSequence?.relativeFrom ?? 0,
@@ -5214,7 +5308,7 @@ var RegularSequenceRefForwardingFunction = ({
5214
5308
  }, [
5215
5309
  cumulatedFrom,
5216
5310
  absoluteFrom,
5217
- from,
5311
+ effectiveRelativeFrom,
5218
5312
  actualDurationInFrames,
5219
5313
  parentSequence,
5220
5314
  id,
@@ -5236,6 +5330,7 @@ var RegularSequenceRefForwardingFunction = ({
5236
5330
  const stackRef = useRef6(null);
5237
5331
  stackRef.current = stack ?? inheritedStack;
5238
5332
  const registeredFrozenFrame = typeof freeze === "number" ? freeze : null;
5333
+ const registeredTrimBefore = trimBefore === 0 ? null : trimBefore;
5239
5334
  const parentCumulatedNegativeFrom = parentSequence?.cumulatedNegativeFrom ?? 0;
5240
5335
  const startMediaFrom = isMedia && isMedia.type !== "image" ? isMedia.data.startMediaFrom + parentCumulatedNegativeFrom - cumulatedNegativeFrom : null;
5241
5336
  const mediaFrameAtSequenceZero = isMedia && isMedia.type !== "image" ? isMedia.data.startMediaFrom + parentCumulatedNegativeFrom : null;
@@ -5254,6 +5349,7 @@ var RegularSequenceRefForwardingFunction = ({
5254
5349
  documentationLink: resolvedDocumentationLink,
5255
5350
  duration: actualDurationInFrames,
5256
5351
  from,
5352
+ trimBefore: registeredTrimBefore,
5257
5353
  id,
5258
5354
  loopDisplay,
5259
5355
  nonce: nonce.get(),
@@ -5278,6 +5374,7 @@ var RegularSequenceRefForwardingFunction = ({
5278
5374
  doesVolumeChange: isMedia.data.doesVolumeChange,
5279
5375
  duration: actualDurationInFrames,
5280
5376
  from,
5377
+ trimBefore: registeredTrimBefore,
5281
5378
  id,
5282
5379
  loopDisplay,
5283
5380
  nonce: nonce.get(),
@@ -5303,6 +5400,7 @@ var RegularSequenceRefForwardingFunction = ({
5303
5400
  }
5304
5401
  registerSequence({
5305
5402
  from,
5403
+ trimBefore: registeredTrimBefore,
5306
5404
  duration: actualDurationInFrames,
5307
5405
  id,
5308
5406
  displayName: timelineClipName,
@@ -5336,6 +5434,8 @@ var RegularSequenceRefForwardingFunction = ({
5336
5434
  actualDurationInFrames,
5337
5435
  rootId,
5338
5436
  from,
5437
+ trimBefore,
5438
+ registeredTrimBefore,
5339
5439
  showInTimeline,
5340
5440
  nonce,
5341
5441
  loopDisplay,
@@ -6603,13 +6703,15 @@ var prefetch = (src, options) => {
6603
6703
  resolve = res;
6604
6704
  reject = rej;
6605
6705
  });
6706
+ waitUntilDone.catch(() => {
6707
+ return;
6708
+ });
6606
6709
  const controller = new AbortController;
6607
- let canBeAborted = true;
6710
+ let reader = null;
6608
6711
  fetch(srcWithoutHash, {
6609
6712
  signal: controller.signal,
6610
6713
  credentials: options?.credentials ?? undefined
6611
6714
  }).then((res) => {
6612
- canBeAborted = false;
6613
6715
  if (canceled) {
6614
6716
  return null;
6615
6717
  }
@@ -6625,15 +6727,16 @@ var prefetch = (src, options) => {
6625
6727
  if (!res.body) {
6626
6728
  throw new Error(`HTTP response of ${srcWithoutHash} has no body`);
6627
6729
  }
6628
- const reader = res.body.getReader();
6730
+ const responseReader = res.body.getReader();
6731
+ reader = responseReader;
6629
6732
  return getBlobFromReader({
6630
- reader,
6733
+ reader: responseReader,
6631
6734
  contentType: options?.contentType ?? headerContentType ?? null,
6632
6735
  contentLength: res.headers.get("Content-Length") ? parseInt(res.headers.get("Content-Length"), 10) : null,
6633
6736
  onProgress: options?.onProgress
6634
6737
  });
6635
6738
  }).then((buf) => {
6636
- if (!buf) {
6739
+ if (!buf || canceled) {
6637
6740
  return;
6638
6741
  }
6639
6742
  const actualBlob = options?.contentType ? new Blob([buf], { type: options.contentType }) : buf;
@@ -6681,12 +6784,18 @@ var prefetch = (src, options) => {
6681
6784
  return copy;
6682
6785
  });
6683
6786
  } else {
6684
- canceled = true;
6685
- if (canBeAborted) {
6686
- try {
6687
- controller.abort(new Error("free() called"));
6688
- } catch {}
6787
+ if (canceled) {
6788
+ return;
6689
6789
  }
6790
+ canceled = true;
6791
+ const cancellationError = new Error("free() called");
6792
+ reject(cancellationError);
6793
+ try {
6794
+ controller.abort(cancellationError);
6795
+ } catch {}
6796
+ reader?.cancel(cancellationError).catch(() => {
6797
+ return;
6798
+ });
6690
6799
  }
6691
6800
  },
6692
6801
  waitUntilDone: () => {
@@ -7858,6 +7967,7 @@ var useMediaInTimeline = ({
7858
7967
  id,
7859
7968
  duration,
7860
7969
  from: 0,
7970
+ trimBefore: null,
7861
7971
  parent: parentSequence?.id ?? null,
7862
7972
  displayName: finalDisplayName,
7863
7973
  documentationLink,
@@ -8720,11 +8830,11 @@ var useMediaTag = ({
8720
8830
  ]);
8721
8831
  };
8722
8832
  var MediaVolumeContext = createContext22({
8723
- mediaMuted: false,
8833
+ playerMuted: false,
8724
8834
  mediaVolume: 1
8725
8835
  });
8726
8836
  var SetMediaVolumeContext = createContext22({
8727
- setMediaMuted: () => {
8837
+ setPlayerMuted: () => {
8728
8838
  throw new Error("default");
8729
8839
  },
8730
8840
  setMediaVolume: () => {
@@ -8738,12 +8848,12 @@ var useMediaVolumeState = () => {
8738
8848
  return [mediaVolume, setMediaVolume];
8739
8849
  }, [mediaVolume, setMediaVolume]);
8740
8850
  };
8741
- var useMediaMutedState = () => {
8742
- const { mediaMuted } = useContext27(MediaVolumeContext);
8743
- const { setMediaMuted } = useContext27(SetMediaVolumeContext);
8851
+ var usePlayerMutedState = () => {
8852
+ const { playerMuted } = useContext27(MediaVolumeContext);
8853
+ const { setPlayerMuted } = useContext27(SetMediaVolumeContext);
8744
8854
  return useMemo26(() => {
8745
- return [mediaMuted, setMediaMuted];
8746
- }, [mediaMuted, setMediaMuted]);
8855
+ return [playerMuted, setPlayerMuted];
8856
+ }, [playerMuted, setPlayerMuted]);
8747
8857
  };
8748
8858
  var warnAboutTooHighVolume = (volume) => {
8749
8859
  if (volume >= 100) {
@@ -8789,7 +8899,7 @@ var AudioForDevelopmentForwardRefFunction = (props, ref) => {
8789
8899
  throw new Error("typecheck error");
8790
8900
  }
8791
8901
  const [mediaVolume] = useMediaVolumeState();
8792
- const [mediaMuted] = useMediaMutedState();
8902
+ const [playerMuted] = usePlayerMutedState();
8793
8903
  const volumePropFrame = useFrameForVolumeProp(loopVolumeCurveBehavior ?? "repeat");
8794
8904
  if (!src) {
8795
8905
  throw new TypeError("No 'src' was passed to <Html5Audio>.");
@@ -8810,7 +8920,7 @@ var AudioForDevelopmentForwardRefFunction = (props, ref) => {
8810
8920
  });
8811
8921
  const propsToPass = useMemo27(() => {
8812
8922
  return {
8813
- muted: muted || mediaMuted || userPreferredVolume <= 0,
8923
+ muted: muted || playerMuted || userPreferredVolume <= 0,
8814
8924
  src: preloadedSrc,
8815
8925
  loop: _remotionInternalNativeLoopPassed,
8816
8926
  crossOrigin: crossOriginValue,
@@ -8818,7 +8928,7 @@ var AudioForDevelopmentForwardRefFunction = (props, ref) => {
8818
8928
  };
8819
8929
  }, [
8820
8930
  _remotionInternalNativeLoopPassed,
8821
- mediaMuted,
8931
+ playerMuted,
8822
8932
  muted,
8823
8933
  nativeProps,
8824
8934
  preloadedSrc,
@@ -9215,6 +9325,15 @@ var solidSchema = {
9215
9325
  description: "Height",
9216
9326
  hiddenFromList: false
9217
9327
  },
9328
+ pixelDensity: {
9329
+ type: "number",
9330
+ min: 1,
9331
+ max: 3,
9332
+ step: 0.1,
9333
+ default: 1,
9334
+ description: "Pixel density",
9335
+ hiddenFromList: false
9336
+ },
9218
9337
  ...transformSchema
9219
9338
  };
9220
9339
  var SolidInner = ({
@@ -9331,6 +9450,7 @@ var SolidOuter = forwardRef8(({
9331
9450
  style,
9332
9451
  name,
9333
9452
  from,
9453
+ trimBefore,
9334
9454
  freeze,
9335
9455
  hidden,
9336
9456
  showInTimeline,
@@ -9345,6 +9465,7 @@ var SolidOuter = forwardRef8(({
9345
9465
  return /* @__PURE__ */ jsx24(Sequence, {
9346
9466
  layout: "none",
9347
9467
  from,
9468
+ trimBefore,
9348
9469
  freeze,
9349
9470
  hidden,
9350
9471
  showInTimeline,
@@ -9502,10 +9623,6 @@ var HtmlInCanvasContent = forwardRef9(({
9502
9623
  if (!placeholderCanvas) {
9503
9624
  throw new Error("Canvas not found");
9504
9625
  }
9505
- const offscreen2d = offscreen.getContext("2d");
9506
- if (!offscreen2d) {
9507
- throw new Error("Failed to acquire 2D context for <HtmlInCanvas> offscreen canvas");
9508
- }
9509
9626
  const handle = delayRender("onPaint");
9510
9627
  if (!initializedRef.current) {
9511
9628
  initializedRef.current = true;
@@ -9690,6 +9807,15 @@ var HtmlInCanvasInner = forwardRef9(({
9690
9807
  HtmlInCanvasInner.displayName = "HtmlInCanvas";
9691
9808
  var htmlInCanvasSchema = {
9692
9809
  ...baseSchema,
9810
+ pixelDensity: {
9811
+ type: "number",
9812
+ min: 1,
9813
+ max: 3,
9814
+ step: 0.1,
9815
+ default: 1,
9816
+ description: "Pixel density",
9817
+ hiddenFromList: false
9818
+ },
9693
9819
  ...transformSchema
9694
9820
  };
9695
9821
  var HtmlInCanvasWrapped = withInteractivitySchema({
@@ -10007,6 +10133,7 @@ var CanvasImageInner = forwardRef10(({
10007
10133
  delayRenderTimeoutInMilliseconds,
10008
10134
  durationInFrames,
10009
10135
  from,
10136
+ trimBefore,
10010
10137
  freeze,
10011
10138
  hidden,
10012
10139
  name,
@@ -10028,6 +10155,7 @@ var CanvasImageInner = forwardRef10(({
10028
10155
  return /* @__PURE__ */ jsx26(Sequence, {
10029
10156
  layout: "none",
10030
10157
  from: from ?? 0,
10158
+ trimBefore,
10031
10159
  durationInFrames: durationInFrames ?? Infinity,
10032
10160
  freeze,
10033
10161
  hidden,
@@ -10264,6 +10392,7 @@ var NativeImgInner = ({
10264
10392
  showInTimeline,
10265
10393
  src,
10266
10394
  from,
10395
+ trimBefore,
10267
10396
  durationInFrames,
10268
10397
  freeze,
10269
10398
  controls,
@@ -10276,6 +10405,7 @@ var NativeImgInner = ({
10276
10405
  return /* @__PURE__ */ jsx28(Sequence, {
10277
10406
  layout: "none",
10278
10407
  from: from ?? 0,
10408
+ trimBefore,
10279
10409
  durationInFrames: durationInFrames ?? Infinity,
10280
10410
  freeze,
10281
10411
  _remotionInternalStack: stack,
@@ -10349,6 +10479,7 @@ var ImgInner = ({
10349
10479
  showInTimeline,
10350
10480
  src,
10351
10481
  from,
10482
+ trimBefore,
10352
10483
  durationInFrames,
10353
10484
  freeze,
10354
10485
  controls,
@@ -10374,6 +10505,7 @@ var ImgInner = ({
10374
10505
  showInTimeline,
10375
10506
  src,
10376
10507
  from,
10508
+ trimBefore,
10377
10509
  durationInFrames,
10378
10510
  freeze,
10379
10511
  controls,
@@ -10416,6 +10548,7 @@ var ImgInner = ({
10416
10548
  delayRenderRetries,
10417
10549
  delayRenderTimeoutInMilliseconds,
10418
10550
  from,
10551
+ trimBefore,
10419
10552
  durationInFrames,
10420
10553
  freeze,
10421
10554
  hidden,
@@ -10438,7 +10571,8 @@ var Img = withInteractivitySchema({
10438
10571
  addSequenceStackTraces(Img);
10439
10572
  var interactiveElementSchema = {
10440
10573
  ...baseSchema,
10441
- ...transformSchema
10574
+ ...transformSchema,
10575
+ ...textSchema
10442
10576
  };
10443
10577
  var setRef = (ref, value) => {
10444
10578
  if (typeof ref === "function") {
@@ -10452,6 +10586,7 @@ var makeInteractiveElement = (tag, displayName) => {
10452
10586
  const {
10453
10587
  durationInFrames,
10454
10588
  from,
10589
+ trimBefore,
10455
10590
  freeze,
10456
10591
  hidden,
10457
10592
  name,
@@ -10468,6 +10603,7 @@ var makeInteractiveElement = (tag, displayName) => {
10468
10603
  return /* @__PURE__ */ jsx29(Sequence, {
10469
10604
  layout: "none",
10470
10605
  from: from ?? 0,
10606
+ trimBefore,
10471
10607
  durationInFrames: durationInFrames ?? Infinity,
10472
10608
  freeze,
10473
10609
  hidden,
@@ -10498,6 +10634,7 @@ var makeInteractiveElement = (tag, displayName) => {
10498
10634
  var Interactive = {
10499
10635
  baseSchema,
10500
10636
  transformSchema,
10637
+ textSchema,
10501
10638
  premountSchema,
10502
10639
  sequenceSchema,
10503
10640
  withSchema: withInteractivitySchema,
@@ -11327,7 +11464,7 @@ var VideoForDevelopmentRefForwardingFunction = (props2, ref) => {
11327
11464
  throw new Error("acceptableTimeShift has been removed. Use acceptableTimeShiftInSeconds instead.");
11328
11465
  }
11329
11466
  const [mediaVolume] = useMediaVolumeState();
11330
- const [mediaMuted] = useMediaMutedState();
11467
+ const [playerMuted] = usePlayerMutedState();
11331
11468
  const userPreferredVolume = evaluateVolume({
11332
11469
  frame: volumePropFrame,
11333
11470
  volume,
@@ -11483,7 +11620,7 @@ var VideoForDevelopmentRefForwardingFunction = (props2, ref) => {
11483
11620
  return /* @__PURE__ */ jsx34("video", {
11484
11621
  ...nativeProps,
11485
11622
  ref: videoRef,
11486
- muted: muted || mediaMuted || userPreferredVolume <= 0,
11623
+ muted: muted || playerMuted || userPreferredVolume <= 0,
11487
11624
  playsInline: true,
11488
11625
  src: actualSrc,
11489
11626
  loop: _remotionInternalNativeLoopPassed,
@@ -11774,6 +11911,7 @@ var Internals = {
11774
11911
  sequenceStyleSchema,
11775
11912
  sequenceVisualStyleSchema,
11776
11913
  sequencePremountSchema,
11914
+ textSchema,
11777
11915
  transformSchema,
11778
11916
  premountSchema,
11779
11917
  flattenActiveSchema,
@@ -11783,7 +11921,7 @@ var Internals = {
11783
11921
  useVideo,
11784
11922
  getRoot,
11785
11923
  useMediaVolumeState,
11786
- useMediaMutedState,
11924
+ usePlayerMutedState,
11787
11925
  useMediaInTimeline,
11788
11926
  useLazyComponent,
11789
11927
  truthy,