init commit
This commit is contained in:
28
remotion/node_modules/@remotion/renderer/dist/options/separate-audio.js
generated
vendored
Normal file
28
remotion/node_modules/@remotion/renderer/dist/options/separate-audio.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.separateAudioOption = void 0;
|
||||
const DEFAULT = null;
|
||||
const cliFlag = 'separate-audio-to';
|
||||
exports.separateAudioOption = {
|
||||
cliFlag,
|
||||
description: () => `If set, the audio will not be included in the main output but rendered as a separate file at the location you pass. It is recommended to use an absolute path. If a relative path is passed, it is relative to the Remotion Root.`,
|
||||
docLink: 'https://remotion.dev/docs/renderer/render-media',
|
||||
getValue: ({ commandLine }) => {
|
||||
if (commandLine[cliFlag]) {
|
||||
return {
|
||||
source: 'cli',
|
||||
value: commandLine[cliFlag],
|
||||
};
|
||||
}
|
||||
return {
|
||||
source: 'default',
|
||||
value: DEFAULT,
|
||||
};
|
||||
},
|
||||
name: 'Separate audio to',
|
||||
setConfig: () => {
|
||||
throw new Error('Not implemented');
|
||||
},
|
||||
ssrName: 'separateAudioTo',
|
||||
type: 'string',
|
||||
};
|
||||
Reference in New Issue
Block a user