@remotion/studio-shared 4.0.365 → 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/api-requests.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import type { AudioCodec, ChromeMode, Codec, ColorSpace, LogLevel, PixelFormat,
|
|
1
|
+
import type { AudioCodec, ChromeMode, Codec, ColorSpace, LogLevel, PixelFormat, StillImageFormat, VideoImageFormat, X264Preset } from '@remotion/renderer';
|
|
2
2
|
import type { HardwareAccelerationOption } from '@remotion/renderer/client';
|
|
3
|
+
import type { _InternalTypes } from 'remotion';
|
|
3
4
|
import type { RecastCodemod, VisualControlChange } from './codemods';
|
|
4
5
|
import type { PackageManager } from './package-manager';
|
|
5
6
|
import type { ProjectInfo } from './project-info';
|
|
@@ -50,7 +51,7 @@ type AddRenderRequestDynamicFields = {
|
|
|
50
51
|
endFrame: number;
|
|
51
52
|
muted: boolean;
|
|
52
53
|
enforceAudioTrack: boolean;
|
|
53
|
-
proResProfile: ProResProfile | null;
|
|
54
|
+
proResProfile: _InternalTypes['ProResProfile'] | null;
|
|
54
55
|
x264Preset: X264Preset | null;
|
|
55
56
|
pixelFormat: PixelFormat;
|
|
56
57
|
audioBitrate: string | null;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import type { AudioCodec, ChromeMode, Codec, ColorSpace, LogLevel, OpenGlRenderer, PixelFormat,
|
|
1
|
+
import type { AudioCodec, ChromeMode, Codec, ColorSpace, LogLevel, OpenGlRenderer, PixelFormat, StillImageFormat, VideoImageFormat, X264Preset } from '@remotion/renderer';
|
|
2
2
|
import type { HardwareAccelerationOption } from '@remotion/renderer/client';
|
|
3
|
+
import type { _InternalTypes } from 'remotion';
|
|
3
4
|
import type { GitSource } from './git-source';
|
|
4
5
|
import type { PackageManager } from './package-manager';
|
|
5
6
|
export type RenderDefaults = {
|
|
@@ -15,7 +16,7 @@ export type RenderDefaults = {
|
|
|
15
16
|
videoImageFormat: VideoImageFormat;
|
|
16
17
|
audioCodec: AudioCodec | null;
|
|
17
18
|
enforceAudioTrack: boolean;
|
|
18
|
-
proResProfile: ProResProfile;
|
|
19
|
+
proResProfile: _InternalTypes['ProResProfile'] | null;
|
|
19
20
|
x264Preset: X264Preset;
|
|
20
21
|
pixelFormat: PixelFormat;
|
|
21
22
|
audioBitrate: string | null;
|
package/dist/render-job.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AudioCodec, ChromeMode, Codec, ColorSpace, LogLevel, makeCancelSignal, PixelFormat,
|
|
1
|
+
import type { AudioCodec, ChromeMode, Codec, ColorSpace, LogLevel, makeCancelSignal, PixelFormat, StillImageFormat, StitchingState, VideoImageFormat, X264Preset } from '@remotion/renderer';
|
|
2
2
|
type BaseRenderProgress = {
|
|
3
3
|
message: string;
|
|
4
4
|
value: number;
|
|
@@ -104,7 +104,7 @@ type RenderJobDynamicFields = ({
|
|
|
104
104
|
endFrame: number;
|
|
105
105
|
muted: boolean;
|
|
106
106
|
enforceAudioTrack: boolean;
|
|
107
|
-
proResProfile: ProResProfile | null;
|
|
107
|
+
proResProfile: _InternalTypes['ProResProfile'] | null;
|
|
108
108
|
x264Preset: X264Preset | null;
|
|
109
109
|
pixelFormat: PixelFormat;
|
|
110
110
|
audioBitrate: string | null;
|
|
@@ -124,6 +124,7 @@ type RenderJobDynamicFields = ({
|
|
|
124
124
|
} & RenderJobDynamicStatus);
|
|
125
125
|
import type { ChromiumOptions, OpenGlRenderer } from '@remotion/renderer';
|
|
126
126
|
import type { HardwareAccelerationOption } from '@remotion/renderer/client';
|
|
127
|
+
import type { _InternalTypes } from 'remotion';
|
|
127
128
|
export type RequiredChromiumOptions = Required<ChromiumOptions>;
|
|
128
129
|
export type UiOpenGlOptions = OpenGlRenderer | 'default';
|
|
129
130
|
export type RenderJob = {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/studio-shared"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/studio-shared",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.367",
|
|
7
7
|
"description": "Internal package for shared objects between the Studio backend and frontend",
|
|
8
8
|
"main": "dist",
|
|
9
9
|
"sideEffects": false,
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"remotion": "4.0.
|
|
22
|
+
"remotion": "4.0.367"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@remotion/renderer": "4.0.
|
|
26
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
25
|
+
"@remotion/renderer": "4.0.367",
|
|
26
|
+
"@remotion/eslint-config-internal": "4.0.367",
|
|
27
27
|
"eslint": "9.19.0"
|
|
28
28
|
},
|
|
29
29
|
"publishConfig": {
|