@remotion/studio 4.0.374 → 4.0.376
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/Studio.js +3 -3
- package/dist/components/Modals.js +5 -2
- package/dist/components/QuickSwitcher/fuzzy-search.js +0 -1
- package/dist/components/RenderButton.js +1 -1
- package/dist/components/RenderModal/RenderModalAdvanced.js +2 -2
- package/dist/components/RenderModal/{RenderModal.js → ServerRenderModal.js} +5 -62
- package/dist/components/RenderModal/WebRenderModal.d.ts +3 -0
- package/dist/components/RenderModal/WebRenderModal.js +351 -0
- package/dist/components/RenderModal/WebRenderModalAdvanced.d.ts +13 -0
- package/dist/components/RenderModal/WebRenderModalAdvanced.js +75 -0
- package/dist/components/RenderModal/WebRenderModalBasic.d.ts +29 -0
- package/dist/components/RenderModal/WebRenderModalBasic.js +133 -0
- package/dist/components/RenderModal/WebRenderModalPicture.d.ts +14 -0
- package/dist/components/RenderModal/WebRenderModalPicture.js +82 -0
- package/dist/components/RenderModal/layout.js +1 -1
- package/dist/components/RenderModal/render-modals.d.ts +11 -0
- package/dist/components/RenderModal/render-modals.js +63 -0
- package/dist/components/SidebarRenderButton.js +1 -1
- package/dist/components/WebRender/TriggerWebRender.d.ts +1 -1
- package/dist/components/WebRender/TriggerWebRender.js +20 -21
- package/dist/esm/{chunk-1bd2r4wv.js → chunk-fbkf30v3.js} +10733 -2061
- package/dist/esm/internals.mjs +10800 -2116
- package/dist/esm/previewEntry.mjs +10995 -2311
- package/dist/esm/renderEntry.mjs +19 -12
- package/dist/helpers/retry-payload.js +3 -3
- package/dist/renderEntry.js +5 -4
- package/dist/state/modals.d.ts +8 -2
- package/package.json +10 -10
- package/dist/esm/chunk-df4kyjv3.js +0 -42509
- package/dist/esm/chunk-dx9vebsw.js +0 -42509
- /package/dist/components/RenderModal/{RenderModal.d.ts → ServerRenderModal.d.ts} +0 -0
package/dist/Studio.js
CHANGED
|
@@ -17,8 +17,8 @@ const Studio = ({ rootComponent, readOnly }) => {
|
|
|
17
17
|
(0, react_1.useLayoutEffect)(() => {
|
|
18
18
|
(0, inject_css_1.injectCSS)();
|
|
19
19
|
}, []);
|
|
20
|
-
return ((0, jsx_runtime_1.jsx)(remotion_1.Internals.CompositionManagerProvider, { onlyRenderComposition: null, currentCompositionMetadata: null, initialCompositions: [], initialCanvasContent: null, children: (0, jsx_runtime_1.jsx)(remotion_1.Internals.
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
return ((0, jsx_runtime_1.jsx)(remotion_1.Internals.CompositionManagerProvider, { onlyRenderComposition: null, currentCompositionMetadata: null, initialCompositions: [], initialCanvasContent: null, children: (0, jsx_runtime_1.jsx)(remotion_1.Internals.RemotionRootContexts, { frameState: null, audioEnabled: window.remotion_audioEnabled, videoEnabled: window.remotion_videoEnabled, logLevel: window.remotion_logLevel, numberOfAudioTags: window.remotion_numberOfAudioTags, audioLatencyHint: (_a = window.remotion_audioLatencyHint) !== null && _a !== void 0 ? _a : 'interactive', children: (0, jsx_runtime_1.jsx)(remotion_1.Internals.ResolveCompositionConfigInStudio, { children: (0, jsx_runtime_1.jsxs)(EditorContexts_1.EditorContexts, { readOnlyStudio: readOnly, children: [(0, jsx_runtime_1.jsx)(Editor_1.Editor, { readOnlyStudio: readOnly, Root: rootComponent }), readOnly
|
|
21
|
+
? null
|
|
22
|
+
: (0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(ServerDisconnected_1.ServerDisconnected, {}), getServerDisconnectedDomElement())] }) }) }) }));
|
|
23
23
|
};
|
|
24
24
|
exports.Studio = Studio;
|
|
@@ -15,14 +15,17 @@ const DuplicateComposition_1 = require("./NewComposition/DuplicateComposition");
|
|
|
15
15
|
const RenameComposition_1 = require("./NewComposition/RenameComposition");
|
|
16
16
|
const OverrideInputProps_1 = require("./OverrideInputProps");
|
|
17
17
|
const QuickSwitcher_1 = __importDefault(require("./QuickSwitcher/QuickSwitcher"));
|
|
18
|
-
const RenderModal_1 = require("./RenderModal/RenderModal");
|
|
19
18
|
const RenderStatusModal_1 = require("./RenderModal/RenderStatusModal");
|
|
19
|
+
const ServerRenderModal_1 = require("./RenderModal/ServerRenderModal");
|
|
20
|
+
const WebRenderModal_1 = require("./RenderModal/WebRenderModal");
|
|
20
21
|
const UpdateModal_1 = require("./UpdateModal/UpdateModal");
|
|
21
22
|
const Modals = ({ readOnlyStudio }) => {
|
|
22
23
|
const { selectedModal: modalContextType } = (0, react_1.useContext)(modals_1.ModalsContext);
|
|
23
24
|
const canRender = (0, react_1.useContext)(client_id_1.StudioServerConnectionCtx).previewServerState.type ===
|
|
24
25
|
'connected';
|
|
25
|
-
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [modalContextType && modalContextType.type === 'duplicate-comp' && ((0, jsx_runtime_1.jsx)(DuplicateComposition_1.DuplicateComposition, { compositionType: modalContextType.compositionType, compositionId: modalContextType.compositionId })), modalContextType && modalContextType.type === 'delete-comp' && ((0, jsx_runtime_1.jsx)(DeleteComposition_1.DeleteComposition, { compositionId: modalContextType.compositionId })), modalContextType && modalContextType.type === 'rename-comp' && ((0, jsx_runtime_1.jsx)(RenameComposition_1.RenameComposition, { compositionId: modalContextType.compositionId })), modalContextType && modalContextType.type === 'input-props-override' && ((0, jsx_runtime_1.jsx)(OverrideInputProps_1.OverrideInputPropsModal, {})), modalContextType &&
|
|
26
|
+
return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [modalContextType && modalContextType.type === 'duplicate-comp' && ((0, jsx_runtime_1.jsx)(DuplicateComposition_1.DuplicateComposition, { compositionType: modalContextType.compositionType, compositionId: modalContextType.compositionId })), modalContextType && modalContextType.type === 'delete-comp' && ((0, jsx_runtime_1.jsx)(DeleteComposition_1.DeleteComposition, { compositionId: modalContextType.compositionId })), modalContextType && modalContextType.type === 'rename-comp' && ((0, jsx_runtime_1.jsx)(RenameComposition_1.RenameComposition, { compositionId: modalContextType.compositionId })), modalContextType && modalContextType.type === 'input-props-override' && ((0, jsx_runtime_1.jsx)(OverrideInputProps_1.OverrideInputPropsModal, {})), modalContextType && modalContextType.type === 'web-render' && ((0, jsx_runtime_1.jsx)(WebRenderModal_1.WebRenderModalWithLoader, { type: "web-render", initialFrame: modalContextType.initialFrame, compositionId: modalContextType.compositionId, defaultProps: modalContextType.defaultProps })), modalContextType &&
|
|
27
|
+
canRender &&
|
|
28
|
+
modalContextType.type === 'server-render' && ((0, jsx_runtime_1.jsx)(ServerRenderModal_1.RenderModalWithLoader, { initialFrame: modalContextType.initialFrame, compositionId: modalContextType.compositionId, initialVideoImageFormat: modalContextType.initialVideoImageFormat, initialJpegQuality: modalContextType.initialJpegQuality, initialScale: modalContextType.initialScale, initialLogLevel: modalContextType.initialLogLevel, initialOffthreadVideoCacheSizeInBytes: modalContextType.initialOffthreadVideoCacheSizeInBytes, initialOffthreadVideoThreads: modalContextType.initialOffthreadVideoThreads, initialMediaCacheSizeInBytes: modalContextType.initialMediaCacheSizeInBytes, initialConcurrency: modalContextType.initialConcurrency, maxConcurrency: modalContextType.maxConcurrency, minConcurrency: modalContextType.minConcurrency, initialStillImageFormat: modalContextType.initialStillImageFormat, initialMuted: modalContextType.initialMuted, initialEnforceAudioTrack: modalContextType.initialEnforceAudioTrack, initialProResProfile: modalContextType.initialProResProfile, initialx264Preset: modalContextType.initialx264Preset, initialPixelFormat: modalContextType.initialPixelFormat, initialAudioBitrate: modalContextType.initialAudioBitrate, initialVideoBitrate: modalContextType.initialVideoBitrate, initialEveryNthFrame: modalContextType.initialEveryNthFrame, initialNumberOfGifLoops: modalContextType.initialNumberOfGifLoops, initialDelayRenderTimeout: modalContextType.initialDelayRenderTimeout, initialEnvVariables: modalContextType.initialEnvVariables, initialDisableWebSecurity: modalContextType.initialDisableWebSecurity, initialGl: modalContextType.initialOpenGlRenderer, initialHeadless: modalContextType.initialHeadless, initialIgnoreCertificateErrors: modalContextType.initialIgnoreCertificateErrors, initialEncodingBufferSize: modalContextType.initialEncodingBufferSize, initialEncodingMaxRate: modalContextType.initialEncodingMaxRate, initialUserAgent: modalContextType.initialUserAgent, initialColorSpace: modalContextType.initialColorSpace, initialMultiProcessOnLinux: modalContextType.initialMultiProcessOnLinux, initialRepro: modalContextType.initialRepro, initialBeep: modalContextType.initialBeep, initialForSeamlessAacConcatenation: modalContextType.initialForSeamlessAacConcatenation, defaultProps: modalContextType.defaultProps, inFrameMark: modalContextType.inFrameMark, outFrameMark: modalContextType.outFrameMark, defaultConfigurationAudioCodec: modalContextType.defaultConfigurationAudioCodec, defaultConfigurationVideoCodec: modalContextType.defaultConfigurationVideoCodec, renderTypeOfLastRender: modalContextType.renderTypeOfLastRender, defaultMetadata: modalContextType.defaulMetadata, initialHardwareAcceleration: modalContextType.initialHardwareAcceleration, initialChromeMode: modalContextType.initialChromeMode, renderDefaults: modalContextType.renderDefaults })), modalContextType &&
|
|
26
29
|
canRender &&
|
|
27
30
|
modalContextType.type === 'render-progress' && ((0, jsx_runtime_1.jsx)(RenderStatusModal_1.RenderStatusModal, { jobId: modalContextType.jobId })), modalContextType && modalContextType.type === 'update' && ((0, jsx_runtime_1.jsx)(UpdateModal_1.UpdateModal, { info: modalContextType.info, knownBugs: modalContextType.knownBugs })), modalContextType && modalContextType.type === 'install-packages' && ((0, jsx_runtime_1.jsx)(InstallPackage_1.InstallPackageModal, { packageManager: modalContextType.packageManager })), modalContextType && modalContextType.type === 'quick-switcher' && ((0, jsx_runtime_1.jsx)(QuickSwitcher_1.default, { readOnlyStudio: readOnlyStudio, invocationTimestamp: modalContextType.invocationTimestamp, initialMode: modalContextType.mode })), (0, jsx_runtime_1.jsx)(AskAiModal_1.AskAiModal, {})] }));
|
|
28
31
|
};
|
|
@@ -51,7 +51,7 @@ const RenderButton = () => {
|
|
|
51
51
|
throw new TypeError('Expected defaults');
|
|
52
52
|
}
|
|
53
53
|
setSelectedModal({
|
|
54
|
-
type: 'render',
|
|
54
|
+
type: 'server-render',
|
|
55
55
|
compositionId: video.id,
|
|
56
56
|
initialFrame: getCurrentFrame(),
|
|
57
57
|
initialStillImageFormat: defaults.stillImageFormat,
|
|
@@ -188,7 +188,7 @@ const RenderModalAdvanced = ({ renderMode, maxConcurrency, minConcurrency, setCo
|
|
|
188
188
|
// Also appears in packages/renderer/src/validate-puppeteer-timeout.ts
|
|
189
189
|
, {
|
|
190
190
|
// Also appears in packages/renderer/src/validate-puppeteer-timeout.ts
|
|
191
|
-
min: 7000, max: 900000, name: "delayRender() timeout", onValueChanged: setDelayRenderTimeout, formatter: (w) => `${w}ms`, step: 1000, hint: "delayRenderTimeoutInMillisecondsOption", value: delayRenderTimeout }), (0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsx)("div", { style: layout_2.label, children: "No parallel encoding" }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(Checkbox_1.Checkbox, { checked: disallowParallelEncoding, onChange: onDisallowParallelEncodingChanged, name: "disallow-parallel-encoding" }) })] }), renderMode === 'audio' ? null : ((0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.
|
|
192
|
-
offthreadVideoCacheSizeInBytes === null ? null : ((0, jsx_runtime_1.jsx)(NumberSetting_1.NumberSetting, { min: 0, max: 2000 * 1024 * 1024, step: 1024, name: "OffthreadVideo cache size", formatter: (w) => `${w} bytes`, onValueChanged: changeOffthreadVideoCacheSizeInBytes, value: offthreadVideoCacheSizeInBytes })), renderMode === 'audio' ? null : ((0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.
|
|
191
|
+
min: 7000, max: 900000, name: "delayRender() timeout", onValueChanged: setDelayRenderTimeout, formatter: (w) => `${w}ms`, step: 1000, hint: "delayRenderTimeoutInMillisecondsOption", value: delayRenderTimeout }), (0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsx)("div", { style: layout_2.label, children: "No parallel encoding" }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(Checkbox_1.Checkbox, { checked: disallowParallelEncoding, onChange: onDisallowParallelEncodingChanged, name: "disallow-parallel-encoding" }) })] }), renderMode === 'audio' ? null : ((0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsxs)("div", { style: layout_2.label, children: ["Custom @remotion/media cache size", (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.5 }), (0, jsx_runtime_1.jsx)(OptionExplainerBubble_1.OptionExplainerBubble, { id: "mediaCacheSizeInBytesOption" })] }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(Checkbox_1.Checkbox, { checked: mediaCacheSizeInBytes !== null, onChange: toggleCustomMediaCacheSizeInBytes, name: "media-cache-size" }) })] })), renderMode === 'audio' || mediaCacheSizeInBytes === null ? null : ((0, jsx_runtime_1.jsx)(NumberSetting_1.NumberSetting, { min: 0, max: 2000 * 1024 * 1024, step: 1024, name: "@remotion/media cache size", formatter: (w) => `${w} bytes`, onValueChanged: changeMediaCacheSizeInBytes, value: mediaCacheSizeInBytes })), renderMode === 'audio' ? null : ((0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsxs)("div", { style: layout_2.label, children: ["Custom OffthreadVideo cache", (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.5 }), (0, jsx_runtime_1.jsx)(OptionExplainerBubble_1.OptionExplainerBubble, { id: "offthreadVideoCacheSizeInBytesOption" })] }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(Checkbox_1.Checkbox, { checked: offthreadVideoCacheSizeInBytes !== null, onChange: toggleCustomOffthreadVideoCacheSizeInBytes, name: "custom-audio-bitrate" }) })] })), renderMode === 'audio' ||
|
|
192
|
+
offthreadVideoCacheSizeInBytes === null ? null : ((0, jsx_runtime_1.jsx)(NumberSetting_1.NumberSetting, { min: 0, max: 2000 * 1024 * 1024, step: 1024, name: "OffthreadVideo cache size", formatter: (w) => `${w} bytes`, onValueChanged: changeOffthreadVideoCacheSizeInBytes, value: offthreadVideoCacheSizeInBytes })), renderMode === 'audio' ? null : ((0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsxs)("div", { style: layout_2.label, children: ["OffthreadVideo threads ", (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.5 }), (0, jsx_runtime_1.jsx)(OptionExplainerBubble_1.OptionExplainerBubble, { id: "offthreadVideoThreadsOption" })] }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(Checkbox_1.Checkbox, { checked: offthreadVideoThreads !== null, onChange: toggleCustomOffthreadVideoThreads, name: "offthread-video-threads" }) })] })), renderMode === 'audio' || offthreadVideoThreads === null ? null : ((0, jsx_runtime_1.jsx)(NumberSetting_1.NumberSetting, { min: 0, max: 16, step: 1, name: "OffthreadVideo threads", formatter: (w) => `${w}x`, onValueChanged: changeOffthreadVideoThreads, value: offthreadVideoThreads })), (0, jsx_runtime_1.jsx)(RenderModalHr_1.RenderModalHr, {}), (0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsx)("div", { style: layout_2.label, children: "Disable web security" }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(Checkbox_1.Checkbox, { checked: disableWebSecurity, onChange: onDisableWebSecurityChanged, name: "disable-web-security" }) })] }), (0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsx)("div", { style: layout_2.label, children: "Ignore certificate errors" }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(Checkbox_1.Checkbox, { checked: ignoreCertificateErrors, onChange: onIgnoreCertificatErrors, name: "ignore-certificate-errors" }) })] }), (0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsxs)("div", { style: layout_2.label, children: ["Headless mode", (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.5 }), (0, jsx_runtime_1.jsx)(OptionExplainerBubble_1.OptionExplainerBubble, { id: "headlessOption" })] }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(Checkbox_1.Checkbox, { checked: headless, onChange: onHeadless, name: "headless" }) })] }), (0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsxs)("div", { style: layout_2.label, children: ["Chrome Mode ", (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.5 }), (0, jsx_runtime_1.jsx)(OptionExplainerBubble_1.OptionExplainerBubble, { id: "chromeModeOption" })] }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(ComboBox_1.Combobox, { values: chromeModeOptions, selectedId: chromeModeOption, title: "Chrome mode" }) })] }), (0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsxs)("div", { style: layout_2.label, children: ["OpenGL render backend ", (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.5 }), (0, jsx_runtime_1.jsx)(OptionExplainerBubble_1.OptionExplainerBubble, { id: "glOption" })] }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(ComboBox_1.Combobox, { values: openGlOptions, selectedId: openGlOption, title: "OpenGl option" }) })] }), (0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsxs)("div", { style: layout_2.label, children: ["Multi-process Chrome on Linux", (0, jsx_runtime_1.jsx)(layout_1.Spacing, { x: 0.5 }), (0, jsx_runtime_1.jsx)(OptionExplainerBubble_1.OptionExplainerBubble, { id: "enableMultiprocessOnLinuxOption" })] }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(Checkbox_1.Checkbox, { checked: enableMultiProcessOnLinux, onChange: onEnableMultiProcessOnLinux, name: "enable-multi-process-on-linux" }) })] }), (0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsx)("div", { style: layout_2.label, children: "Custom User Agent" }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(Checkbox_1.Checkbox, { checked: userAgent !== null, onChange: toggleCustomUserAgent, name: "custom-user-agent" }) })] }), userAgent === null ? null : ((0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsx)("div", { style: layout_2.label, children: "User Agent" }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)("div", { children: (0, jsx_runtime_1.jsx)(RemInput_1.RemotionInput, { style: layout_2.input, value: userAgent, onChange: onUserAgentChanged, status: "ok", rightAlign: true }) }) })] })), (0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsxs)("div", { style: layout_2.label, children: ["Create a reproduction ", (0, jsx_runtime_1.jsx)(OptionExplainerBubble_1.OptionExplainerBubble, { id: "reproOption" })] }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(Checkbox_1.Checkbox, { checked: repro, onChange: onReproToggle, name: "repro" }) })] }), (0, jsx_runtime_1.jsxs)("div", { style: layout_2.optionRow, children: [(0, jsx_runtime_1.jsxs)("div", { style: layout_2.label, children: ["Beep when finished ", (0, jsx_runtime_1.jsx)(OptionExplainerBubble_1.OptionExplainerBubble, { id: "beepOnFinishOption" })] }), (0, jsx_runtime_1.jsx)("div", { style: layout_2.rightRow, children: (0, jsx_runtime_1.jsx)(Checkbox_1.Checkbox, { checked: beep, onChange: onPlayBeepSound, name: "beep-when-finished" }) })] }), (0, jsx_runtime_1.jsx)(RenderModalHr_1.RenderModalHr, {}), (0, jsx_runtime_1.jsx)(RenderModalEnvironmentVariables_1.RenderModalEnvironmentVariables, { envVariables: envVariables, setEnvVariables: setEnvVariables })] }));
|
|
193
193
|
};
|
|
194
194
|
exports.RenderModalAdvanced = RenderModalAdvanced;
|
|
@@ -21,7 +21,6 @@ const modals_1 = require("../../state/modals");
|
|
|
21
21
|
const sidebar_1 = require("../../state/sidebar");
|
|
22
22
|
const Button_1 = require("../Button");
|
|
23
23
|
const is_menu_item_1 = require("../Menu/is-menu-item");
|
|
24
|
-
const ModalContainer_1 = require("../ModalContainer");
|
|
25
24
|
const ModalHeader_1 = require("../ModalHeader");
|
|
26
25
|
const DismissableModal_1 = require("../NewComposition/DismissableModal");
|
|
27
26
|
const OptionsPanel_1 = require("../OptionsPanel");
|
|
@@ -39,6 +38,7 @@ const ResolveCompositionBeforeModal_1 = require("./ResolveCompositionBeforeModal
|
|
|
39
38
|
const get_default_codecs_1 = require("./get-default-codecs");
|
|
40
39
|
const get_string_before_suffix_1 = require("./get-string-before-suffix");
|
|
41
40
|
const out_name_checker_1 = require("./out-name-checker");
|
|
41
|
+
const render_modals_1 = require("./render-modals");
|
|
42
42
|
const initialState = { type: 'idle' };
|
|
43
43
|
const reducer = (state, action) => {
|
|
44
44
|
if (action.type === 'start') {
|
|
@@ -58,64 +58,6 @@ const reducer = (state, action) => {
|
|
|
58
58
|
}
|
|
59
59
|
return state;
|
|
60
60
|
};
|
|
61
|
-
const container = {
|
|
62
|
-
display: 'flex',
|
|
63
|
-
flexDirection: 'row',
|
|
64
|
-
alignItems: 'center',
|
|
65
|
-
padding: '12px 16px',
|
|
66
|
-
borderBottom: '1px solid black',
|
|
67
|
-
};
|
|
68
|
-
const optionsPanel = {
|
|
69
|
-
display: 'flex',
|
|
70
|
-
width: '100%',
|
|
71
|
-
};
|
|
72
|
-
const horizontalLayout = {
|
|
73
|
-
display: 'flex',
|
|
74
|
-
flexDirection: 'row',
|
|
75
|
-
overflowY: 'auto',
|
|
76
|
-
flex: 1,
|
|
77
|
-
};
|
|
78
|
-
const leftSidebar = {
|
|
79
|
-
padding: 12,
|
|
80
|
-
};
|
|
81
|
-
const horizontalTab = {
|
|
82
|
-
width: 250,
|
|
83
|
-
display: 'flex',
|
|
84
|
-
flexDirection: 'row',
|
|
85
|
-
alignItems: 'center',
|
|
86
|
-
textAlign: 'left',
|
|
87
|
-
fontSize: 16,
|
|
88
|
-
fontWeight: 'bold',
|
|
89
|
-
paddingLeft: 15,
|
|
90
|
-
paddingTop: 12,
|
|
91
|
-
paddingBottom: 12,
|
|
92
|
-
};
|
|
93
|
-
const iconContainer = {
|
|
94
|
-
width: 20,
|
|
95
|
-
height: 20,
|
|
96
|
-
marginRight: 15,
|
|
97
|
-
display: 'inline-flex',
|
|
98
|
-
justifyContent: 'center',
|
|
99
|
-
alignItems: 'center',
|
|
100
|
-
};
|
|
101
|
-
const icon = {
|
|
102
|
-
color: 'currentcolor',
|
|
103
|
-
height: 20,
|
|
104
|
-
};
|
|
105
|
-
const buttonStyle = {
|
|
106
|
-
backgroundColor: colors_1.BLUE,
|
|
107
|
-
color: 'white',
|
|
108
|
-
};
|
|
109
|
-
const flexer = {
|
|
110
|
-
flex: 1,
|
|
111
|
-
};
|
|
112
|
-
const outer = {
|
|
113
|
-
width: (0, ModalContainer_1.getMaxModalWidth)(1000),
|
|
114
|
-
height: (0, ModalContainer_1.getMaxModalHeight)(640),
|
|
115
|
-
overflow: 'hidden',
|
|
116
|
-
display: 'flex',
|
|
117
|
-
flexDirection: 'column',
|
|
118
|
-
};
|
|
119
61
|
const RenderModal = ({ initialFrame, initialVideoImageFormat, initialStillImageFormat, initialJpegQuality, initialScale, initialLogLevel, initialConcurrency, maxConcurrency, minConcurrency, initialMuted, initialEnforceAudioTrack, initialProResProfile, initialx264Preset, initialPixelFormat, initialVideoBitrate, initialAudioBitrate, initialEveryNthFrame, initialNumberOfGifLoops, initialDelayRenderTimeout, initialOffthreadVideoCacheSizeInBytes, initialEnvVariables, initialDisableWebSecurity, initialGl, initialHeadless, initialIgnoreCertificateErrors, initialEncodingBufferSize, initialEncodingMaxRate, initialOffthreadVideoThreads, initialMediaCacheSizeInBytes, initialUserAgent, defaultProps, inFrameMark, outFrameMark, initialColorSpace, initialMultiProcessOnLinux, defaultConfigurationAudioCodec, defaultConfigurationVideoCodec, initialBeep, initialRepro, initialForSeamlessAacConcatenation, renderTypeOfLastRender, initialHardwareAcceleration, defaultMetadata, initialChromeMode, renderDefaults, }) => {
|
|
120
62
|
const { setSelectedModal } = (0, react_1.useContext)(modals_1.ModalsContext);
|
|
121
63
|
const context = (0, react_1.useContext)(ResolveCompositionBeforeModal_1.ResolvedCompositionContext);
|
|
@@ -161,6 +103,7 @@ const RenderModal = ({ initialFrame, initialVideoImageFormat, initialStillImageF
|
|
|
161
103
|
: initialStillImageFormat,
|
|
162
104
|
type: 'asset',
|
|
163
105
|
compositionDefaultOutName: resolvedComposition.defaultOutName,
|
|
106
|
+
clientSideRender: false,
|
|
164
107
|
});
|
|
165
108
|
});
|
|
166
109
|
const [videoCodecForAudioTab, setVideoCodecForAudioTab] = (0, react_1.useState)(() => initialVideoCodecForAudioTab);
|
|
@@ -835,10 +778,10 @@ const RenderModal = ({ initialFrame, initialVideoImageFormat, initialStillImageF
|
|
|
835
778
|
};
|
|
836
779
|
});
|
|
837
780
|
}, [availablePixelFormats, pixelFormat]);
|
|
838
|
-
return ((0, jsx_runtime_1.jsxs)("div", { style:
|
|
839
|
-
...buttonStyle,
|
|
781
|
+
return ((0, jsx_runtime_1.jsxs)("div", { style: render_modals_1.outerModalStyle, children: [(0, jsx_runtime_1.jsx)(ModalHeader_1.ModalHeader, { title: `Render ${resolvedComposition.id}` }), (0, jsx_runtime_1.jsxs)("div", { style: render_modals_1.container, children: [(0, jsx_runtime_1.jsx)(SegmentedControl_1.SegmentedControl, { items: renderTabOptions, needsWrapping: false }), (0, jsx_runtime_1.jsx)("div", { style: render_modals_1.flexer }), (0, jsx_runtime_1.jsxs)(Button_1.Button, { autoFocus: true, onClick: trigger, disabled: renderDisabled, style: {
|
|
782
|
+
...render_modals_1.buttonStyle,
|
|
840
783
|
backgroundColor: outnameValidation.valid ? colors_1.BLUE : colors_1.BLUE_DISABLED,
|
|
841
|
-
}, children: [state.type === 'idle' ? `Render ${renderMode}` : 'Rendering...', (0, jsx_runtime_1.jsx)(ShortcutHint_1.ShortcutHint, { keyToPress: "\u21B5", cmdOrCtrl: true })] })] }), (0, jsx_runtime_1.jsxs)("div", { style: horizontalLayout, children: [(0, jsx_runtime_1.jsxs)("div", { style: leftSidebar, children: [shownTabs.includes('general') ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: horizontalTab, selected: tab === 'general', onClick: () => setTab('general'), children: [(0, jsx_runtime_1.jsx)("div", { style: iconContainer, children: (0, jsx_runtime_1.jsx)(file_1.FileIcon, { style: icon }) }), "General"] })) : null, shownTabs.includes('data') ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: horizontalTab, selected: tab === 'data', onClick: () => setTab('data'), children: [(0, jsx_runtime_1.jsx)("div", { style: iconContainer, children: (0, jsx_runtime_1.jsx)(data_1.DataIcon, { style: icon }) }), "Input Props"] })) : null, shownTabs.includes('picture') ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: horizontalTab, selected: tab === 'picture', onClick: () => setTab('picture'), children: [(0, jsx_runtime_1.jsx)("div", { style: iconContainer, children: (0, jsx_runtime_1.jsx)(frame_1.PicIcon, { style: icon }) }), "Picture"] })) : null, shownTabs.includes('audio') ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: horizontalTab, selected: tab === 'audio', onClick: () => setTab('audio'), children: [(0, jsx_runtime_1.jsx)("div", { style: iconContainer, children: (0, jsx_runtime_1.jsx)(audio_1.AudioIcon, { style: icon }) }), "Audio"] })) : null, shownTabs.includes('gif') ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: horizontalTab, selected: tab === 'gif', onClick: () => setTab('gif'), children: [(0, jsx_runtime_1.jsx)("div", { style: iconContainer, children: (0, jsx_runtime_1.jsx)(gif_1.GifIcon, { style: icon }) }), "GIF"] })) : null, shownTabs.includes('advanced') ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: horizontalTab, selected: tab === 'advanced', onClick: () => setTab('advanced'), children: [(0, jsx_runtime_1.jsx)("div", { style: iconContainer, children: (0, jsx_runtime_1.jsx)(gear_1.GearIcon, { style: icon }) }), "Other"] })) : null] }), (0, jsx_runtime_1.jsx)("div", { style: optionsPanel, className: is_menu_item_1.VERTICAL_SCROLLBAR_CLASSNAME, children: tab === 'general' ? ((0, jsx_runtime_1.jsx)(RenderModalBasic_1.RenderModalBasic, { codec: codec, resolvedComposition: resolvedComposition, frame: frame, imageFormatOptions: imageFormatOptions, outName: outName, proResProfile: proResProfile, renderMode: renderMode, setVideoCodec: setCodec, setFrame: setFrame, setOutName: setOutName, setProResProfile: setProResProfile, endFrame: endFrame, setEndFrame: setEndFrame, setStartFrame: setStartFrame, setVerboseLogging: setLogLevel, logLevel: logLevel, startFrame: startFrame, validationMessage: outnameValidation.valid ? null : outnameValidation.error.message })) : tab === 'picture' ? ((0, jsx_runtime_1.jsx)(RenderModalPicture_1.RenderModalPicture, { renderMode: renderMode, scale: scale, setScale: setScale, pixelFormat: pixelFormat, pixelFormatOptions: pixelFormatOptions, imageFormatOptions: imageFormatOptions, crf: crf, setCrf: setCrf, customTargetVideoBitrate: customTargetVideoBitrate, maxCrf: maxCrf, minCrf: minCrf, jpegQuality: jpegQuality, qualityControlType: qualityControlType, setJpegQuality: setJpegQuality, setColorSpace: setColorSpace, colorSpace: colorSpace, setCustomTargetVideoBitrateValue: setCustomTargetVideoBitrateValue, setQualityControl: setQualityControl, videoImageFormat: videoImageFormat, stillImageFormat: stillImageFormat, shouldDisplayQualityControlPicker: supportsBothQualityControls, encodingBufferSize: encodingBufferSize, setEncodingBufferSize: setEncodingBufferSize, encodingMaxRate: encodingMaxRate, setEncodingMaxRate: setEncodingMaxRate, compositionWidth: resolvedComposition.width, compositionHeight: resolvedComposition.height })) : tab === 'audio' ? ((0, jsx_runtime_1.jsx)(RenderModalAudio_1.RenderModalAudio, { muted: muted, renderMode: renderMode, setMuted: setMuted, codec: codec, audioCodec: audioCodec, setAudioCodec: setAudioCodec, enforceAudioTrack: enforceAudioTrack, setEnforceAudioTrackState: setEnforceAudioTrackState, customTargetAudioBitrate: customTargetAudioBitrate, setCustomTargetAudioBitrateValue: setCustomTargetAudioBitrateValue, setShouldHaveCustomTargetAudioBitrate: setShouldHaveCustomTargetAudioBitrate, shouldHaveCustomTargetAudioBitrate: shouldHaveCustomTargetAudioBitrate, forSeamlessAacConcatenation: forSeamlessAacConcatenation, setForSeamlessAacConcatenation: setForSeamlessAacConcatenation, separateAudioTo: separateAudioTo, setSeparateAudioTo: setSeparateAudioTo, outName: outName })) : tab === 'gif' ? ((0, jsx_runtime_1.jsx)(RenderModalGif_1.RenderModalGif, { everyNthFrame: everyNthFrame, limitNumberOfGifLoops: limitNumberOfGifLoops, numberOfGifLoopsSetting: numberOfGifLoopsSetting, setEveryNthFrameSetting: setEveryNthFrameSetting, setLimitNumberOfGifLoops: setLimitNumberOfGifLoops, setNumberOfGifLoopsSetting: setNumberOfGifLoopsSetting })) : tab === 'data' ? ((0, jsx_runtime_1.jsx)(DataEditor_1.DataEditor, { defaultProps: inputProps, setDefaultProps: setInputProps, unresolvedComposition: unresolvedComposition, mayShowSaveButton: false, propsEditType: "input-props", saving: saving, setSaving: setSaving, readOnlyStudio: false })) : ((0, jsx_runtime_1.jsx)(RenderModalAdvanced_1.RenderModalAdvanced, { x264Preset: x264Preset, setx264Preset: setx264Preset, concurrency: concurrency, maxConcurrency: maxConcurrency, minConcurrency: minConcurrency, renderMode: renderMode, setConcurrency: setConcurrency, delayRenderTimeout: delayRenderTimeout, setDelayRenderTimeout: setDelayRenderTimeout, disallowParallelEncoding: disallowParallelEncoding, setDisallowParallelEncoding: setDisallowParallelEncoding, setDisableWebSecurity: setDisableWebSecurity, setIgnoreCertificateErrors: setIgnoreCertificateErrors, setHeadless: setHeadless, headless: headless, ignoreCertificateErrors: ignoreCertificateErrors, disableWebSecurity: disableWebSecurity, openGlOption: openGlOption, setOpenGlOption: setOpenGlOption, setEnvVariables: setEnvVariables, envVariables: envVariables, offthreadVideoCacheSizeInBytes: offthreadVideoCacheSizeInBytes, setMediaCacheSizeInBytes: setMediaCacheSizeInBytes, mediaCacheSizeInBytes: mediaCacheSizeInBytes, setOffthreadVideoCacheSizeInBytes: setOffthreadVideoCacheSizeInBytes, offthreadVideoThreads: offthreadVideoThreads, setOffthreadVideoThreads: setOffthreadVideoThreads, enableMultiProcessOnLinux: multiProcessOnLinux, setChromiumMultiProcessOnLinux: setChromiumMultiProcessOnLinux, codec: codec, userAgent: userAgent, setUserAgent: setUserAgent, setBeep: setBeepOnFinish, beep: beepOnFinish, repro: repro, setRepro: setRepro, hardwareAcceleration: hardwareAcceleration, setHardwareAcceleration: setHardwareAcceleration, chromeModeOption: chromeMode, setChromeModeOption: setChromeMode })) })] })] }));
|
|
784
|
+
}, children: [state.type === 'idle' ? `Render ${renderMode}` : 'Rendering...', (0, jsx_runtime_1.jsx)(ShortcutHint_1.ShortcutHint, { keyToPress: "\u21B5", cmdOrCtrl: true })] })] }), (0, jsx_runtime_1.jsxs)("div", { style: render_modals_1.horizontalLayout, children: [(0, jsx_runtime_1.jsxs)("div", { style: render_modals_1.leftSidebar, children: [shownTabs.includes('general') ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: render_modals_1.horizontalTab, selected: tab === 'general', onClick: () => setTab('general'), children: [(0, jsx_runtime_1.jsx)("div", { style: render_modals_1.iconContainer, children: (0, jsx_runtime_1.jsx)(file_1.FileIcon, { style: render_modals_1.icon }) }), "General"] })) : null, shownTabs.includes('data') ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: render_modals_1.horizontalTab, selected: tab === 'data', onClick: () => setTab('data'), children: [(0, jsx_runtime_1.jsx)("div", { style: render_modals_1.iconContainer, children: (0, jsx_runtime_1.jsx)(data_1.DataIcon, { style: render_modals_1.icon }) }), "Input Props"] })) : null, shownTabs.includes('picture') ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: render_modals_1.horizontalTab, selected: tab === 'picture', onClick: () => setTab('picture'), children: [(0, jsx_runtime_1.jsx)("div", { style: render_modals_1.iconContainer, children: (0, jsx_runtime_1.jsx)(frame_1.PicIcon, { style: render_modals_1.icon }) }), "Picture"] })) : null, shownTabs.includes('audio') ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: render_modals_1.horizontalTab, selected: tab === 'audio', onClick: () => setTab('audio'), children: [(0, jsx_runtime_1.jsx)("div", { style: render_modals_1.iconContainer, children: (0, jsx_runtime_1.jsx)(audio_1.AudioIcon, { style: render_modals_1.icon }) }), "Audio"] })) : null, shownTabs.includes('gif') ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: render_modals_1.horizontalTab, selected: tab === 'gif', onClick: () => setTab('gif'), children: [(0, jsx_runtime_1.jsx)("div", { style: render_modals_1.iconContainer, children: (0, jsx_runtime_1.jsx)(gif_1.GifIcon, { style: render_modals_1.icon }) }), "GIF"] })) : null, shownTabs.includes('advanced') ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: render_modals_1.horizontalTab, selected: tab === 'advanced', onClick: () => setTab('advanced'), children: [(0, jsx_runtime_1.jsx)("div", { style: render_modals_1.iconContainer, children: (0, jsx_runtime_1.jsx)(gear_1.GearIcon, { style: render_modals_1.icon }) }), "Other"] })) : null] }), (0, jsx_runtime_1.jsx)("div", { style: render_modals_1.optionsPanel, className: is_menu_item_1.VERTICAL_SCROLLBAR_CLASSNAME, children: tab === 'general' ? ((0, jsx_runtime_1.jsx)(RenderModalBasic_1.RenderModalBasic, { codec: codec, resolvedComposition: resolvedComposition, frame: frame, imageFormatOptions: imageFormatOptions, outName: outName, proResProfile: proResProfile, renderMode: renderMode, setVideoCodec: setCodec, setFrame: setFrame, setOutName: setOutName, setProResProfile: setProResProfile, endFrame: endFrame, setEndFrame: setEndFrame, setStartFrame: setStartFrame, setVerboseLogging: setLogLevel, logLevel: logLevel, startFrame: startFrame, validationMessage: outnameValidation.valid ? null : outnameValidation.error.message })) : tab === 'picture' ? ((0, jsx_runtime_1.jsx)(RenderModalPicture_1.RenderModalPicture, { renderMode: renderMode, scale: scale, setScale: setScale, pixelFormat: pixelFormat, pixelFormatOptions: pixelFormatOptions, imageFormatOptions: imageFormatOptions, crf: crf, setCrf: setCrf, customTargetVideoBitrate: customTargetVideoBitrate, maxCrf: maxCrf, minCrf: minCrf, jpegQuality: jpegQuality, qualityControlType: qualityControlType, setJpegQuality: setJpegQuality, setColorSpace: setColorSpace, colorSpace: colorSpace, setCustomTargetVideoBitrateValue: setCustomTargetVideoBitrateValue, setQualityControl: setQualityControl, videoImageFormat: videoImageFormat, stillImageFormat: stillImageFormat, shouldDisplayQualityControlPicker: supportsBothQualityControls, encodingBufferSize: encodingBufferSize, setEncodingBufferSize: setEncodingBufferSize, encodingMaxRate: encodingMaxRate, setEncodingMaxRate: setEncodingMaxRate, compositionWidth: resolvedComposition.width, compositionHeight: resolvedComposition.height })) : tab === 'audio' ? ((0, jsx_runtime_1.jsx)(RenderModalAudio_1.RenderModalAudio, { muted: muted, renderMode: renderMode, setMuted: setMuted, codec: codec, audioCodec: audioCodec, setAudioCodec: setAudioCodec, enforceAudioTrack: enforceAudioTrack, setEnforceAudioTrackState: setEnforceAudioTrackState, customTargetAudioBitrate: customTargetAudioBitrate, setCustomTargetAudioBitrateValue: setCustomTargetAudioBitrateValue, setShouldHaveCustomTargetAudioBitrate: setShouldHaveCustomTargetAudioBitrate, shouldHaveCustomTargetAudioBitrate: shouldHaveCustomTargetAudioBitrate, forSeamlessAacConcatenation: forSeamlessAacConcatenation, setForSeamlessAacConcatenation: setForSeamlessAacConcatenation, separateAudioTo: separateAudioTo, setSeparateAudioTo: setSeparateAudioTo, outName: outName })) : tab === 'gif' ? ((0, jsx_runtime_1.jsx)(RenderModalGif_1.RenderModalGif, { everyNthFrame: everyNthFrame, limitNumberOfGifLoops: limitNumberOfGifLoops, numberOfGifLoopsSetting: numberOfGifLoopsSetting, setEveryNthFrameSetting: setEveryNthFrameSetting, setLimitNumberOfGifLoops: setLimitNumberOfGifLoops, setNumberOfGifLoopsSetting: setNumberOfGifLoopsSetting })) : tab === 'data' ? ((0, jsx_runtime_1.jsx)(DataEditor_1.DataEditor, { defaultProps: inputProps, setDefaultProps: setInputProps, unresolvedComposition: unresolvedComposition, mayShowSaveButton: false, propsEditType: "input-props", saving: saving, setSaving: setSaving, readOnlyStudio: false })) : ((0, jsx_runtime_1.jsx)(RenderModalAdvanced_1.RenderModalAdvanced, { x264Preset: x264Preset, setx264Preset: setx264Preset, concurrency: concurrency, maxConcurrency: maxConcurrency, minConcurrency: minConcurrency, renderMode: renderMode, setConcurrency: setConcurrency, delayRenderTimeout: delayRenderTimeout, setDelayRenderTimeout: setDelayRenderTimeout, disallowParallelEncoding: disallowParallelEncoding, setDisallowParallelEncoding: setDisallowParallelEncoding, setDisableWebSecurity: setDisableWebSecurity, setIgnoreCertificateErrors: setIgnoreCertificateErrors, setHeadless: setHeadless, headless: headless, ignoreCertificateErrors: ignoreCertificateErrors, disableWebSecurity: disableWebSecurity, openGlOption: openGlOption, setOpenGlOption: setOpenGlOption, setEnvVariables: setEnvVariables, envVariables: envVariables, offthreadVideoCacheSizeInBytes: offthreadVideoCacheSizeInBytes, setMediaCacheSizeInBytes: setMediaCacheSizeInBytes, mediaCacheSizeInBytes: mediaCacheSizeInBytes, setOffthreadVideoCacheSizeInBytes: setOffthreadVideoCacheSizeInBytes, offthreadVideoThreads: offthreadVideoThreads, setOffthreadVideoThreads: setOffthreadVideoThreads, enableMultiProcessOnLinux: multiProcessOnLinux, setChromiumMultiProcessOnLinux: setChromiumMultiProcessOnLinux, codec: codec, userAgent: userAgent, setUserAgent: setUserAgent, setBeep: setBeepOnFinish, beep: beepOnFinish, repro: repro, setRepro: setRepro, hardwareAcceleration: hardwareAcceleration, setHardwareAcceleration: setHardwareAcceleration, chromeModeOption: chromeMode, setChromeModeOption: setChromeMode })) })] })] }));
|
|
842
785
|
};
|
|
843
786
|
const RenderModalWithLoader = (props) => {
|
|
844
787
|
return ((0, jsx_runtime_1.jsx)(DismissableModal_1.DismissableModal, { children: (0, jsx_runtime_1.jsx)(ResolveCompositionBeforeModal_1.ResolveCompositionBeforeModal, { compositionId: props.compositionId, children: (0, jsx_runtime_1.jsx)(RenderModal, { ...props }) }) }));
|
|
@@ -0,0 +1,351 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WebRenderModalWithLoader = void 0;
|
|
4
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
5
|
+
const studio_shared_1 = require("@remotion/studio-shared");
|
|
6
|
+
const web_renderer_1 = require("@remotion/web-renderer");
|
|
7
|
+
const react_1 = require("react");
|
|
8
|
+
const ShortcutHint_1 = require("../../error-overlay/remotion-overlay/ShortcutHint");
|
|
9
|
+
const data_1 = require("../../icons/data");
|
|
10
|
+
const file_1 = require("../../icons/file");
|
|
11
|
+
const frame_1 = require("../../icons/frame");
|
|
12
|
+
const Button_1 = require("../Button");
|
|
13
|
+
const is_menu_item_1 = require("../Menu/is-menu-item");
|
|
14
|
+
const ModalHeader_1 = require("../ModalHeader");
|
|
15
|
+
const DismissableModal_1 = require("../NewComposition/DismissableModal");
|
|
16
|
+
const SegmentedControl_1 = require("../SegmentedControl");
|
|
17
|
+
const vertical_1 = require("../Tabs/vertical");
|
|
18
|
+
const DataEditor_1 = require("./DataEditor");
|
|
19
|
+
const get_string_before_suffix_1 = require("./get-string-before-suffix");
|
|
20
|
+
const render_modals_1 = require("./render-modals");
|
|
21
|
+
const ResolveCompositionBeforeModal_1 = require("./ResolveCompositionBeforeModal");
|
|
22
|
+
const WebRenderModalAdvanced_1 = require("./WebRenderModalAdvanced");
|
|
23
|
+
const WebRenderModalBasic_1 = require("./WebRenderModalBasic");
|
|
24
|
+
const WebRenderModalPicture_1 = require("./WebRenderModalPicture");
|
|
25
|
+
const invalidCharacters = ['?', '*', '+', ':', '%'];
|
|
26
|
+
const isValidStillExtension = (extension, stillImageFormat) => {
|
|
27
|
+
if (stillImageFormat === 'jpeg' && extension === 'jpg') {
|
|
28
|
+
return true;
|
|
29
|
+
}
|
|
30
|
+
return extension === stillImageFormat;
|
|
31
|
+
};
|
|
32
|
+
const validateOutnameForStill = ({ outName, stillImageFormat, }) => {
|
|
33
|
+
try {
|
|
34
|
+
const extension = outName.substring(outName.lastIndexOf('.') + 1);
|
|
35
|
+
const prefix = outName.substring(0, outName.lastIndexOf('.'));
|
|
36
|
+
const hasDotAfterSlash = () => {
|
|
37
|
+
const substrings = prefix.split('/');
|
|
38
|
+
for (const str of substrings) {
|
|
39
|
+
if (str[0] === '.') {
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
return false;
|
|
44
|
+
};
|
|
45
|
+
const hasInvalidChar = () => {
|
|
46
|
+
return prefix.split('').some((char) => invalidCharacters.includes(char));
|
|
47
|
+
};
|
|
48
|
+
if (prefix.length < 1) {
|
|
49
|
+
throw new Error('The prefix must be at least 1 character long');
|
|
50
|
+
}
|
|
51
|
+
if (prefix[0] === '.' || hasDotAfterSlash()) {
|
|
52
|
+
throw new Error('The output name must not start with a dot');
|
|
53
|
+
}
|
|
54
|
+
if (hasInvalidChar()) {
|
|
55
|
+
throw new Error("Filename can't contain the following characters: ?, *, +, %, :");
|
|
56
|
+
}
|
|
57
|
+
if (!isValidStillExtension(extension, stillImageFormat)) {
|
|
58
|
+
throw new Error(`The extension ${extension} is not supported for still image format ${stillImageFormat}`);
|
|
59
|
+
}
|
|
60
|
+
return { valid: true };
|
|
61
|
+
}
|
|
62
|
+
catch (err) {
|
|
63
|
+
return { valid: false, error: err };
|
|
64
|
+
}
|
|
65
|
+
};
|
|
66
|
+
// TODO: Add to queue
|
|
67
|
+
// TODO: Switch to server-side rendering
|
|
68
|
+
// TODO: Filter out codecs that are not supported for the container
|
|
69
|
+
// TODO: Add more containers
|
|
70
|
+
// TODO: Shortcut: Shift + R
|
|
71
|
+
// TODO: Apply initial frame range
|
|
72
|
+
// TODO: Apply defaultCodec
|
|
73
|
+
// TODO: Apply defaultOutName
|
|
74
|
+
const WebRenderModal = ({ initialFrame, defaultProps, }) => {
|
|
75
|
+
const context = (0, react_1.useContext)(ResolveCompositionBeforeModal_1.ResolvedCompositionContext);
|
|
76
|
+
if (!context) {
|
|
77
|
+
throw new Error('Should not be able to render without resolving comp first');
|
|
78
|
+
}
|
|
79
|
+
const { resolved: { result: resolvedComposition }, unresolved: unresolvedComposition, } = context;
|
|
80
|
+
const [renderMode, setRenderMode] = (0, react_1.useState)('video');
|
|
81
|
+
const [tab, setTab] = (0, react_1.useState)('general');
|
|
82
|
+
const [imageFormat, setImageFormat] = (0, react_1.useState)('png');
|
|
83
|
+
const [frame, setFrame] = (0, react_1.useState)(() => initialFrame);
|
|
84
|
+
const [logLevel, setLogLevel] = (0, react_1.useState)('info');
|
|
85
|
+
const [inputProps, setInputProps] = (0, react_1.useState)(() => defaultProps);
|
|
86
|
+
const [delayRenderTimeout, setDelayRenderTimeout] = (0, react_1.useState)(30000);
|
|
87
|
+
const [mediaCacheSizeInBytes, setMediaCacheSizeInBytes] = (0, react_1.useState)(null);
|
|
88
|
+
const [saving, setSaving] = (0, react_1.useState)(false);
|
|
89
|
+
// Video-specific state
|
|
90
|
+
const [codec, setCodec] = (0, react_1.useState)('h264');
|
|
91
|
+
const [container, setContainer] = (0, react_1.useState)('mp4');
|
|
92
|
+
const [videoBitrate, setVideoBitrate] = (0, react_1.useState)('high');
|
|
93
|
+
const [hardwareAcceleration, setHardwareAcceleration] = (0, react_1.useState)('no-preference');
|
|
94
|
+
const [keyframeIntervalInSeconds, setKeyframeIntervalInSeconds] = (0, react_1.useState)(5);
|
|
95
|
+
const [startFrame, setStartFrame] = (0, react_1.useState)(null);
|
|
96
|
+
const [endFrame, setEndFrame] = (0, react_1.useState)(null);
|
|
97
|
+
const [renderProgress, setRenderProgress] = (0, react_1.useState)(null);
|
|
98
|
+
const [transparent, setTransparent] = (0, react_1.useState)(false);
|
|
99
|
+
const [initialOutName] = (0, react_1.useState)(() => {
|
|
100
|
+
return (0, studio_shared_1.getDefaultOutLocation)({
|
|
101
|
+
compositionName: resolvedComposition.id,
|
|
102
|
+
defaultExtension: container,
|
|
103
|
+
type: 'asset',
|
|
104
|
+
compositionDefaultOutName: resolvedComposition.defaultOutName,
|
|
105
|
+
clientSideRender: true,
|
|
106
|
+
});
|
|
107
|
+
});
|
|
108
|
+
const [outName, setOutName] = (0, react_1.useState)(() => initialOutName);
|
|
109
|
+
const setStillFormat = (0, react_1.useCallback)((format) => {
|
|
110
|
+
setImageFormat(format);
|
|
111
|
+
setOutName((prev) => {
|
|
112
|
+
const newFileName = (0, get_string_before_suffix_1.getStringBeforeSuffix)(prev) + '.' + format;
|
|
113
|
+
return newFileName;
|
|
114
|
+
});
|
|
115
|
+
}, []);
|
|
116
|
+
const setContainerFormat = (0, react_1.useCallback)((newContainer) => {
|
|
117
|
+
setContainer(newContainer);
|
|
118
|
+
setOutName((prev) => {
|
|
119
|
+
const newFileName = (0, get_string_before_suffix_1.getStringBeforeSuffix)(prev) + '.' + newContainer;
|
|
120
|
+
return newFileName;
|
|
121
|
+
});
|
|
122
|
+
}, []);
|
|
123
|
+
const onRenderModeChange = (0, react_1.useCallback)((newMode) => {
|
|
124
|
+
setRenderMode(newMode);
|
|
125
|
+
if (newMode === 'video') {
|
|
126
|
+
setOutName((prev) => {
|
|
127
|
+
const newFileName = (0, get_string_before_suffix_1.getStringBeforeSuffix)(prev) + '.' + container;
|
|
128
|
+
return newFileName;
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
else {
|
|
132
|
+
setOutName((prev) => {
|
|
133
|
+
const newFileName = (0, get_string_before_suffix_1.getStringBeforeSuffix)(prev) + '.' + imageFormat;
|
|
134
|
+
return newFileName;
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
}, [container, imageFormat]);
|
|
138
|
+
const renderTabOptions = (0, react_1.useMemo)(() => {
|
|
139
|
+
const options = [
|
|
140
|
+
{
|
|
141
|
+
label: 'Still',
|
|
142
|
+
onClick: () => {
|
|
143
|
+
onRenderModeChange('still');
|
|
144
|
+
},
|
|
145
|
+
key: 'still',
|
|
146
|
+
selected: renderMode === 'still',
|
|
147
|
+
},
|
|
148
|
+
];
|
|
149
|
+
// Only show video option if composition has more than 1 frame
|
|
150
|
+
if (resolvedComposition.durationInFrames > 1) {
|
|
151
|
+
options.push({
|
|
152
|
+
label: 'Video',
|
|
153
|
+
onClick: () => {
|
|
154
|
+
onRenderModeChange('video');
|
|
155
|
+
},
|
|
156
|
+
key: 'video',
|
|
157
|
+
selected: renderMode === 'video',
|
|
158
|
+
});
|
|
159
|
+
}
|
|
160
|
+
return options;
|
|
161
|
+
}, [renderMode, resolvedComposition.durationInFrames, onRenderModeChange]);
|
|
162
|
+
const onFrameSetDirectly = (0, react_1.useCallback)((newFrame) => {
|
|
163
|
+
setFrame(newFrame);
|
|
164
|
+
}, [setFrame]);
|
|
165
|
+
const onFrameChanged = (0, react_1.useCallback)((e) => {
|
|
166
|
+
setFrame((q) => {
|
|
167
|
+
const newFrame = parseFloat(e);
|
|
168
|
+
if (Number.isNaN(newFrame)) {
|
|
169
|
+
return q;
|
|
170
|
+
}
|
|
171
|
+
return newFrame;
|
|
172
|
+
});
|
|
173
|
+
}, [setFrame]);
|
|
174
|
+
const onOutNameChange = (0, react_1.useCallback)((e) => {
|
|
175
|
+
setOutName(e.target.value);
|
|
176
|
+
}, []);
|
|
177
|
+
const outnameValidation = (0, react_1.useMemo)(() => {
|
|
178
|
+
if (renderMode === 'still') {
|
|
179
|
+
return validateOutnameForStill({
|
|
180
|
+
outName,
|
|
181
|
+
stillImageFormat: imageFormat,
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
// Validate for video
|
|
185
|
+
try {
|
|
186
|
+
const extension = outName.substring(outName.lastIndexOf('.') + 1);
|
|
187
|
+
const prefix = outName.substring(0, outName.lastIndexOf('.'));
|
|
188
|
+
const hasDotAfterSlash = () => {
|
|
189
|
+
const substrings = prefix.split('/');
|
|
190
|
+
for (const str of substrings) {
|
|
191
|
+
if (str[0] === '.') {
|
|
192
|
+
return true;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
return false;
|
|
196
|
+
};
|
|
197
|
+
const hasInvalidChar = () => {
|
|
198
|
+
return prefix
|
|
199
|
+
.split('')
|
|
200
|
+
.some((char) => invalidCharacters.includes(char));
|
|
201
|
+
};
|
|
202
|
+
if (prefix.length < 1) {
|
|
203
|
+
throw new Error('The prefix must be at least 1 character long');
|
|
204
|
+
}
|
|
205
|
+
if (prefix[0] === '.' || hasDotAfterSlash()) {
|
|
206
|
+
throw new Error('The output name must not start with a dot');
|
|
207
|
+
}
|
|
208
|
+
if (hasInvalidChar()) {
|
|
209
|
+
throw new Error("Filename can't contain the following characters: ?, *, +, %, :");
|
|
210
|
+
}
|
|
211
|
+
if (extension !== container) {
|
|
212
|
+
throw new Error(`The extension ${extension} is not supported for container format ${container}`);
|
|
213
|
+
}
|
|
214
|
+
return { valid: true };
|
|
215
|
+
}
|
|
216
|
+
catch (err) {
|
|
217
|
+
return { valid: false, error: err };
|
|
218
|
+
}
|
|
219
|
+
}, [outName, imageFormat, renderMode, container]);
|
|
220
|
+
const onRenderStill = (0, react_1.useCallback)(async () => {
|
|
221
|
+
const blob = await (0, web_renderer_1.renderStillOnWeb)({
|
|
222
|
+
composition: {
|
|
223
|
+
component: unresolvedComposition.component,
|
|
224
|
+
width: resolvedComposition.width,
|
|
225
|
+
height: resolvedComposition.height,
|
|
226
|
+
fps: resolvedComposition.fps,
|
|
227
|
+
durationInFrames: resolvedComposition.durationInFrames,
|
|
228
|
+
defaultProps: resolvedComposition.defaultProps,
|
|
229
|
+
calculateMetadata: unresolvedComposition.calculateMetadata,
|
|
230
|
+
id: resolvedComposition.id,
|
|
231
|
+
},
|
|
232
|
+
frame,
|
|
233
|
+
imageFormat,
|
|
234
|
+
inputProps,
|
|
235
|
+
delayRenderTimeoutInMilliseconds: delayRenderTimeout,
|
|
236
|
+
mediaCacheSizeInBytes,
|
|
237
|
+
logLevel,
|
|
238
|
+
});
|
|
239
|
+
const url = URL.createObjectURL(blob);
|
|
240
|
+
const a = document.createElement('a');
|
|
241
|
+
a.href = url;
|
|
242
|
+
// Extract just the filename from the path
|
|
243
|
+
const filename = outName.includes('/')
|
|
244
|
+
? outName.substring(outName.lastIndexOf('/') + 1)
|
|
245
|
+
: outName;
|
|
246
|
+
a.download = filename;
|
|
247
|
+
a.click();
|
|
248
|
+
URL.revokeObjectURL(url);
|
|
249
|
+
}, [
|
|
250
|
+
unresolvedComposition.component,
|
|
251
|
+
frame,
|
|
252
|
+
imageFormat,
|
|
253
|
+
logLevel,
|
|
254
|
+
inputProps,
|
|
255
|
+
delayRenderTimeout,
|
|
256
|
+
mediaCacheSizeInBytes,
|
|
257
|
+
resolvedComposition.durationInFrames,
|
|
258
|
+
resolvedComposition.width,
|
|
259
|
+
resolvedComposition.height,
|
|
260
|
+
resolvedComposition.fps,
|
|
261
|
+
outName,
|
|
262
|
+
resolvedComposition.defaultProps,
|
|
263
|
+
unresolvedComposition.calculateMetadata,
|
|
264
|
+
resolvedComposition.id,
|
|
265
|
+
]);
|
|
266
|
+
const onRenderVideo = (0, react_1.useCallback)(async () => {
|
|
267
|
+
setRenderProgress({ renderedFrames: 0, encodedFrames: 0 });
|
|
268
|
+
const buffer = await (0, web_renderer_1.renderMediaOnWeb)({
|
|
269
|
+
composition: {
|
|
270
|
+
component: unresolvedComposition.component,
|
|
271
|
+
width: resolvedComposition.width,
|
|
272
|
+
height: resolvedComposition.height,
|
|
273
|
+
fps: resolvedComposition.fps,
|
|
274
|
+
durationInFrames: resolvedComposition.durationInFrames,
|
|
275
|
+
defaultProps: resolvedComposition.defaultProps,
|
|
276
|
+
id: resolvedComposition.id,
|
|
277
|
+
calculateMetadata: unresolvedComposition.calculateMetadata,
|
|
278
|
+
},
|
|
279
|
+
inputProps,
|
|
280
|
+
delayRenderTimeoutInMilliseconds: delayRenderTimeout,
|
|
281
|
+
mediaCacheSizeInBytes,
|
|
282
|
+
logLevel,
|
|
283
|
+
codec,
|
|
284
|
+
container,
|
|
285
|
+
videoBitrate,
|
|
286
|
+
hardwareAcceleration,
|
|
287
|
+
keyframeIntervalInSeconds,
|
|
288
|
+
frameRange: startFrame !== null || endFrame !== null
|
|
289
|
+
? [
|
|
290
|
+
startFrame !== null && startFrame !== void 0 ? startFrame : 0,
|
|
291
|
+
endFrame !== null && endFrame !== void 0 ? endFrame : resolvedComposition.durationInFrames - 1,
|
|
292
|
+
]
|
|
293
|
+
: null,
|
|
294
|
+
onProgress: (progress) => {
|
|
295
|
+
setRenderProgress(progress);
|
|
296
|
+
},
|
|
297
|
+
transparent,
|
|
298
|
+
});
|
|
299
|
+
setRenderProgress(null);
|
|
300
|
+
const blob = new Blob([buffer], {
|
|
301
|
+
type: container === 'mp4' ? 'video/mp4' : 'video/webm',
|
|
302
|
+
});
|
|
303
|
+
const url = URL.createObjectURL(blob);
|
|
304
|
+
const a = document.createElement('a');
|
|
305
|
+
a.href = url;
|
|
306
|
+
// Extract just the filename from the path
|
|
307
|
+
const filename = outName.includes('/')
|
|
308
|
+
? outName.substring(outName.lastIndexOf('/') + 1)
|
|
309
|
+
: outName;
|
|
310
|
+
a.download = filename;
|
|
311
|
+
a.click();
|
|
312
|
+
URL.revokeObjectURL(url);
|
|
313
|
+
}, [
|
|
314
|
+
unresolvedComposition.component,
|
|
315
|
+
inputProps,
|
|
316
|
+
delayRenderTimeout,
|
|
317
|
+
mediaCacheSizeInBytes,
|
|
318
|
+
logLevel,
|
|
319
|
+
codec,
|
|
320
|
+
container,
|
|
321
|
+
videoBitrate,
|
|
322
|
+
hardwareAcceleration,
|
|
323
|
+
keyframeIntervalInSeconds,
|
|
324
|
+
startFrame,
|
|
325
|
+
endFrame,
|
|
326
|
+
resolvedComposition.durationInFrames,
|
|
327
|
+
resolvedComposition.width,
|
|
328
|
+
resolvedComposition.height,
|
|
329
|
+
resolvedComposition.fps,
|
|
330
|
+
outName,
|
|
331
|
+
transparent,
|
|
332
|
+
resolvedComposition.defaultProps,
|
|
333
|
+
resolvedComposition.id,
|
|
334
|
+
unresolvedComposition.calculateMetadata,
|
|
335
|
+
]);
|
|
336
|
+
const onRender = (0, react_1.useCallback)(async () => {
|
|
337
|
+
if (renderMode === 'still') {
|
|
338
|
+
await onRenderStill();
|
|
339
|
+
}
|
|
340
|
+
else {
|
|
341
|
+
await onRenderVideo();
|
|
342
|
+
}
|
|
343
|
+
}, [renderMode, onRenderStill, onRenderVideo]);
|
|
344
|
+
return ((0, jsx_runtime_1.jsxs)("div", { style: render_modals_1.outerModalStyle, children: [(0, jsx_runtime_1.jsx)(ModalHeader_1.ModalHeader, { title: `Render ${resolvedComposition.id}` }), (0, jsx_runtime_1.jsxs)("div", { style: render_modals_1.container, children: [(0, jsx_runtime_1.jsx)(SegmentedControl_1.SegmentedControl, { items: renderTabOptions, needsWrapping: false }), (0, jsx_runtime_1.jsx)("div", { style: render_modals_1.flexer }), (0, jsx_runtime_1.jsxs)(Button_1.Button, { autoFocus: true, onClick: onRender, style: render_modals_1.buttonStyle, disabled: !outnameValidation.valid, children: [renderProgress
|
|
345
|
+
? `Rendering... ${renderProgress.renderedFrames}/${endFrame !== null && endFrame !== void 0 ? endFrame : resolvedComposition.durationInFrames - 1}`
|
|
346
|
+
: `Render ${renderMode}`, (0, jsx_runtime_1.jsx)(ShortcutHint_1.ShortcutHint, { keyToPress: "\u21B5", cmdOrCtrl: true })] })] }), (0, jsx_runtime_1.jsxs)("div", { style: render_modals_1.horizontalLayout, children: [(0, jsx_runtime_1.jsxs)("div", { style: render_modals_1.leftSidebar, children: [(0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: render_modals_1.horizontalTab, selected: tab === 'general', onClick: () => setTab('general'), children: [(0, jsx_runtime_1.jsx)("div", { style: render_modals_1.iconContainer, children: (0, jsx_runtime_1.jsx)(file_1.FileIcon, { style: render_modals_1.icon }) }), "General"] }), (0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: render_modals_1.horizontalTab, selected: tab === 'data', onClick: () => setTab('data'), children: [(0, jsx_runtime_1.jsx)("div", { style: render_modals_1.iconContainer, children: (0, jsx_runtime_1.jsx)(data_1.DataIcon, { style: render_modals_1.icon }) }), "Input Props"] }), renderMode === 'video' ? ((0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: render_modals_1.horizontalTab, selected: tab === 'picture', onClick: () => setTab('picture'), children: [(0, jsx_runtime_1.jsx)("div", { style: render_modals_1.iconContainer, children: (0, jsx_runtime_1.jsx)(frame_1.PicIcon, { style: render_modals_1.icon }) }), "Picture"] })) : null, (0, jsx_runtime_1.jsxs)(vertical_1.VerticalTab, { style: render_modals_1.horizontalTab, selected: tab === 'advanced', onClick: () => setTab('advanced'), children: [(0, jsx_runtime_1.jsx)("div", { style: render_modals_1.iconContainer, children: (0, jsx_runtime_1.jsx)(file_1.FileIcon, { style: render_modals_1.icon }) }), "Advanced"] })] }), (0, jsx_runtime_1.jsx)("div", { style: render_modals_1.optionsPanel, className: is_menu_item_1.VERTICAL_SCROLLBAR_CLASSNAME, children: tab === 'general' ? ((0, jsx_runtime_1.jsx)(WebRenderModalBasic_1.WebRenderModalBasic, { renderMode: renderMode, resolvedComposition: resolvedComposition, imageFormat: imageFormat, setStillFormat: setStillFormat, frame: frame, onFrameChanged: onFrameChanged, onFrameSetDirectly: onFrameSetDirectly, container: container, setContainerFormat: setContainerFormat, codec: codec, setCodec: setCodec, startFrame: startFrame, setStartFrame: setStartFrame, endFrame: endFrame, setEndFrame: setEndFrame, outName: outName, onOutNameChange: onOutNameChange, validationMessage: outnameValidation.valid ? null : outnameValidation.error.message, logLevel: logLevel, setLogLevel: setLogLevel })) : tab === 'data' ? ((0, jsx_runtime_1.jsx)(DataEditor_1.DataEditor, { defaultProps: inputProps, setDefaultProps: setInputProps, unresolvedComposition: unresolvedComposition, mayShowSaveButton: false, propsEditType: "input-props", saving: saving, setSaving: setSaving, readOnlyStudio: false })) : tab === 'picture' ? ((0, jsx_runtime_1.jsx)(WebRenderModalPicture_1.WebRenderModalPicture, { renderMode: renderMode, videoBitrate: videoBitrate, setVideoBitrate: setVideoBitrate, keyframeIntervalInSeconds: keyframeIntervalInSeconds, setKeyframeIntervalInSeconds: setKeyframeIntervalInSeconds, transparent: transparent, setTransparent: setTransparent })) : ((0, jsx_runtime_1.jsx)(WebRenderModalAdvanced_1.WebRenderModalAdvanced, { renderMode: renderMode, delayRenderTimeout: delayRenderTimeout, setDelayRenderTimeout: setDelayRenderTimeout, mediaCacheSizeInBytes: mediaCacheSizeInBytes, setMediaCacheSizeInBytes: setMediaCacheSizeInBytes, hardwareAcceleration: hardwareAcceleration, setHardwareAcceleration: setHardwareAcceleration })) })] })] }));
|
|
347
|
+
};
|
|
348
|
+
const WebRenderModalWithLoader = (props) => {
|
|
349
|
+
return ((0, jsx_runtime_1.jsx)(DismissableModal_1.DismissableModal, { children: (0, jsx_runtime_1.jsx)(ResolveCompositionBeforeModal_1.ResolveCompositionBeforeModal, { compositionId: props.compositionId, children: (0, jsx_runtime_1.jsx)(WebRenderModal, { ...props }) }) }));
|
|
350
|
+
};
|
|
351
|
+
exports.WebRenderModalWithLoader = WebRenderModalWithLoader;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type React from 'react';
|
|
2
|
+
import type { RenderType } from './WebRenderModal';
|
|
3
|
+
type WebRenderModalAdvancedProps = {
|
|
4
|
+
readonly renderMode: RenderType;
|
|
5
|
+
readonly delayRenderTimeout: number;
|
|
6
|
+
readonly setDelayRenderTimeout: React.Dispatch<React.SetStateAction<number>>;
|
|
7
|
+
readonly mediaCacheSizeInBytes: number | null;
|
|
8
|
+
readonly setMediaCacheSizeInBytes: React.Dispatch<React.SetStateAction<number | null>>;
|
|
9
|
+
readonly hardwareAcceleration: 'no-preference' | 'prefer-hardware' | 'prefer-software';
|
|
10
|
+
readonly setHardwareAcceleration: (value: 'no-preference' | 'prefer-hardware' | 'prefer-software') => void;
|
|
11
|
+
};
|
|
12
|
+
export declare const WebRenderModalAdvanced: React.FC<WebRenderModalAdvancedProps>;
|
|
13
|
+
export {};
|