@editframe/cli 0.12.0-beta.12 → 0.12.0-beta.15
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/VERSION.d.ts +1 -1
- package/dist/VERSION.js +1 -1
- package/dist/commands/process-file.js +1 -1
- package/dist/operations/getRenderInfo.d.ts +2 -2
- package/dist/operations/syncAssetsDirectory/SyncTrack.d.ts +2 -2
- package/dist/utils/validateVideoResolution.d.ts +1 -1
- package/package.json +5 -5
- package/src/commands/process-file.ts +1 -1
package/dist/VERSION.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "0.12.0-beta.
|
|
1
|
+
export declare const VERSION = "0.12.0-beta.15";
|
package/dist/VERSION.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { program } from "commander";
|
|
2
2
|
import { withSpinner } from "../utils/withSpinner.js";
|
|
3
|
-
import { uploadUnprocessedFile, getIsobmffProcessProgress, getIsobmffProcessInfo, createUnprocessedFileFromPath, processIsobmffFile } from "@editframe/api";
|
|
3
|
+
import { uploadUnprocessedFile, getIsobmffProcessProgress, getIsobmffProcessInfo, createUnprocessedFileFromPath, processIsobmffFile } from "@editframe/api/node";
|
|
4
4
|
import ora from "ora";
|
|
5
5
|
import { getClient } from "../utils/index.js";
|
|
6
6
|
program.command("process-file <file>").description("Upload a audio/video to Editframe for processing.").action(async (path) => {
|
|
@@ -18,8 +18,8 @@ export declare const RenderInfo: z.ZodObject<{
|
|
|
18
18
|
efImage: string[];
|
|
19
19
|
}>;
|
|
20
20
|
}, "strip", z.ZodTypeAny, {
|
|
21
|
-
width: number;
|
|
22
21
|
height: number;
|
|
22
|
+
width: number;
|
|
23
23
|
fps: number;
|
|
24
24
|
assets: {
|
|
25
25
|
efMedia: Record<string, any>;
|
|
@@ -28,8 +28,8 @@ export declare const RenderInfo: z.ZodObject<{
|
|
|
28
28
|
};
|
|
29
29
|
durationMs: number;
|
|
30
30
|
}, {
|
|
31
|
-
width: number;
|
|
32
31
|
height: number;
|
|
32
|
+
width: number;
|
|
33
33
|
fps: number;
|
|
34
34
|
assets: {
|
|
35
35
|
efMedia: Record<string, any>;
|
|
@@ -39,6 +39,8 @@ export declare class SyncTrack implements SubAssetSync<CreateISOBMFFTrackResult>
|
|
|
39
39
|
disposition: Record<string, unknown>;
|
|
40
40
|
initial_padding?: number | undefined;
|
|
41
41
|
} | {
|
|
42
|
+
height: number;
|
|
43
|
+
width: number;
|
|
42
44
|
index: number;
|
|
43
45
|
codec_name: string;
|
|
44
46
|
codec_long_name: string;
|
|
@@ -49,8 +51,6 @@ export declare class SyncTrack implements SubAssetSync<CreateISOBMFFTrackResult>
|
|
|
49
51
|
avg_frame_rate: string;
|
|
50
52
|
time_base: string;
|
|
51
53
|
disposition: Record<string, unknown>;
|
|
52
|
-
width: number;
|
|
53
|
-
height: number;
|
|
54
54
|
coded_width: number;
|
|
55
55
|
coded_height: number;
|
|
56
56
|
start_pts?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@editframe/cli",
|
|
3
|
-
"version": "0.12.0-beta.
|
|
3
|
+
"version": "0.12.0-beta.15",
|
|
4
4
|
"description": "Command line interface for EditFrame",
|
|
5
5
|
"bin": {
|
|
6
6
|
"editframe": "./dist/index.js"
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"vite-tsconfig-paths": "^4.3.2"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@editframe/api": "0.12.0-beta.
|
|
27
|
-
"@editframe/assets": "0.12.0-beta.
|
|
28
|
-
"@editframe/elements": "0.12.0-beta.
|
|
29
|
-
"@editframe/vite-plugin": "0.12.0-beta.
|
|
26
|
+
"@editframe/api": "0.12.0-beta.15",
|
|
27
|
+
"@editframe/assets": "0.12.0-beta.15",
|
|
28
|
+
"@editframe/elements": "0.12.0-beta.15",
|
|
29
|
+
"@editframe/vite-plugin": "0.12.0-beta.15",
|
|
30
30
|
"@inquirer/prompts": "^5.3.8",
|
|
31
31
|
"axios": "^1.6.8",
|
|
32
32
|
"chalk": "^5.3.0",
|