vidpipe 1.3.15 → 1.3.16
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 +10414 -9556
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.js +5899 -5022
- package/dist/index.js.map +1 -1
- package/dist/public/index.html +46 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -96,6 +96,8 @@ interface VideoFile {
|
|
|
96
96
|
size: number;
|
|
97
97
|
createdAt: Date;
|
|
98
98
|
layout?: VideoLayout;
|
|
99
|
+
/** Path to generated thumbnail image for this video */
|
|
100
|
+
thumbnailPath?: string;
|
|
99
101
|
}
|
|
100
102
|
/**
|
|
101
103
|
* Detected layout metadata for a video.
|
|
@@ -213,6 +215,8 @@ interface ShortClip {
|
|
|
213
215
|
shareReason?: string;
|
|
214
216
|
/** Whether the content naturally loops back to the beginning */
|
|
215
217
|
isLoopCandidate?: boolean;
|
|
218
|
+
/** Path to generated thumbnail image for this short clip */
|
|
219
|
+
thumbnailPath?: string;
|
|
216
220
|
}
|
|
217
221
|
/** A planned medium clip segment */
|
|
218
222
|
interface MediumSegment {
|
|
@@ -250,6 +254,8 @@ interface MediumClip {
|
|
|
250
254
|
saveReason?: string;
|
|
251
255
|
/** Retention hooks planned at ~15-20 second intervals within the clip */
|
|
252
256
|
microHooks?: string[];
|
|
257
|
+
/** Path to generated thumbnail image for this medium clip */
|
|
258
|
+
thumbnailPath?: string;
|
|
253
259
|
}
|
|
254
260
|
interface SocialPost {
|
|
255
261
|
platform: Platform;
|