remotion 3.0.20 → 3.0.23
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/.turbo/turbo-build.log +2 -2
- package/.turbo/turbo-lint.log +11 -0
- package/README.md +1 -1
- package/dist/AbsoluteFill.d.ts +6 -1
- package/dist/AbsoluteFill.js +4 -0
- package/dist/Composition.d.ts +2 -5
- package/dist/Composition.js +3 -29
- package/dist/CompositionManager.d.ts +3 -5
- package/dist/Folder.d.ts +15 -0
- package/dist/Folder.js +33 -0
- package/dist/Sequence.d.ts +19 -0
- package/dist/Sequence.js +123 -0
- package/dist/Still.d.ts +1 -1
- package/dist/audio/Audio.d.ts +3 -3
- package/dist/audio/Audio.js +2 -2
- package/dist/audio/AudioForDevelopment.d.ts +2 -2
- package/dist/audio/AudioForRendering.d.ts +2 -2
- package/dist/audio/AudioForRendering.js +5 -5
- package/dist/audio/props.d.ts +1 -1
- package/dist/audio/shared-audio-tags.d.ts +1 -1
- package/dist/audio/use-audio-frame.js +4 -4
- package/dist/compress-assets.d.ts +1 -1
- package/dist/config/chromium-flags.d.ts +1 -1
- package/dist/config/crf.d.ts +1 -1
- package/dist/config/image-format.d.ts +1 -1
- package/dist/config/image-sequence.d.ts +1 -1
- package/dist/config/index.d.ts +12 -12
- package/dist/config/log.d.ts +1 -1
- package/dist/config/override-webpack.d.ts +1 -1
- package/dist/config/pixel-format.d.ts +1 -1
- package/dist/config/prores-profile.d.ts +1 -1
- package/dist/default-css.d.ts +1 -0
- package/dist/default-css.js +8 -1
- package/dist/freeze.d.ts +2 -2
- package/dist/freeze.js +2 -2
- package/dist/index.d.ts +6 -5
- package/dist/index.js +7 -6
- package/dist/internals.d.ts +14 -13
- package/dist/internals.js +6 -4
- package/dist/interpolate-colors.d.ts +5 -0
- package/dist/interpolate-colors.js +401 -0
- package/dist/is-audio-codec.d.ts +1 -1
- package/dist/play-and-handle-not-allowed-error.d.ts +1 -1
- package/dist/register-root.d.ts +1 -1
- package/dist/series/index.d.ts +2 -2
- package/dist/series/index.js +2 -2
- package/dist/spring/index.d.ts +1 -1
- package/dist/spring/measure-spring.d.ts +1 -1
- package/dist/timeline-inout-position-state.d.ts +1 -1
- package/dist/timeline-position-state.d.ts +1 -1
- package/dist/use-current-frame.d.ts +7 -0
- package/dist/use-current-frame.js +25 -0
- package/dist/use-lazy-component.d.ts +3 -3
- package/dist/use-media-in-timeline.d.ts +2 -2
- package/dist/use-media-in-timeline.js +2 -2
- package/dist/use-media-playback.d.ts +1 -1
- package/dist/use-media-playback.js +3 -3
- package/dist/use-media-tag-volume.d.ts +1 -1
- package/dist/use-sync-volume-with-media-tag.d.ts +2 -2
- package/dist/use-unsafe-video-config.d.ts +1 -1
- package/dist/use-unsafe-video-config.js +2 -2
- package/dist/use-video-config.d.ts +1 -1
- package/dist/validate-media-props.d.ts +3 -3
- package/dist/validation/validate-image-format.d.ts +1 -1
- package/dist/validation/validate-offthreadvideo-image-format.d.ts +1 -0
- package/dist/validation/validate-offthreadvideo-image-format.js +15 -0
- package/dist/video/OffthreadVideo.d.ts +1 -1
- package/dist/video/OffthreadVideo.js +4 -2
- package/dist/video/OffthreadVideoForRendering.d.ts +1 -1
- package/dist/video/OffthreadVideoForRendering.js +17 -15
- package/dist/video/Video.d.ts +3 -3
- package/dist/video/Video.js +2 -2
- package/dist/video/VideoForDevelopment.d.ts +2 -2
- package/dist/video/VideoForRendering.d.ts +2 -2
- package/dist/video/VideoForRendering.js +5 -5
- package/dist/video/index.d.ts +1 -1
- package/dist/video/props.d.ts +4 -2
- package/dist/wrap-remotion-context.d.ts +1 -1
- package/dist/wrap-remotion-context.js +3 -3
- package/package.json +3 -3
package/dist/config/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { Browser } from './browser';
|
|
2
|
-
import { BrowserExecutable } from './browser-executable';
|
|
3
|
-
import { Codec } from './codec';
|
|
4
|
-
import { Concurrency } from './concurrency';
|
|
5
|
-
import { FfmpegExecutable } from './ffmpeg-executable';
|
|
6
|
-
import { FrameRange } from './frame-range';
|
|
7
|
-
import { ImageFormat, StillImageFormat } from './image-format';
|
|
8
|
-
import { LogLevel } from './log';
|
|
9
|
-
import { WebpackConfiguration, WebpackOverrideFn } from './override-webpack';
|
|
10
|
-
import { PixelFormat } from './pixel-format';
|
|
1
|
+
import type { Browser } from './browser';
|
|
2
|
+
import type { BrowserExecutable } from './browser-executable';
|
|
3
|
+
import type { Codec } from './codec';
|
|
4
|
+
import type { Concurrency } from './concurrency';
|
|
5
|
+
import type { FfmpegExecutable } from './ffmpeg-executable';
|
|
6
|
+
import type { FrameRange } from './frame-range';
|
|
7
|
+
import type { ImageFormat, StillImageFormat } from './image-format';
|
|
8
|
+
import type { LogLevel } from './log';
|
|
9
|
+
import type { WebpackConfiguration, WebpackOverrideFn } from './override-webpack';
|
|
10
|
+
import type { PixelFormat } from './pixel-format';
|
|
11
11
|
export declare const Config: {
|
|
12
12
|
readonly Preview: {
|
|
13
13
|
/**
|
|
@@ -44,7 +44,7 @@ export declare const Config: {
|
|
|
44
44
|
*
|
|
45
45
|
* Set this to 'verbose' to get browser logs and other IO.
|
|
46
46
|
*/
|
|
47
|
-
readonly setLevel: (newLogLevel: "
|
|
47
|
+
readonly setLevel: (newLogLevel: "error" | "verbose" | "info" | "warn") => void;
|
|
48
48
|
};
|
|
49
49
|
readonly Puppeteer: {
|
|
50
50
|
/**
|
|
@@ -161,7 +161,7 @@ export declare const Config: {
|
|
|
161
161
|
* Possible values: 4444-xq, 4444, hq, standard, light, proxy. Default: 'hq'
|
|
162
162
|
* See https://avpres.net/FFmpeg/im_ProRes.html for meaning of possible values.
|
|
163
163
|
*/
|
|
164
|
-
readonly setProResProfile: (profile: "4444-xq" | "4444" | "hq" | "standard" | "
|
|
164
|
+
readonly setProResProfile: (profile: "light" | "4444-xq" | "4444" | "hq" | "standard" | "proxy" | undefined) => void;
|
|
165
165
|
};
|
|
166
166
|
};
|
|
167
167
|
export type { PixelFormat, Concurrency, WebpackConfiguration, WebpackOverrideFn, BrowserExecutable, FfmpegExecutable, ImageFormat, Codec, Browser, FrameRange, LogLevel, StillImageFormat, };
|
package/dist/config/log.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const logLevels: readonly ["verbose", "info", "warn", "error"];
|
|
2
2
|
export declare type LogLevel = typeof logLevels[number];
|
|
3
3
|
export declare const DEFAULT_LOG_LEVEL: LogLevel;
|
|
4
|
-
export declare const getLogLevel: () => "
|
|
4
|
+
export declare const getLogLevel: () => "error" | "verbose" | "info" | "warn";
|
|
5
5
|
export declare const setLogLevel: (newLogLevel: LogLevel) => void;
|
|
6
6
|
export declare const isValidLogLevel: (level: string) => boolean;
|
|
7
7
|
export declare const isEqualOrBelowLogLevel: (currentLevel: LogLevel, level: LogLevel) => boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Configuration } from 'webpack';
|
|
1
|
+
import type { Configuration } from 'webpack';
|
|
2
2
|
export declare type WebpackConfiguration = Configuration;
|
|
3
3
|
export declare type WebpackOverrideFn = (currentConfiguration: WebpackConfiguration) => WebpackConfiguration;
|
|
4
4
|
export declare const defaultOverrideFunction: WebpackOverrideFn;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Codec } from './codec';
|
|
1
|
+
import type { Codec } from './codec';
|
|
2
2
|
declare const validOptions: readonly ["yuv420p", "yuva420p", "yuv422p", "yuv444p", "yuv420p10le", "yuv422p10le", "yuv444p10le", "yuva444p10le"];
|
|
3
3
|
export declare type PixelFormat = typeof validOptions[number];
|
|
4
4
|
export declare const DEFAULT_PIXEL_FORMAT: PixelFormat;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Codec } from './codec';
|
|
1
|
+
import type { Codec } from './codec';
|
|
2
2
|
declare const proResProfileOptions: readonly ["4444-xq", "4444", "hq", "standard", "light", "proxy"];
|
|
3
3
|
export declare type ProResProfile = typeof proResProfileOptions[number];
|
|
4
4
|
export declare const getProResProfile: () => ProResProfile | undefined;
|
package/dist/default-css.d.ts
CHANGED
package/dist/default-css.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.makeDefaultCSS = exports.injectCSS = void 0;
|
|
3
|
+
exports.makeDefaultCSS = exports.OFFTHREAD_VIDEO_CLASS_NAME = exports.injectCSS = void 0;
|
|
4
4
|
const injected = {};
|
|
5
5
|
const injectCSS = (css) => {
|
|
6
6
|
// Skip in node
|
|
@@ -17,6 +17,7 @@ const injectCSS = (css) => {
|
|
|
17
17
|
injected[css] = true;
|
|
18
18
|
};
|
|
19
19
|
exports.injectCSS = injectCSS;
|
|
20
|
+
exports.OFFTHREAD_VIDEO_CLASS_NAME = '__remotion_offthreadvideo';
|
|
20
21
|
const makeDefaultCSS = (scope, backgroundColor) => {
|
|
21
22
|
if (!scope) {
|
|
22
23
|
return `
|
|
@@ -27,6 +28,9 @@ const makeDefaultCSS = (scope, backgroundColor) => {
|
|
|
27
28
|
margin: 0;
|
|
28
29
|
background-color: ${backgroundColor};
|
|
29
30
|
}
|
|
31
|
+
.${exports.OFFTHREAD_VIDEO_CLASS_NAME} {
|
|
32
|
+
object-fit: contain;
|
|
33
|
+
}
|
|
30
34
|
`;
|
|
31
35
|
}
|
|
32
36
|
return `
|
|
@@ -37,6 +41,9 @@ const makeDefaultCSS = (scope, backgroundColor) => {
|
|
|
37
41
|
width: 100%;
|
|
38
42
|
height: 100%;
|
|
39
43
|
}
|
|
44
|
+
${scope} .${exports.OFFTHREAD_VIDEO_CLASS_NAME} {
|
|
45
|
+
object-fit: contain;
|
|
46
|
+
}
|
|
40
47
|
`;
|
|
41
48
|
};
|
|
42
49
|
exports.makeDefaultCSS = makeDefaultCSS;
|
package/dist/freeze.d.ts
CHANGED
package/dist/freeze.js
CHANGED
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.Freeze = void 0;
|
|
4
4
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
5
|
const react_1 = require("react");
|
|
6
|
-
const
|
|
6
|
+
const Sequence_1 = require("./Sequence");
|
|
7
7
|
const timeline_position_state_1 = require("./timeline-position-state");
|
|
8
8
|
const Freeze = ({ frame, children }) => {
|
|
9
9
|
if (typeof frame === 'undefined') {
|
|
@@ -29,6 +29,6 @@ const Freeze = ({ frame, children }) => {
|
|
|
29
29
|
frame,
|
|
30
30
|
};
|
|
31
31
|
}, [context, frame]);
|
|
32
|
-
return ((0, jsx_runtime_1.jsx)(timeline_position_state_1.TimelineContext.Provider, { value: value, children: (0, jsx_runtime_1.jsx)(
|
|
32
|
+
return ((0, jsx_runtime_1.jsx)(timeline_position_state_1.TimelineContext.Provider, { value: value, children: (0, jsx_runtime_1.jsx)(Sequence_1.SequenceContext.Provider, { value: null, children: children }) }));
|
|
33
33
|
};
|
|
34
34
|
exports.Freeze = Freeze;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import './asset-types';
|
|
2
|
-
import { TAsset, TCompMetadata } from './CompositionManager';
|
|
2
|
+
import type { TAsset, TCompMetadata } from './CompositionManager';
|
|
3
3
|
declare global {
|
|
4
4
|
interface Window {
|
|
5
5
|
ready: boolean;
|
|
@@ -34,27 +34,28 @@ export declare type BundleState = {
|
|
|
34
34
|
export * from './AbsoluteFill';
|
|
35
35
|
export * from './audio';
|
|
36
36
|
export * from './Composition';
|
|
37
|
-
export { SmallTCompMetadata, TAsset, TCompMetadata
|
|
37
|
+
export { SmallTCompMetadata, TAsset, TCompMetadata } from './CompositionManager';
|
|
38
38
|
export * from './config';
|
|
39
39
|
export { getInputProps } from './config/input-props';
|
|
40
40
|
export * from './delay-render';
|
|
41
41
|
export * from './easing';
|
|
42
|
+
export * from './Folder';
|
|
42
43
|
export * from './freeze';
|
|
43
44
|
export * from './IFrame';
|
|
44
45
|
export * from './Img';
|
|
45
46
|
export * from './internals';
|
|
46
47
|
export * from './interpolate';
|
|
47
|
-
export { interpolateColors } from './
|
|
48
|
+
export { interpolateColors } from './interpolate-colors';
|
|
48
49
|
export { Loop } from './loop';
|
|
49
50
|
export * from './random';
|
|
50
51
|
export { registerRoot } from './register-root';
|
|
51
|
-
export { Sequence } from './
|
|
52
|
+
export { Sequence } from './Sequence';
|
|
52
53
|
export { Series } from './series';
|
|
53
54
|
export * from './spring';
|
|
54
55
|
export { staticFile } from './static-file';
|
|
55
56
|
export * from './Still';
|
|
56
57
|
export type { PlayableMediaTag } from './timeline-position-state';
|
|
57
|
-
export { useCurrentFrame } from './use-frame';
|
|
58
|
+
export { useCurrentFrame } from './use-current-frame';
|
|
58
59
|
export * from './use-video-config';
|
|
59
60
|
export * from './video';
|
|
60
61
|
export * from './video-config';
|
package/dist/index.js
CHANGED
|
@@ -26,28 +26,29 @@ var input_props_1 = require("./config/input-props");
|
|
|
26
26
|
Object.defineProperty(exports, "getInputProps", { enumerable: true, get: function () { return input_props_1.getInputProps; } });
|
|
27
27
|
__exportStar(require("./delay-render"), exports);
|
|
28
28
|
__exportStar(require("./easing"), exports);
|
|
29
|
+
__exportStar(require("./Folder"), exports);
|
|
29
30
|
__exportStar(require("./freeze"), exports);
|
|
30
31
|
__exportStar(require("./IFrame"), exports);
|
|
31
32
|
__exportStar(require("./Img"), exports);
|
|
32
33
|
__exportStar(require("./internals"), exports);
|
|
33
34
|
__exportStar(require("./interpolate"), exports);
|
|
34
|
-
var
|
|
35
|
-
Object.defineProperty(exports, "interpolateColors", { enumerable: true, get: function () { return
|
|
35
|
+
var interpolate_colors_1 = require("./interpolate-colors");
|
|
36
|
+
Object.defineProperty(exports, "interpolateColors", { enumerable: true, get: function () { return interpolate_colors_1.interpolateColors; } });
|
|
36
37
|
var loop_1 = require("./loop");
|
|
37
38
|
Object.defineProperty(exports, "Loop", { enumerable: true, get: function () { return loop_1.Loop; } });
|
|
38
39
|
__exportStar(require("./random"), exports);
|
|
39
40
|
var register_root_1 = require("./register-root");
|
|
40
41
|
Object.defineProperty(exports, "registerRoot", { enumerable: true, get: function () { return register_root_1.registerRoot; } });
|
|
41
|
-
var
|
|
42
|
-
Object.defineProperty(exports, "Sequence", { enumerable: true, get: function () { return
|
|
42
|
+
var Sequence_1 = require("./Sequence");
|
|
43
|
+
Object.defineProperty(exports, "Sequence", { enumerable: true, get: function () { return Sequence_1.Sequence; } });
|
|
43
44
|
var series_1 = require("./series");
|
|
44
45
|
Object.defineProperty(exports, "Series", { enumerable: true, get: function () { return series_1.Series; } });
|
|
45
46
|
__exportStar(require("./spring"), exports);
|
|
46
47
|
var static_file_1 = require("./static-file");
|
|
47
48
|
Object.defineProperty(exports, "staticFile", { enumerable: true, get: function () { return static_file_1.staticFile; } });
|
|
48
49
|
__exportStar(require("./Still"), exports);
|
|
49
|
-
var
|
|
50
|
-
Object.defineProperty(exports, "useCurrentFrame", { enumerable: true, get: function () { return
|
|
50
|
+
var use_current_frame_1 = require("./use-current-frame");
|
|
51
|
+
Object.defineProperty(exports, "useCurrentFrame", { enumerable: true, get: function () { return use_current_frame_1.useCurrentFrame; } });
|
|
51
52
|
__exportStar(require("./use-video-config"), exports);
|
|
52
53
|
__exportStar(require("./video"), exports);
|
|
53
54
|
__exportStar(require("./video-config"), exports);
|
package/dist/internals.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { CompProps } from './Composition';
|
|
2
|
-
import { CompositionManagerContext, RenderAssetInfo, TAsset, TCompMetadata, TComposition, TSequence } from './CompositionManager';
|
|
1
|
+
import type { CompProps } from './Composition';
|
|
2
|
+
import type { CompositionManagerContext, RenderAssetInfo, TAsset, TCompMetadata, TComposition, TSequence } from './CompositionManager';
|
|
3
3
|
import * as AssetCompression from './compress-assets';
|
|
4
4
|
import * as Logging from './config/log';
|
|
5
|
-
import { WebpackOverrideFn } from './config/override-webpack';
|
|
6
|
-
import { ProResProfile } from './config/prores-profile';
|
|
5
|
+
import type { WebpackOverrideFn } from './config/override-webpack';
|
|
6
|
+
import type { ProResProfile } from './config/prores-profile';
|
|
7
7
|
import * as CSSUtils from './default-css';
|
|
8
|
-
import { RemotionEnvironment } from './get-environment';
|
|
8
|
+
import type { RemotionEnvironment } from './get-environment';
|
|
9
9
|
import * as perf from './perf';
|
|
10
10
|
import * as TimelineInOutPosition from './timeline-inout-position-state';
|
|
11
|
-
import { SetTimelineInOutContextValue, TimelineInOutContextValue } from './timeline-inout-position-state';
|
|
11
|
+
import type { SetTimelineInOutContextValue, TimelineInOutContextValue } from './timeline-inout-position-state';
|
|
12
12
|
import * as TimelinePosition from './timeline-position-state';
|
|
13
|
-
import { SetTimelineContextValue, TimelineContextValue } from './timeline-position-state';
|
|
13
|
+
import type { SetTimelineContextValue, TimelineContextValue } from './timeline-position-state';
|
|
14
14
|
import { truthy } from './truthy';
|
|
15
|
-
import { OpenGlRenderer } from './validation/validate-opengl-renderer';
|
|
16
|
-
import { MediaVolumeContextValue, SetMediaVolumeContextValue } from './volume-position-state';
|
|
15
|
+
import type { OpenGlRenderer } from './validation/validate-opengl-renderer';
|
|
16
|
+
import type { MediaVolumeContextValue, SetMediaVolumeContextValue } from './volume-position-state';
|
|
17
17
|
import { useRemotionContexts } from './wrap-remotion-context';
|
|
18
18
|
declare const Timeline: {
|
|
19
19
|
TimelineInOutContext: import("react").Context<TimelineInOutPosition.TimelineInOutContextValue>;
|
|
@@ -88,7 +88,7 @@ export declare const Internals: {
|
|
|
88
88
|
truthy: typeof truthy;
|
|
89
89
|
isAudioCodec: (codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | undefined) => boolean;
|
|
90
90
|
Logging: typeof Logging;
|
|
91
|
-
SequenceContext: import("react").Context<import("./
|
|
91
|
+
SequenceContext: import("react").Context<import("./Sequence").SequenceContextType | null>;
|
|
92
92
|
useRemotionContexts: typeof useRemotionContexts;
|
|
93
93
|
RemotionContextProvider: (props: import("./wrap-remotion-context").RemotionContextProviderProps) => JSX.Element;
|
|
94
94
|
CSSUtils: typeof CSSUtils;
|
|
@@ -102,9 +102,9 @@ export declare const Internals: {
|
|
|
102
102
|
validateFps: (fps: number, location: string) => void;
|
|
103
103
|
validateDimension: (amount: number, nameOfProp: string, location: string) => void;
|
|
104
104
|
getRemotionEnvironment: () => RemotionEnvironment;
|
|
105
|
-
getProResProfile: () => "4444-xq" | "4444" | "hq" | "standard" | "
|
|
106
|
-
setProResProfile: (profile: "4444-xq" | "4444" | "hq" | "standard" | "
|
|
107
|
-
validateSelectedCodecAndProResCombination: (actualCodec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv", actualProResProfile: "4444-xq" | "4444" | "hq" | "standard" | "
|
|
105
|
+
getProResProfile: () => "light" | "4444-xq" | "4444" | "hq" | "standard" | "proxy" | undefined;
|
|
106
|
+
setProResProfile: (profile: "light" | "4444-xq" | "4444" | "hq" | "standard" | "proxy" | undefined) => void;
|
|
107
|
+
validateSelectedCodecAndProResCombination: (actualCodec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv", actualProResProfile: "light" | "4444-xq" | "4444" | "hq" | "standard" | "proxy" | undefined) => void;
|
|
108
108
|
getMaxTimelineTracks: () => number;
|
|
109
109
|
SharedAudioContext: import("react").Context<{
|
|
110
110
|
registerAudio: (aud: import("./audio").RemotionAudioProps) => {
|
|
@@ -148,5 +148,6 @@ export declare const Internals: {
|
|
|
148
148
|
useAbsoluteCurrentFrame: () => number;
|
|
149
149
|
portalNode: () => HTMLElement;
|
|
150
150
|
waitForRoot: (fn: (comp: import("react").FC<{}>) => void) => () => void;
|
|
151
|
+
validateOffthreadVideoImageFormat: (input: unknown) => void;
|
|
151
152
|
};
|
|
152
153
|
export type { TComposition, Timeline, TCompMetadata, TSequence, WebpackOverrideFn, TAsset, RenderAssetInfo, TimelineContextValue, SetTimelineContextValue, TimelineInOutContextValue, SetTimelineInOutContextValue, CompProps, CompositionManagerContext, MediaVolumeContextValue, SetMediaVolumeContextValue, RemotionEnvironment, ProResProfile, OpenGlRenderer, };
|
package/dist/internals.js
CHANGED
|
@@ -60,13 +60,13 @@ const perf = __importStar(require("./perf"));
|
|
|
60
60
|
const portal_node_1 = require("./portal-node");
|
|
61
61
|
const register_root_1 = require("./register-root");
|
|
62
62
|
const RemotionRoot_1 = require("./RemotionRoot");
|
|
63
|
-
const
|
|
63
|
+
const Sequence_1 = require("./Sequence");
|
|
64
64
|
const setup_env_variables_1 = require("./setup-env-variables");
|
|
65
65
|
const TimelineInOutPosition = __importStar(require("./timeline-inout-position-state"));
|
|
66
66
|
const TimelinePosition = __importStar(require("./timeline-position-state"));
|
|
67
67
|
const timeout_2 = require("./timeout");
|
|
68
68
|
const truthy_1 = require("./truthy");
|
|
69
|
-
const
|
|
69
|
+
const use_current_frame_1 = require("./use-current-frame");
|
|
70
70
|
const use_lazy_component_1 = require("./use-lazy-component");
|
|
71
71
|
const use_unsafe_video_config_1 = require("./use-unsafe-video-config");
|
|
72
72
|
const use_video_1 = require("./use-video");
|
|
@@ -76,6 +76,7 @@ const validate_duration_in_frames_1 = require("./validation/validate-duration-in
|
|
|
76
76
|
const validate_fps_1 = require("./validation/validate-fps");
|
|
77
77
|
const validate_frame_1 = require("./validation/validate-frame");
|
|
78
78
|
const validate_image_format_1 = require("./validation/validate-image-format");
|
|
79
|
+
const validate_offthreadvideo_image_format_1 = require("./validation/validate-offthreadvideo-image-format");
|
|
79
80
|
const validate_opengl_renderer_1 = require("./validation/validate-opengl-renderer");
|
|
80
81
|
const validate_quality_1 = require("./validation/validate-quality");
|
|
81
82
|
const volume_position_state_1 = require("./volume-position-state");
|
|
@@ -126,7 +127,7 @@ exports.Internals = {
|
|
|
126
127
|
truthy: truthy_1.truthy,
|
|
127
128
|
isAudioCodec: is_audio_codec_1.isAudioCodec,
|
|
128
129
|
Logging,
|
|
129
|
-
SequenceContext:
|
|
130
|
+
SequenceContext: Sequence_1.SequenceContext,
|
|
130
131
|
useRemotionContexts: wrap_remotion_context_1.useRemotionContexts,
|
|
131
132
|
RemotionContextProvider: wrap_remotion_context_1.RemotionContextProvider,
|
|
132
133
|
CSSUtils,
|
|
@@ -168,7 +169,8 @@ exports.Internals = {
|
|
|
168
169
|
getPreviewDomElement: get_preview_dom_element_1.getPreviewDomElement,
|
|
169
170
|
compositionsRef: CompositionManager_1.compositionsRef,
|
|
170
171
|
DELAY_RENDER_CALLSTACK_TOKEN: delay_render_1.DELAY_RENDER_CALLSTACK_TOKEN,
|
|
171
|
-
useAbsoluteCurrentFrame:
|
|
172
|
+
useAbsoluteCurrentFrame: use_current_frame_1.useAbsoluteCurrentFrame,
|
|
172
173
|
portalNode: portal_node_1.portalNode,
|
|
173
174
|
waitForRoot: register_root_1.waitForRoot,
|
|
175
|
+
validateOffthreadVideoImageFormat: validate_offthreadvideo_image_format_1.validateOffthreadVideoImageFormat,
|
|
174
176
|
};
|