vidpipe 1.3.13 → 1.3.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/cli.js +9360 -8250
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1062 -685
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -323,6 +323,7 @@ declare enum PipelineStage {
|
|
|
323
323
|
Chapters = "chapters",
|
|
324
324
|
Captions = "captions",
|
|
325
325
|
CaptionBurn = "caption-burn",
|
|
326
|
+
IntroOutro = "intro-outro",
|
|
326
327
|
Summary = "summary",
|
|
327
328
|
Shorts = "shorts",
|
|
328
329
|
MediumClips = "medium-clips",
|
|
@@ -361,6 +362,7 @@ interface PipelineResult {
|
|
|
361
362
|
captions?: string[];
|
|
362
363
|
captionedVideoPath?: string;
|
|
363
364
|
enhancedVideoPath?: string;
|
|
365
|
+
introOutroVideoPath?: string;
|
|
364
366
|
summary?: VideoSummary;
|
|
365
367
|
chapters?: Chapter[];
|
|
366
368
|
shorts: ShortClip[];
|
|
@@ -639,6 +641,7 @@ interface AppEnvironment {
|
|
|
639
641
|
SKIP_SOCIAL: boolean;
|
|
640
642
|
SKIP_CAPTIONS: boolean;
|
|
641
643
|
SKIP_VISUAL_ENHANCEMENT: boolean;
|
|
644
|
+
SKIP_INTRO_OUTRO: boolean;
|
|
642
645
|
LATE_API_KEY: string;
|
|
643
646
|
LATE_PROFILE_ID: string;
|
|
644
647
|
SKIP_SOCIAL_PUBLISH: boolean;
|
|
@@ -671,6 +674,7 @@ interface GlobalDefaults {
|
|
|
671
674
|
ideasRepo?: string;
|
|
672
675
|
lateProfileId?: string;
|
|
673
676
|
geminiModel?: string;
|
|
677
|
+
scheduleConfig?: string;
|
|
674
678
|
}
|
|
675
679
|
interface GlobalConfig {
|
|
676
680
|
credentials: GlobalCredentials;
|