@remotion/cli 4.0.366 → 4.0.367
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/config/index.d.ts
CHANGED
|
@@ -379,7 +379,7 @@ export declare const ConfigInternals: {
|
|
|
379
379
|
getRange: () => FrameRange | null;
|
|
380
380
|
getBrowser: () => null;
|
|
381
381
|
getPixelFormat: () => "yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le";
|
|
382
|
-
getProResProfile: () => import("
|
|
382
|
+
getProResProfile: () => import("remotion")._InternalTypes["ProResProfile"] | undefined;
|
|
383
383
|
getBrowserExecutable: () => BrowserExecutable;
|
|
384
384
|
getStudioPort: () => number | undefined;
|
|
385
385
|
getRendererPortFromConfigFile: () => number | null;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
export declare const getProResProfile: () => ProResProfile | undefined;
|
|
3
|
-
export declare const setProResProfile: (profile: ProResProfile | undefined) => void;
|
|
1
|
+
import type { _InternalTypes } from 'remotion';
|
|
2
|
+
export declare const getProResProfile: () => _InternalTypes["ProResProfile"] | undefined;
|
|
3
|
+
export declare const setProResProfile: (profile: _InternalTypes["ProResProfile"] | undefined) => void;
|
|
@@ -15,7 +15,7 @@ const getRenderDefaults = () => {
|
|
|
15
15
|
const defaultCodec = config_1.ConfigInternals.getOutputCodecOrUndefined();
|
|
16
16
|
const concurrency = renderer_1.RenderInternals.resolveConcurrency(config_1.ConfigInternals.getConcurrency());
|
|
17
17
|
const pixelFormat = config_1.ConfigInternals.getPixelFormat();
|
|
18
|
-
const proResProfile = (_a = config_1.ConfigInternals.getProResProfile()) !== null && _a !== void 0 ? _a :
|
|
18
|
+
const proResProfile = (_a = config_1.ConfigInternals.getProResProfile()) !== null && _a !== void 0 ? _a : null;
|
|
19
19
|
const x264Preset = x264Option.getValue({
|
|
20
20
|
commandLine: parsed_cli_1.parsedCli,
|
|
21
21
|
}).value;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import type { AudioCodec, BrowserExecutable, Codec, OpenGlRenderer, PixelFormat,
|
|
1
|
+
import type { AudioCodec, BrowserExecutable, Codec, OpenGlRenderer, PixelFormat, StillImageFormat, VideoImageFormat } from '@remotion/renderer';
|
|
2
2
|
import type { TypeOfOption } from '@remotion/renderer/client';
|
|
3
|
+
import type { _InternalTypes } from 'remotion';
|
|
3
4
|
declare const beepOnFinishOption: {
|
|
4
5
|
name: string;
|
|
5
6
|
cliFlag: "beep-on-finish";
|
|
@@ -290,7 +291,7 @@ export type CommandLineOptions = {
|
|
|
290
291
|
['browser-executable']: BrowserExecutable;
|
|
291
292
|
['pixel-format']: PixelFormat;
|
|
292
293
|
['image-format']: VideoImageFormat | StillImageFormat;
|
|
293
|
-
['prores-profile']: ProResProfile;
|
|
294
|
+
['prores-profile']: _InternalTypes['ProResProfile'];
|
|
294
295
|
[x264Option.cliFlag]: TypeOfOption<typeof x264Option>;
|
|
295
296
|
['bundle-cache']: string;
|
|
296
297
|
['env-file']: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import type { AudioCodec, Browser, BrowserExecutable, CancelSignal, ChromeMode, ChromiumOptions, Codec, ColorSpace, Crf, FfmpegOverrideFn, FrameRange, LogLevel, NumberOfGifLoops, PixelFormat,
|
|
1
|
+
import type { AudioCodec, Browser, BrowserExecutable, CancelSignal, ChromeMode, ChromiumOptions, Codec, ColorSpace, Crf, FfmpegOverrideFn, FrameRange, LogLevel, NumberOfGifLoops, PixelFormat, VideoImageFormat, X264Preset } from '@remotion/renderer';
|
|
2
2
|
import type { HardwareAccelerationOption } from '@remotion/renderer/client';
|
|
3
3
|
import type { JobProgressCallback } from '@remotion/studio-server';
|
|
4
|
+
import type { _InternalTypes } from 'remotion';
|
|
4
5
|
export declare const renderVideoFlow: ({ remotionRoot, fullEntryPoint, indent, logLevel, browserExecutable, browser, chromiumOptions, scale, shouldOutputImageSequence, publicDir, envVariables, puppeteerTimeout, port, height, width, remainingArgs, compositionIdFromUi, entryPointReason, overwrite, quiet, concurrency, frameRange, everyNthFrame, outputLocationFromUI, jpegQuality, onProgress, addCleanupCallback, cancelSignal, crf, uiCodec, uiImageFormat, ffmpegOverride, audioBitrate, muted, enforceAudioTrack, proResProfile, x264Preset, pixelFormat, videoBitrate, encodingMaxRate, encodingBufferSize, numberOfGifLoops, audioCodec, serializedInputPropsWithCustomSchema, disallowParallelEncoding, offthreadVideoCacheSizeInBytes, offthreadVideoThreads, colorSpace, repro, binariesDirectory, forSeamlessAacConcatenation, separateAudioTo, publicPath, metadata, hardwareAcceleration, chromeMode, audioLatencyHint, imageSequencePattern, mediaCacheSizeInBytes, }: {
|
|
5
6
|
remotionRoot: string;
|
|
6
7
|
fullEntryPoint: string;
|
|
@@ -41,7 +42,7 @@ export declare const renderVideoFlow: ({ remotionRoot, fullEntryPoint, indent, l
|
|
|
41
42
|
encodingBufferSize: string | null;
|
|
42
43
|
muted: boolean;
|
|
43
44
|
enforceAudioTrack: boolean;
|
|
44
|
-
proResProfile: ProResProfile | undefined;
|
|
45
|
+
proResProfile: _InternalTypes["ProResProfile"] | undefined;
|
|
45
46
|
x264Preset: X264Preset | null;
|
|
46
47
|
pixelFormat: PixelFormat;
|
|
47
48
|
numberOfGifLoops: NumberOfGifLoops;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/cli"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/cli",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.367",
|
|
7
7
|
"description": "Control Remotion features using the `npx remotion` command",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"author": "Jonny Burger <jonny@remotion.dev>",
|
|
37
37
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@remotion/bundler": "4.0.
|
|
40
|
-
"@remotion/media-utils": "4.0.
|
|
41
|
-
"@remotion/player": "4.0.
|
|
42
|
-
"@remotion/renderer": "4.0.
|
|
43
|
-
"@remotion/studio-shared": "4.0.
|
|
44
|
-
"@remotion/studio-server": "4.0.
|
|
45
|
-
"@remotion/studio": "4.0.
|
|
39
|
+
"@remotion/bundler": "4.0.367",
|
|
40
|
+
"@remotion/media-utils": "4.0.367",
|
|
41
|
+
"@remotion/player": "4.0.367",
|
|
42
|
+
"@remotion/renderer": "4.0.367",
|
|
43
|
+
"@remotion/studio-shared": "4.0.367",
|
|
44
|
+
"@remotion/studio-server": "4.0.367",
|
|
45
|
+
"@remotion/studio": "4.0.367",
|
|
46
46
|
"dotenv": "9.0.2",
|
|
47
47
|
"minimist": "1.2.6",
|
|
48
48
|
"prompts": "2.4.2",
|
|
49
|
-
"remotion": "4.0.
|
|
49
|
+
"remotion": "4.0.367"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": ">=16.8.0",
|
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
"@types/prompts": "^2.4.1",
|
|
58
58
|
"@types/prettier": "^2.7.2",
|
|
59
59
|
"@types/node": "20.12.14",
|
|
60
|
-
"@remotion/zod-types": "4.0.
|
|
61
|
-
"@remotion/tailwind-v4": "4.0.
|
|
62
|
-
"@remotion/enable-scss": "4.0.
|
|
63
|
-
"@remotion/skia": "4.0.
|
|
60
|
+
"@remotion/zod-types": "4.0.367",
|
|
61
|
+
"@remotion/tailwind-v4": "4.0.367",
|
|
62
|
+
"@remotion/enable-scss": "4.0.367",
|
|
63
|
+
"@remotion/skia": "4.0.367",
|
|
64
64
|
"react": "19.0.0",
|
|
65
65
|
"react-dom": "19.0.0",
|
|
66
66
|
"zod": "3.22.3",
|
|
67
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
67
|
+
"@remotion/eslint-config-internal": "4.0.367",
|
|
68
68
|
"eslint": "9.19.0"
|
|
69
69
|
},
|
|
70
70
|
"keywords": [
|