@remotion/renderer 4.0.429 → 4.0.431

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.
@@ -1,19 +0,0 @@
1
- export declare const qOption: {
2
- name: string;
3
- cliFlag: "q";
4
- ssrName: "q";
5
- description: () => import("react/jsx-runtime").JSX.Element;
6
- docLink: string;
7
- type: boolean;
8
- getValue: ({ commandLine }: {
9
- commandLine: Record<string, unknown>;
10
- }) => {
11
- value: true;
12
- source: string;
13
- } | {
14
- value: false;
15
- source: string;
16
- };
17
- setConfig: (value: boolean) => void;
18
- id: "q";
19
- };
package/dist/options/q.js DELETED
@@ -1,26 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.qOption = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const cliFlag = 'q';
6
- let currentQuiet = false;
7
- exports.qOption = {
8
- name: 'Quiet Alias',
9
- cliFlag,
10
- ssrName: 'q',
11
- description: () => (jsx_runtime_1.jsx(jsx_runtime_1.Fragment, { children: "Only prints the composition IDs, separated by a space." })),
12
- docLink: 'https://www.remotion.dev/docs/cli/compositions#--quiet---q',
13
- type: false,
14
- getValue: ({ commandLine }) => {
15
- if (commandLine[cliFlag] !== undefined) {
16
- return { value: true, source: 'cli' };
17
- }
18
- if (currentQuiet !== false)
19
- return { value: currentQuiet, source: 'config' };
20
- return { value: false, source: 'default' };
21
- },
22
- setConfig: (value) => {
23
- currentQuiet = value;
24
- },
25
- id: cliFlag,
26
- };
@@ -1,11 +0,0 @@
1
- export declare const qualityOption: {
2
- name: string;
3
- cliFlag: "quality";
4
- ssrName: "quality";
5
- description: () => import("react/jsx-runtime").JSX.Element;
6
- docLink: string;
7
- type: never;
8
- getValue: () => never;
9
- setConfig: () => void;
10
- id: "quality";
11
- };
@@ -1,20 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.qualityOption = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const cliFlag = 'quality';
6
- exports.qualityOption = {
7
- name: 'Quality (deprecated)',
8
- cliFlag,
9
- ssrName: 'quality',
10
- description: () => (jsx_runtime_1.jsxs(jsx_runtime_1.Fragment, { children: ["Renamed to ",
11
- jsx_runtime_1.jsx("code", { children: "--jpeg-quality" }),
12
- " in v4.0.0"] })),
13
- docLink: 'https://www.remotion.dev/docs/cli/still#--quality-',
14
- type: null,
15
- getValue: () => {
16
- throw new Error('The "--quality" flag was deprecated in v4.0.0. Please use "--jpeg-quality" instead.');
17
- },
18
- setConfig: () => { },
19
- id: cliFlag,
20
- };
@@ -1,19 +0,0 @@
1
- export declare const quietOption: {
2
- name: string;
3
- cliFlag: "quiet";
4
- ssrName: "quiet";
5
- description: () => import("react/jsx-runtime").JSX.Element;
6
- docLink: string;
7
- type: boolean;
8
- getValue: ({ commandLine }: {
9
- commandLine: Record<string, unknown>;
10
- }) => {
11
- value: true;
12
- source: string;
13
- } | {
14
- value: false;
15
- source: string;
16
- };
17
- setConfig: (value: boolean) => void;
18
- id: "quiet";
19
- };
@@ -1,26 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.quietOption = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const cliFlag = 'quiet';
6
- let currentQuiet = false;
7
- exports.quietOption = {
8
- name: 'Quiet',
9
- cliFlag,
10
- ssrName: 'quiet',
11
- description: () => (jsx_runtime_1.jsx(jsx_runtime_1.Fragment, { children: "Only prints the composition IDs, separated by a space." })),
12
- docLink: 'https://www.remotion.dev/docs/cli/compositions#--quiet---q',
13
- type: false,
14
- getValue: ({ commandLine }) => {
15
- if (commandLine[cliFlag] !== undefined) {
16
- return { value: true, source: 'cli' };
17
- }
18
- if (currentQuiet !== false)
19
- return { value: currentQuiet, source: 'config' };
20
- return { value: false, source: 'default' };
21
- },
22
- setConfig: (value) => {
23
- currentQuiet = value;
24
- },
25
- id: cliFlag,
26
- };