@t3lnet/sceneforge 1.0.10 → 1.0.11
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.
|
@@ -53,7 +53,9 @@ async function addAudioToStep(videoPath, audioPath, outputPath, padding, nextVid
|
|
|
53
53
|
"-c:v",
|
|
54
54
|
"libx264",
|
|
55
55
|
"-preset",
|
|
56
|
-
"
|
|
56
|
+
"medium",
|
|
57
|
+
"-crf",
|
|
58
|
+
"18",
|
|
57
59
|
"-c:a",
|
|
58
60
|
"aac",
|
|
59
61
|
"-b:a",
|
|
@@ -90,7 +92,9 @@ async function addAudioToStep(videoPath, audioPath, outputPath, padding, nextVid
|
|
|
90
92
|
"-c:v",
|
|
91
93
|
"libx264",
|
|
92
94
|
"-preset",
|
|
93
|
-
"
|
|
95
|
+
"medium",
|
|
96
|
+
"-crf",
|
|
97
|
+
"18",
|
|
94
98
|
"-c:a",
|
|
95
99
|
"aac",
|
|
96
100
|
"-b:a",
|
|
@@ -117,7 +121,9 @@ async function addAudioToStep(videoPath, audioPath, outputPath, padding, nextVid
|
|
|
117
121
|
"-c:v",
|
|
118
122
|
"libx264",
|
|
119
123
|
"-preset",
|
|
120
|
-
"
|
|
124
|
+
"medium",
|
|
125
|
+
"-crf",
|
|
126
|
+
"18",
|
|
121
127
|
"-c:a",
|
|
122
128
|
"aac",
|
|
123
129
|
"-b:a",
|
|
@@ -96,7 +96,9 @@ async function buildConcatWithIntroOutro(stepFiles, demoDir, introPath, outroPat
|
|
|
96
96
|
"-c:v",
|
|
97
97
|
"libx264",
|
|
98
98
|
"-preset",
|
|
99
|
-
"
|
|
99
|
+
"medium",
|
|
100
|
+
"-crf",
|
|
101
|
+
"18",
|
|
100
102
|
"-c:a",
|
|
101
103
|
"aac",
|
|
102
104
|
"-b:a",
|
|
@@ -315,7 +317,9 @@ async function concatDemo(demoName, paths, options = {}) {
|
|
|
315
317
|
"-c:v",
|
|
316
318
|
"libx264",
|
|
317
319
|
"-preset",
|
|
318
|
-
"
|
|
320
|
+
"medium",
|
|
321
|
+
"-crf",
|
|
322
|
+
"18",
|
|
319
323
|
"-c:a",
|
|
320
324
|
"aac",
|
|
321
325
|
"-b:a",
|
package/cli/commands/context.js
CHANGED
|
@@ -287,7 +287,7 @@ ${colors.blue}══════════════════════
|
|
|
287
287
|
|
|
288
288
|
// Show what files will be created
|
|
289
289
|
const { deployContext, getToolConfig, getSupportedTools } = await import(
|
|
290
|
-
"../../
|
|
290
|
+
"../../dist/index.js"
|
|
291
291
|
);
|
|
292
292
|
|
|
293
293
|
const tools = target === "all" ? getSupportedTools() : [target];
|
|
@@ -395,7 +395,7 @@ async function runDeployCommand(args) {
|
|
|
395
395
|
|
|
396
396
|
// Dynamic import of context module
|
|
397
397
|
const { deployContext, isValidTool, isValidFormat, getSupportedTools } = await import(
|
|
398
|
-
"../../
|
|
398
|
+
"../../dist/index.js"
|
|
399
399
|
);
|
|
400
400
|
|
|
401
401
|
// Validate target
|
|
@@ -487,7 +487,7 @@ async function runListCommand(args) {
|
|
|
487
487
|
|
|
488
488
|
const outputDir = resolveRoot(output);
|
|
489
489
|
|
|
490
|
-
const { listDeployedContext } = await import("../../
|
|
490
|
+
const { listDeployedContext } = await import("../../dist/index.js");
|
|
491
491
|
|
|
492
492
|
try {
|
|
493
493
|
const { files } = await listDeployedContext(outputDir);
|
|
@@ -532,7 +532,7 @@ async function runRemoveCommand(args) {
|
|
|
532
532
|
const outputDir = resolveRoot(output);
|
|
533
533
|
|
|
534
534
|
const { removeContext, isValidTool, getSupportedTools } = await import(
|
|
535
|
-
"../../
|
|
535
|
+
"../../dist/index.js"
|
|
536
536
|
);
|
|
537
537
|
|
|
538
538
|
// Validate target
|
|
@@ -596,7 +596,7 @@ async function runPreviewCommand(args) {
|
|
|
596
596
|
}
|
|
597
597
|
|
|
598
598
|
const { previewContext, isValidTool, getSupportedTools } = await import(
|
|
599
|
-
"../../
|
|
599
|
+
"../../dist/index.js"
|
|
600
600
|
);
|
|
601
601
|
|
|
602
602
|
// Validate target
|
|
@@ -640,7 +640,7 @@ async function runSkillCommand(args) {
|
|
|
640
640
|
const copy = getFlagValue(args, "--copy");
|
|
641
641
|
const output = getFlagValue(args, "--output");
|
|
642
642
|
|
|
643
|
-
const { listSkills, getSkill } = await import("../../
|
|
643
|
+
const { listSkills, getSkill } = await import("../../dist/index.js");
|
|
644
644
|
|
|
645
645
|
if (list) {
|
|
646
646
|
try {
|