remotion 4.0.466 → 4.0.467

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/cjs/Img.js CHANGED
@@ -25,7 +25,7 @@ function truncateSrcForLabel(src) {
25
25
  }
26
26
  return src;
27
27
  }
28
- const ImgContent = ({ onError, maxRetries = 2, src, pauseWhenLoading, delayRenderRetries, delayRenderTimeoutInMilliseconds, onImageFrame, crossOrigin, ref, ...props }) => {
28
+ const ImgContent = ({ onError, maxRetries = 2, src, pauseWhenLoading, delayRenderRetries, delayRenderTimeoutInMilliseconds, onImageFrame, crossOrigin, decoding, ref, ...props }) => {
29
29
  const imageRef = (0, react_1.useRef)(null);
30
30
  const errors = (0, react_1.useRef)({});
31
31
  const { delayPlayback } = (0, use_buffer_state_js_1.useBufferState)();
@@ -172,14 +172,14 @@ const ImgContent = ({ onError, maxRetries = 2, src, pauseWhenLoading, delayRende
172
172
  delayRender,
173
173
  ]);
174
174
  }
175
- const { isClientSideRendering } = (0, use_remotion_environment_js_1.useRemotionEnvironment)();
175
+ const { isClientSideRendering, isRendering } = (0, use_remotion_environment_js_1.useRemotionEnvironment)();
176
176
  const crossOriginValue = (0, get_cross_origin_value_js_1.getCrossOriginValue)({
177
177
  crossOrigin,
178
178
  requestsVideoFrame: false,
179
179
  isClientSideRendering,
180
180
  });
181
181
  // src gets set once we've loaded and decoded the image.
182
- return ((0, jsx_runtime_1.jsx)("img", { ...props, ref: imageRef, crossOrigin: crossOriginValue, onError: didGetError, decoding: "sync" }));
182
+ return ((0, jsx_runtime_1.jsx)("img", { ...props, ref: imageRef, crossOrigin: crossOriginValue, onError: didGetError, decoding: isRendering ? 'sync' : decoding }));
183
183
  };
184
184
  const ImgInner = ({ hidden, name, stack, showInTimeline, src, from, durationInFrames, _experimentalControls: controls, ...props }) => {
185
185
  if (!src) {
@@ -36,56 +36,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
36
36
  exports.Canvas = void 0;
37
37
  const jsx_runtime_1 = require("react/jsx-runtime");
38
38
  const react_1 = __importStar(require("react"));
39
+ const calculate_image_fit_js_1 = require("../calculate-image-fit.js");
39
40
  const run_effect_chain_js_1 = require("../effects/run-effect-chain.js");
40
41
  const use_effect_chain_state_js_1 = require("../effects/use-effect-chain-state.js");
41
- const calcArgs = (fit, frameSize, canvasSize) => {
42
- switch (fit) {
43
- case 'fill': {
44
- return [
45
- 0,
46
- 0,
47
- frameSize.width,
48
- frameSize.height,
49
- 0,
50
- 0,
51
- canvasSize.width,
52
- canvasSize.height,
53
- ];
54
- }
55
- case 'contain': {
56
- const ratio = Math.min(canvasSize.width / frameSize.width, canvasSize.height / frameSize.height);
57
- const centerX = (canvasSize.width - frameSize.width * ratio) / 2;
58
- const centerY = (canvasSize.height - frameSize.height * ratio) / 2;
59
- return [
60
- 0,
61
- 0,
62
- frameSize.width,
63
- frameSize.height,
64
- centerX,
65
- centerY,
66
- frameSize.width * ratio,
67
- frameSize.height * ratio,
68
- ];
69
- }
70
- case 'cover': {
71
- const ratio = Math.max(canvasSize.width / frameSize.width, canvasSize.height / frameSize.height);
72
- const centerX = (canvasSize.width - frameSize.width * ratio) / 2;
73
- const centerY = (canvasSize.height - frameSize.height * ratio) / 2;
74
- return [
75
- 0,
76
- 0,
77
- frameSize.width,
78
- frameSize.height,
79
- centerX,
80
- centerY,
81
- frameSize.width * ratio,
82
- frameSize.height * ratio,
83
- ];
84
- }
85
- default:
86
- throw new Error('Unknown fit: ' + fit);
87
- }
88
- };
89
42
  const CanvasRefForwardingFunction = ({ width, height, fit, className, style, effects }, ref) => {
90
43
  const canvasRef = (0, react_1.useRef)(null);
91
44
  const chainState = (0, use_effect_chain_state_js_1.useEffectChainState)();
@@ -95,7 +48,7 @@ const CanvasRefForwardingFunction = ({ width, height, fit, className, style, eff
95
48
  }
96
49
  return document.createElement('canvas');
97
50
  }, []);
98
- const draw = (0, react_1.useCallback)(async (imageData) => {
51
+ const draw = (0, react_1.useCallback)((imageData) => {
99
52
  const canvas = canvasRef.current;
100
53
  const canvasWidth = width !== null && width !== void 0 ? width : imageData.displayWidth;
101
54
  const canvasHeight = height !== null && height !== void 0 ? height : imageData.displayHeight;
@@ -111,7 +64,7 @@ const CanvasRefForwardingFunction = ({ width, height, fit, className, style, eff
111
64
  if (!sourceCtx) {
112
65
  throw new Error('Could not get 2d context for source canvas');
113
66
  }
114
- sourceCtx.drawImage(imageData, ...calcArgs(fit, {
67
+ sourceCtx.drawImage(imageData, ...(0, calculate_image_fit_js_1.calculateImageFit)(fit, {
115
68
  height: imageData.displayHeight,
116
69
  width: imageData.displayWidth,
117
70
  }, {
@@ -1,3 +1,4 @@
1
+ import type { ImageFit } from '../calculate-image-fit.js';
1
2
  import type { EffectsProp } from '../effects/effect-types.js';
2
3
  import type { SequenceProps } from '../Sequence.js';
3
4
  export type RemotionAnimatedImageLoopBehavior = 'loop' | 'pause-after-finish' | 'clear-after-finish';
@@ -17,4 +18,4 @@ export type AnimatedImageProps = Omit<SequenceProps, 'children' | 'durationInFra
17
18
  readonly durationInFrames?: number;
18
19
  readonly effects?: EffectsProp;
19
20
  };
20
- export type AnimatedImageFillMode = 'contain' | 'cover' | 'fill';
21
+ export type AnimatedImageFillMode = ImageFit;
@@ -1,6 +1,7 @@
1
1
  import { type AudioHTMLAttributes } from 'react';
2
2
  import React from 'react';
3
3
  import type { SharedElementSourceNode } from './shared-element-source-node.js';
4
+ import type { RemotionAudioContextState } from './use-audio-context.js';
4
5
  /**
5
6
  * This functionality of Remotion will keep a certain amount
6
7
  * of <audio> tags pre-mounted and by default filled with an empty audio track.
@@ -33,7 +34,6 @@ export type ScheduleAudioNodeResult = {
33
34
  export type ScheduleAudioNodeOptions = {
34
35
  readonly node: AudioBufferSourceNode;
35
36
  readonly mediaTimestamp: number;
36
- readonly currentTime: number;
37
37
  readonly scheduledTime: number;
38
38
  readonly originalUnloopedMediaTimestamp: number;
39
39
  readonly duration: number;
@@ -49,6 +49,7 @@ export type AudioSyncAnchorEmitter = {
49
49
  };
50
50
  type SharedAudioContextValue = {
51
51
  audioContext: AudioContext | null;
52
+ getAudioContextState: () => RemotionAudioContextState | null;
52
53
  gainNode: GainNode | null;
53
54
  audioSyncAnchor: {
54
55
  value: number;
@@ -56,7 +57,7 @@ type SharedAudioContextValue = {
56
57
  audioSyncAnchorEmitter: AudioSyncAnchorEmitter;
57
58
  scheduleAudioNode: (options: ScheduleAudioNodeOptions) => ScheduleAudioNodeResult;
58
59
  resume: () => Promise<void>;
59
- suspend: () => void;
60
+ suspend: () => Promise<void>;
60
61
  getIsResumingAudioContext: () => Promise<void> | null;
61
62
  unscheduleAudioNode: (node: AudioBufferSourceNode) => void;
62
63
  };
@@ -77,6 +77,17 @@ const didPropChange = (key, newProp, prevProp) => {
77
77
  };
78
78
  exports.SharedAudioContext = (0, react_1.createContext)(null);
79
79
  exports.SharedAudioTagsContext = (0, react_1.createContext)(null);
80
+ const shouldSaveForLater = (state) => {
81
+ if (state === 'suspended' ||
82
+ state === 'running-to-suspended' ||
83
+ state === 'interrupted') {
84
+ return true;
85
+ }
86
+ if (state === 'running' || state === 'suspended-to-running') {
87
+ return false;
88
+ }
89
+ throw new Error(`Unexpected audio context state: ${state}`);
90
+ };
80
91
  const SharedAudioContextProvider = ({ children, audioLatencyHint, audioEnabled }) => {
81
92
  const logLevel = (0, log_level_context_js_1.useLogLevel)();
82
93
  const ctxAndGain = (0, use_audio_context_js_1.useSingletonAudioContext)({
@@ -110,11 +121,18 @@ const SharedAudioContextProvider = ({ children, audioLatencyHint, audioEnabled }
110
121
  nodesToResume.current.delete(node);
111
122
  }, []);
112
123
  const scheduleAudioNode = (0, react_1.useMemo)(() => {
113
- return ({ node, mediaTimestamp, currentTime, scheduledTime, duration, offset, originalUnloopedMediaTimestamp, }) => {
124
+ return ({ node, mediaTimestamp, scheduledTime, duration, offset, originalUnloopedMediaTimestamp, }) => {
114
125
  if (!ctxAndGain) {
115
126
  throw new Error('Audio context not found');
116
127
  }
117
- const saveForLater = ctxAndGain.audioContext.state === 'suspended' && !isResuming.current;
128
+ const currentState = ctxAndGain.getState();
129
+ if (currentState === 'closed') {
130
+ return {
131
+ type: 'not-started',
132
+ reason: 'audio context is closed',
133
+ };
134
+ }
135
+ const saveForLater = shouldSaveForLater(currentState);
118
136
  if (duration > 0) {
119
137
  if (saveForLater) {
120
138
  nodesToResume.current.set(node, {
@@ -145,7 +163,7 @@ const SharedAudioContextProvider = ({ children, audioLatencyHint, audioEnabled }
145
163
  : 'color: blue; font-weight: bold', duration < 0
146
164
  ? 'missed ' + Math.abs(offset).toFixed(2) + 's'
147
165
  : Math.abs(timeDiff).toFixed(2) +
148
- (timeDiff < 0 ? ' delay' : ' ahead'), '', 'current=' + currentTime.toFixed(4), 'actualcurrent=' + ctxAndGain.audioContext.currentTime.toFixed(4), 'offset=' + offset.toFixed(4), 'latency=' + latency.toFixed(4), 'state=' + ctxAndGain.audioContext.state, originalUnloopedMediaTimestamp !== mediaTime
166
+ (timeDiff < 0 ? ' delay' : ' ahead'), '', 'current=' + ctxAndGain.audioContext.currentTime.toFixed(4), 'offset=' + offset.toFixed(4), 'latency=' + latency.toFixed(4), 'state=' + ctxAndGain.audioContext.state, originalUnloopedMediaTimestamp !== mediaTime
149
167
  ? 'original_ts=' + originalUnloopedMediaTimestamp.toFixed(4)
150
168
  : '', 'action=' + (saveForLater ? 'schedule' : 'start'), '');
151
169
  prev.scheduledEndTime = scheduledEndTime;
@@ -176,7 +194,7 @@ const SharedAudioContextProvider = ({ children, audioLatencyHint, audioEnabled }
176
194
  node.start(r.scheduledTime, r.offset, r.duration);
177
195
  });
178
196
  nodesToResume.current.clear();
179
- const resumePromise = ctxAndGain.audioContext.resume();
197
+ const resumePromise = ctxAndGain.resume();
180
198
  isResuming.current = new Promise((resolve) => {
181
199
  (0, wait_until_actually_resumed_js_1.waitUntilActuallyResumed)(ctxAndGain.audioContext, logLevel).then(resolve);
182
200
  resumePromise.catch((err) => {
@@ -196,18 +214,19 @@ const SharedAudioContextProvider = ({ children, audioLatencyHint, audioEnabled }
196
214
  }, []);
197
215
  const suspend = (0, react_1.useCallback)(() => {
198
216
  if (!ctxAndGain) {
199
- return;
217
+ return Promise.resolve();
200
218
  }
201
219
  if (!audioContextIsPlayingEventually.current) {
202
- return;
220
+ return Promise.resolve();
203
221
  }
204
222
  audioContextIsPlayingEventually.current = false;
205
- ctxAndGain.audioContext.suspend();
223
+ return ctxAndGain.suspend();
206
224
  }, [ctxAndGain]);
207
225
  const audioContextValue = (0, react_1.useMemo)(() => {
208
226
  var _a, _b;
209
227
  return {
210
228
  audioContext: (_a = ctxAndGain === null || ctxAndGain === void 0 ? void 0 : ctxAndGain.audioContext) !== null && _a !== void 0 ? _a : null,
229
+ getAudioContextState: () => { var _a; return (_a = ctxAndGain === null || ctxAndGain === void 0 ? void 0 : ctxAndGain.getState()) !== null && _a !== void 0 ? _a : null; },
211
230
  gainNode: (_b = ctxAndGain === null || ctxAndGain === void 0 ? void 0 : ctxAndGain.gainNode) !== null && _b !== void 0 ? _b : null,
212
231
  audioSyncAnchor,
213
232
  audioSyncAnchorEmitter,
@@ -1,4 +1,5 @@
1
1
  import type { LogLevel } from '../log';
2
+ export type RemotionAudioContextState = AudioContextState | 'running-to-suspended' | 'suspended-to-running';
2
3
  export declare const useSingletonAudioContext: ({ logLevel, latencyHint, audioEnabled, }: {
3
4
  logLevel: LogLevel;
4
5
  latencyHint: AudioContextLatencyCategory;
@@ -6,4 +7,7 @@ export declare const useSingletonAudioContext: ({ logLevel, latencyHint, audioEn
6
7
  }) => {
7
8
  audioContext: AudioContext;
8
9
  gainNode: GainNode;
10
+ getState: () => RemotionAudioContextState;
11
+ resume: () => Promise<void>;
12
+ suspend: () => Promise<void>;
9
13
  } | null;
@@ -39,9 +39,45 @@ const useSingletonAudioContext = ({ logLevel, latencyHint, audioEnabled, }) => {
39
39
  gainNode.connect(audioContext.destination);
40
40
  log_1.Log.trace({ logLevel, tag: 'audio' }, 'Creating new audio context');
41
41
  audioContext.suspend();
42
+ // Tracks the state we are transitioning towards while resume()/suspend()
43
+ // have been called but the native state has not updated yet.
44
+ let transitionTarget = null;
45
+ const getState = () => {
46
+ const nativeState = audioContext.state;
47
+ if (transitionTarget === 'running' && nativeState !== 'running') {
48
+ return 'suspended-to-running';
49
+ }
50
+ if (transitionTarget === 'suspended' && nativeState !== 'suspended') {
51
+ return 'running-to-suspended';
52
+ }
53
+ return nativeState;
54
+ };
55
+ const resume = () => {
56
+ transitionTarget = 'running';
57
+ const promise = audioContext.resume();
58
+ promise.finally(() => {
59
+ if (transitionTarget === 'running') {
60
+ transitionTarget = null;
61
+ }
62
+ });
63
+ return promise;
64
+ };
65
+ const suspend = () => {
66
+ transitionTarget = 'suspended';
67
+ const promise = audioContext.suspend();
68
+ promise.finally(() => {
69
+ if (transitionTarget === 'suspended') {
70
+ transitionTarget = null;
71
+ }
72
+ });
73
+ return promise;
74
+ };
42
75
  return {
43
76
  audioContext,
44
77
  gainNode,
78
+ getState,
79
+ resume,
80
+ suspend,
45
81
  };
46
82
  }, [logLevel, latencyHint, env.isRendering, audioEnabled]);
47
83
  return context;
@@ -0,0 +1,8 @@
1
+ export type ImageFit = 'contain' | 'cover' | 'fill';
2
+ export declare const calculateImageFit: (fit: ImageFit, imageSize: {
3
+ width: number;
4
+ height: number;
5
+ }, canvasSize: {
6
+ width: number;
7
+ height: number;
8
+ }) => [number, number, number, number, number, number, number, number];
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.calculateImageFit = void 0;
4
+ const calculateImageFit = (fit, imageSize, canvasSize) => {
5
+ switch (fit) {
6
+ case 'fill': {
7
+ return [
8
+ 0,
9
+ 0,
10
+ imageSize.width,
11
+ imageSize.height,
12
+ 0,
13
+ 0,
14
+ canvasSize.width,
15
+ canvasSize.height,
16
+ ];
17
+ }
18
+ case 'contain': {
19
+ const ratio = Math.min(canvasSize.width / imageSize.width, canvasSize.height / imageSize.height);
20
+ const centerX = (canvasSize.width - imageSize.width * ratio) / 2;
21
+ const centerY = (canvasSize.height - imageSize.height * ratio) / 2;
22
+ return [
23
+ 0,
24
+ 0,
25
+ imageSize.width,
26
+ imageSize.height,
27
+ centerX,
28
+ centerY,
29
+ imageSize.width * ratio,
30
+ imageSize.height * ratio,
31
+ ];
32
+ }
33
+ case 'cover': {
34
+ const ratio = Math.max(canvasSize.width / imageSize.width, canvasSize.height / imageSize.height);
35
+ const centerX = (canvasSize.width - imageSize.width * ratio) / 2;
36
+ const centerY = (canvasSize.height - imageSize.height * ratio) / 2;
37
+ return [
38
+ 0,
39
+ 0,
40
+ imageSize.width,
41
+ imageSize.height,
42
+ centerX,
43
+ centerY,
44
+ imageSize.width * ratio,
45
+ imageSize.height * ratio,
46
+ ];
47
+ }
48
+ default:
49
+ throw new Error('Unknown fit: ' + fit);
50
+ }
51
+ };
52
+ exports.calculateImageFit = calculateImageFit;
@@ -0,0 +1,18 @@
1
+ import type { EffectsProp } from '../effects/effect-types.js';
2
+ export declare const CanvasImage: import("react").ComponentType<Pick<import("../Sequence.js").SequenceProps, "hidden" | "name" | "durationInFrames" | "from" | "showInTimeline"> & {
3
+ readonly stack?: string;
4
+ } & {
5
+ readonly src: string;
6
+ readonly width?: number;
7
+ readonly height?: number;
8
+ readonly fit?: import("../calculate-image-fit.js").ImageFit;
9
+ readonly effects?: EffectsProp;
10
+ readonly className?: string;
11
+ readonly style?: React.CSSProperties;
12
+ readonly id?: string;
13
+ readonly onError?: (error: Error) => void;
14
+ readonly pauseWhenLoading?: boolean;
15
+ readonly maxRetries?: number;
16
+ readonly delayRenderRetries?: number;
17
+ readonly delayRenderTimeoutInMilliseconds?: number;
18
+ } & import("react").RefAttributes<HTMLCanvasElement>>;
@@ -0,0 +1,247 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CanvasImage = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const react_1 = require("react");
6
+ const calculate_image_fit_js_1 = require("../calculate-image-fit.js");
7
+ const run_effect_chain_js_1 = require("../effects/run-effect-chain.js");
8
+ const use_effect_chain_state_js_1 = require("../effects/use-effect-chain-state.js");
9
+ const use_memoized_effects_js_1 = require("../effects/use-memoized-effects.js");
10
+ const enable_sequence_stack_traces_js_1 = require("../enable-sequence-stack-traces.js");
11
+ const Img_js_1 = require("../Img.js");
12
+ const prefetch_js_1 = require("../prefetch.js");
13
+ const sequence_field_schema_js_1 = require("../sequence-field-schema.js");
14
+ const Sequence_js_1 = require("../Sequence.js");
15
+ const SequenceContext_js_1 = require("../SequenceContext.js");
16
+ const use_buffer_state_js_1 = require("../use-buffer-state.js");
17
+ const use_delay_render_js_1 = require("../use-delay-render.js");
18
+ const wrap_in_schema_js_1 = require("../wrap-in-schema.js");
19
+ const canvasImageSchema = {
20
+ fit: {
21
+ type: 'enum',
22
+ default: 'fill',
23
+ description: 'Fit',
24
+ variants: {
25
+ fill: {},
26
+ contain: {},
27
+ cover: {},
28
+ },
29
+ },
30
+ ...sequence_field_schema_js_1.sequenceVisualStyleSchema,
31
+ hidden: sequence_field_schema_js_1.hiddenField,
32
+ };
33
+ const makeAbortError = () => {
34
+ if (typeof DOMException !== 'undefined') {
35
+ return new DOMException('Image loading was aborted', 'AbortError');
36
+ }
37
+ const error = new Error('Image loading was aborted');
38
+ error.name = 'AbortError';
39
+ return error;
40
+ };
41
+ const loadImage = ({ src, signal, }) => {
42
+ return new Promise((resolve, reject) => {
43
+ const image = new Image();
44
+ let settled = false;
45
+ function cleanup() {
46
+ image.onload = null;
47
+ image.onerror = null;
48
+ }
49
+ function settle(callback) {
50
+ if (settled) {
51
+ return;
52
+ }
53
+ settled = true;
54
+ cleanup();
55
+ callback();
56
+ }
57
+ function onAbort() {
58
+ settle(() => reject(makeAbortError()));
59
+ }
60
+ image.onload = () => {
61
+ var _a;
62
+ Promise.resolve((_a = image.decode) === null || _a === void 0 ? void 0 : _a.call(image))
63
+ .catch(() => undefined)
64
+ .then(() => {
65
+ const imageWidth = image.naturalWidth || image.width;
66
+ const imageHeight = image.naturalHeight || image.height;
67
+ if (imageWidth <= 0 || imageHeight <= 0) {
68
+ settle(() => reject(new Error(`Could not determine dimensions for <CanvasImage> with src="${(0, Img_js_1.truncateSrcForLabel)(src)}"`)));
69
+ return;
70
+ }
71
+ settle(() => resolve({ element: image, width: imageWidth, height: imageHeight }));
72
+ });
73
+ };
74
+ image.onerror = () => {
75
+ settle(() => reject(new Error(`Could not load <CanvasImage> with src="${(0, Img_js_1.truncateSrcForLabel)(src)}"`)));
76
+ };
77
+ signal.addEventListener('abort', onAbort, { once: true });
78
+ if (signal.aborted) {
79
+ onAbort();
80
+ return;
81
+ }
82
+ image.crossOrigin = 'anonymous';
83
+ image.src = src;
84
+ });
85
+ };
86
+ function exponentialBackoff(errorCount) {
87
+ return 1000 * 2 ** (errorCount - 1);
88
+ }
89
+ const CanvasImageContent = (0, react_1.forwardRef)(({ src, width, height, fit = 'fill', effects, controls, onError, className, style, id, pauseWhenLoading, maxRetries = 2, delayRenderRetries, delayRenderTimeoutInMilliseconds, }, ref) => {
90
+ var _a;
91
+ const { delayRender, continueRender, cancelRender } = (0, use_delay_render_js_1.useDelayRender)();
92
+ const { delayPlayback } = (0, use_buffer_state_js_1.useBufferState)();
93
+ const [outputCanvas, setOutputCanvas] = (0, react_1.useState)(null);
94
+ const actualSrc = (0, prefetch_js_1.usePreload)(src);
95
+ const chainState = (0, use_effect_chain_state_js_1.useEffectChainState)();
96
+ const memoizedEffects = (0, use_memoized_effects_js_1.useMemoizedEffects)({
97
+ effects,
98
+ overrideId: (_a = controls === null || controls === void 0 ? void 0 : controls.overrideId) !== null && _a !== void 0 ? _a : null,
99
+ });
100
+ const sequenceContext = (0, react_1.useContext)(SequenceContext_js_1.SequenceContext);
101
+ const sourceCanvas = (0, react_1.useMemo)(() => {
102
+ if (typeof document === 'undefined') {
103
+ return null;
104
+ }
105
+ return document.createElement('canvas');
106
+ }, []);
107
+ const canvasRef = (0, react_1.useCallback)((canvas) => {
108
+ setOutputCanvas(canvas);
109
+ if (typeof ref === 'function') {
110
+ ref(canvas);
111
+ }
112
+ else if (ref) {
113
+ ref.current = canvas;
114
+ }
115
+ }, [ref]);
116
+ (0, react_1.useEffect)(() => {
117
+ if (!outputCanvas || !sourceCanvas) {
118
+ return;
119
+ }
120
+ const isPremounting = Boolean(sequenceContext === null || sequenceContext === void 0 ? void 0 : sequenceContext.premounting);
121
+ const isPostmounting = Boolean(sequenceContext === null || sequenceContext === void 0 ? void 0 : sequenceContext.postmounting);
122
+ const handle = delayRender(`Rendering <CanvasImage> with src="${(0, Img_js_1.truncateSrcForLabel)(actualSrc)}"`, {
123
+ retries: delayRenderRetries !== null && delayRenderRetries !== void 0 ? delayRenderRetries : undefined,
124
+ timeoutInMilliseconds: delayRenderTimeoutInMilliseconds !== null && delayRenderTimeoutInMilliseconds !== void 0 ? delayRenderTimeoutInMilliseconds : undefined,
125
+ });
126
+ const unblock = pauseWhenLoading && !isPremounting && !isPostmounting
127
+ ? delayPlayback().unblock
128
+ : () => undefined;
129
+ const controller = new AbortController();
130
+ let cancelled = false;
131
+ let continued = false;
132
+ let errorCount = 0;
133
+ let timeoutId = null;
134
+ const continueRenderOnce = () => {
135
+ if (continued) {
136
+ return;
137
+ }
138
+ continued = true;
139
+ unblock();
140
+ continueRender(handle);
141
+ };
142
+ const attemptLoad = () => {
143
+ loadImage({ src: actualSrc, signal: controller.signal })
144
+ .then((image) => {
145
+ if (cancelled) {
146
+ return;
147
+ }
148
+ const canvasWidth = width !== null && width !== void 0 ? width : image.width;
149
+ const canvasHeight = height !== null && height !== void 0 ? height : image.height;
150
+ const sourceContext = sourceCanvas.getContext('2d', {
151
+ colorSpace: 'srgb',
152
+ });
153
+ if (!sourceContext) {
154
+ throw new Error('Could not get 2D context for <CanvasImage> source canvas');
155
+ }
156
+ sourceCanvas.width = canvasWidth;
157
+ sourceCanvas.height = canvasHeight;
158
+ outputCanvas.width = canvasWidth;
159
+ outputCanvas.height = canvasHeight;
160
+ sourceContext.clearRect(0, 0, canvasWidth, canvasHeight);
161
+ sourceContext.drawImage(image.element, ...(0, calculate_image_fit_js_1.calculateImageFit)(fit, { width: image.width, height: image.height }, { width: canvasWidth, height: canvasHeight }));
162
+ return (0, run_effect_chain_js_1.runEffectChain)({
163
+ state: chainState.get(canvasWidth, canvasHeight),
164
+ source: sourceCanvas,
165
+ effects: memoizedEffects,
166
+ output: outputCanvas,
167
+ width: canvasWidth,
168
+ height: canvasHeight,
169
+ });
170
+ })
171
+ .then((completed) => {
172
+ if (completed && !cancelled) {
173
+ continueRenderOnce();
174
+ }
175
+ })
176
+ .catch((err) => {
177
+ if (err.name === 'AbortError') {
178
+ continueRenderOnce();
179
+ return;
180
+ }
181
+ errorCount++;
182
+ if (errorCount <= maxRetries) {
183
+ const backoff = exponentialBackoff(errorCount);
184
+ // eslint-disable-next-line no-console
185
+ console.warn(`Could not load <CanvasImage> with src="${(0, Img_js_1.truncateSrcForLabel)(actualSrc)}", retrying in ${backoff}ms`);
186
+ timeoutId = setTimeout(() => {
187
+ if (!cancelled) {
188
+ attemptLoad();
189
+ }
190
+ }, backoff);
191
+ }
192
+ else if (onError) {
193
+ onError(err);
194
+ continueRenderOnce();
195
+ }
196
+ else {
197
+ cancelRender(err);
198
+ }
199
+ });
200
+ };
201
+ attemptLoad();
202
+ return () => {
203
+ cancelled = true;
204
+ if (timeoutId !== null) {
205
+ clearTimeout(timeoutId);
206
+ }
207
+ controller.abort();
208
+ continueRenderOnce();
209
+ };
210
+ }, [
211
+ actualSrc,
212
+ cancelRender,
213
+ chainState,
214
+ continueRender,
215
+ delayPlayback,
216
+ delayRender,
217
+ delayRenderRetries,
218
+ delayRenderTimeoutInMilliseconds,
219
+ fit,
220
+ height,
221
+ maxRetries,
222
+ memoizedEffects,
223
+ onError,
224
+ outputCanvas,
225
+ pauseWhenLoading,
226
+ sequenceContext === null || sequenceContext === void 0 ? void 0 : sequenceContext.postmounting,
227
+ sequenceContext === null || sequenceContext === void 0 ? void 0 : sequenceContext.premounting,
228
+ sourceCanvas,
229
+ width,
230
+ ]);
231
+ return ((0, jsx_runtime_1.jsx)("canvas", { ref: canvasRef, width: width, height: height, className: className, style: style, id: id }));
232
+ });
233
+ CanvasImageContent.displayName = 'CanvasImageContent';
234
+ const CanvasImageInner = (0, react_1.forwardRef)(({ src, width, height, fit, effects = [], className, style, id, onError, pauseWhenLoading, maxRetries, delayRenderRetries, delayRenderTimeoutInMilliseconds, durationInFrames, from, hidden, name, showInTimeline, stack, _experimentalControls: controls, }, ref) => {
235
+ if (!src) {
236
+ throw new Error('No "src" prop was passed to <CanvasImage>.');
237
+ }
238
+ const memoizedEffectDefinitions = (0, use_memoized_effects_js_1.useMemoizedEffectDefinitions)(effects);
239
+ return ((0, jsx_runtime_1.jsx)(Sequence_js_1.Sequence, { layout: "none", from: from !== null && from !== void 0 ? from : 0, durationInFrames: durationInFrames !== null && durationInFrames !== void 0 ? durationInFrames : Infinity, hidden: hidden, showInTimeline: showInTimeline !== null && showInTimeline !== void 0 ? showInTimeline : true, name: name !== null && name !== void 0 ? name : '<CanvasImage>', _experimentalControls: controls, _remotionInternalEffects: memoizedEffectDefinitions, _remotionInternalIsMedia: { type: 'image', src }, _remotionInternalStack: stack, children: (0, jsx_runtime_1.jsx)(CanvasImageContent, { ref: ref, src: src, width: width, height: height, fit: fit, effects: effects, controls: controls, className: className, style: style, id: id, onError: onError, pauseWhenLoading: pauseWhenLoading, maxRetries: maxRetries, delayRenderRetries: delayRenderRetries, delayRenderTimeoutInMilliseconds: delayRenderTimeoutInMilliseconds }) }));
240
+ });
241
+ /*
242
+ * @description Renders a static image to a `<canvas>` and applies Remotion effects.
243
+ * @see [Documentation](https://www.remotion.dev/docs/canvasimage)
244
+ */
245
+ exports.CanvasImage = (0, wrap_in_schema_js_1.wrapInSchema)(CanvasImageInner, canvasImageSchema);
246
+ exports.CanvasImage.displayName = 'CanvasImage';
247
+ (0, enable_sequence_stack_traces_js_1.addSequenceStackTraces)(exports.CanvasImage);
@@ -0,0 +1,2 @@
1
+ export { CanvasImage } from './CanvasImage.js';
2
+ export type { CanvasImageProps } from './props.js';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CanvasImage = void 0;
4
+ var CanvasImage_js_1 = require("./CanvasImage.js");
5
+ Object.defineProperty(exports, "CanvasImage", { enumerable: true, get: function () { return CanvasImage_js_1.CanvasImage; } });
@@ -0,0 +1,26 @@
1
+ import type React from 'react';
2
+ import type { ImageFit } from '../calculate-image-fit.js';
3
+ import type { EffectsProp } from '../effects/effect-types.js';
4
+ import type { SequenceProps } from '../Sequence.js';
5
+ type CanvasImageSequenceProps = Pick<SequenceProps, 'durationInFrames' | 'from' | 'hidden' | 'name' | 'showInTimeline'> & {
6
+ /**
7
+ * @deprecated For internal use only.
8
+ */
9
+ readonly stack?: string;
10
+ };
11
+ export type CanvasImageProps = CanvasImageSequenceProps & {
12
+ readonly src: string;
13
+ readonly width?: number;
14
+ readonly height?: number;
15
+ readonly fit?: ImageFit;
16
+ readonly effects?: EffectsProp;
17
+ readonly className?: string;
18
+ readonly style?: React.CSSProperties;
19
+ readonly id?: string;
20
+ readonly onError?: (error: Error) => void;
21
+ readonly pauseWhenLoading?: boolean;
22
+ readonly maxRetries?: number;
23
+ readonly delayRenderRetries?: number;
24
+ readonly delayRenderTimeoutInMilliseconds?: number;
25
+ };
26
+ export {};
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });