@project-ava-supernova/core 0.2.76 → 0.2.77
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"write-video-post.d.ts","sourceRoot":"","sources":["../../src/tools/write-video-post.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,UAAU,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AACxF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAO5D;;;;;;;;;;;;;GAaG;AACH,qBAAa,kBAAmB,YAAW,IAAI;IAC7C,QAAQ,CAAC,IAAI,sBAAsB;IACnC,QAAQ,CAAC,WAAW,0HACgG;IACpH,QAAQ,CAAC,SAAS,EAAE,aAAa,CAAW;IAC5C,QAAQ,CAAC,oBAAoB,SAAS;IAEtC,QAAQ,CAAC,MAAM,EAAE,cAAc,CA8C7B;IAEI,OAAO,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"write-video-post.d.ts","sourceRoot":"","sources":["../../src/tools/write-video-post.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,IAAI,EAAE,UAAU,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AACxF,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAO5D;;;;;;;;;;;;;GAaG;AACH,qBAAa,kBAAmB,YAAW,IAAI;IAC7C,QAAQ,CAAC,IAAI,sBAAsB;IACnC,QAAQ,CAAC,WAAW,0HACgG;IACpH,QAAQ,CAAC,SAAS,EAAE,aAAa,CAAW;IAC5C,QAAQ,CAAC,oBAAoB,SAAS;IAEtC,QAAQ,CAAC,MAAM,EAAE,cAAc,CA8C7B;IAEI,OAAO,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,UAAU,CAAC;CA2QjG"}
|
|
@@ -38,7 +38,7 @@ export class WriteVideoPostTool {
|
|
|
38
38
|
},
|
|
39
39
|
script: {
|
|
40
40
|
type: 'string',
|
|
41
|
-
description: 'What YOU SAY over the clip, spoken in your own voice. Written to be heard, not read — short sentences, no hashtags, no emoji, no "link in bio". THE LENGTH IS DECIDED
|
|
41
|
+
description: 'What YOU SAY over the clip, spoken in your own voice. Written to be heard, not read — short sentences, no hashtags, no emoji, no "link in bio". THE LENGTH IS DECIDED FIRST and you write to fill it. A video is 15 SECONDS — write 25-32 words. Both bounds are enforced, so a one-line hook is REFUSED rather than quietly becoming a shorter clip, and an essay is refused rather than overrunning the picture. Fifteen seconds is one clear thought said properly: a claim and its turn, not a list. If an idea genuinely needs longer, set `duration` yourself and write to THAT length — the band moves with it (30s is 52-68 words). Reach for it because the idea earns the room, not out of habit. There is air at each end so your voice does not start on the first frame or stop on the last. Timed against the real voice at about 2.4 words a second. The ceiling keeps the voice inside the picture: a voice still talking after the clip stops is the most obviously broken thing a short can do. The floor keeps the picture from running on alone, and under 3 seconds Wan refuses the audio outright so nothing renders. A voiced clip is never 5 seconds — ask for 10 or more. Thirty seconds is a different KIND of writing, not a longer version of the same one: it is a walkthrough or a demonstration, and padding fifteen seconds of idea to fill it is worse than keeping it short. Omit the script entirely for a silent clip — the model scores its own audio, and a picture carried by that soundtrack is a real choice rather than a fallback.',
|
|
42
42
|
},
|
|
43
43
|
caption: {
|
|
44
44
|
type: 'string',
|
|
@@ -46,7 +46,7 @@ export class WriteVideoPostTool {
|
|
|
46
46
|
},
|
|
47
47
|
duration: {
|
|
48
48
|
type: 'number',
|
|
49
|
-
description: 'Clip length in seconds, 2-30. LEAVE IT OUT and you get
|
|
49
|
+
description: 'Clip length in seconds, 2-30. LEAVE IT OUT and you get 15s, whatever the subject — that is the format, and it holds one clear thought. Set it ONLY when the material genuinely needs otherwise, and the script band moves with whatever you set. 10 is a hook. 15 is the default: a full coaching line, a dish, a single point made properly. 30 is for something that truly needs showing — a walkthrough, a before-and-after, a process — and costs about twice the wait, so it should earn it. A padded clip loses the viewer, and padding gets easier the more room you have.',
|
|
50
50
|
},
|
|
51
51
|
title: { type: 'string', description: 'Optional short title for the library.' },
|
|
52
52
|
hashtags: {
|
|
@@ -212,25 +212,29 @@ export class WriteVideoPostTool {
|
|
|
212
212
|
const MIN_VOICED_SECONDS = 10;
|
|
213
213
|
const scriptWords = script ? script.split(/\s+/).filter(Boolean).length : 0;
|
|
214
214
|
/**
|
|
215
|
-
* Length is a FORMAT decision, and the format is
|
|
215
|
+
* Length is a FORMAT decision, and the format is 15 seconds.
|
|
216
216
|
*
|
|
217
|
-
*
|
|
218
|
-
*
|
|
219
|
-
*
|
|
220
|
-
* one that replaced it does not, and a plate of food holds for the full
|
|
221
|
-
* thirty — tested, not assumed.
|
|
217
|
+
* Thirty was the default for exactly one evening, set the moment wan3.0
|
|
218
|
+
* made it possible for every subject. Possible turned out not to be the
|
|
219
|
+
* same as right, and none of the reasons for fifteen are about the model:
|
|
222
220
|
*
|
|
223
|
-
*
|
|
224
|
-
*
|
|
225
|
-
*
|
|
226
|
-
*
|
|
227
|
-
*
|
|
221
|
+
* - half the frames, so it comes back sooner. A 30s render measured
|
|
222
|
+
* anywhere from 8 to 25 minutes; an evening of posts should not be a
|
|
223
|
+
* queue.
|
|
224
|
+
* - half the compute, all of which we pay for.
|
|
225
|
+
* - completion rate is what ranks a Reel or a Short, and a tight fifteen
|
|
226
|
+
* watched through beats a thirty abandoned halfway.
|
|
227
|
+
* - fifteen seconds cannot be padded. Thirty invites it.
|
|
228
228
|
*
|
|
229
|
-
*
|
|
230
|
-
*
|
|
231
|
-
*
|
|
229
|
+
* Thirty is still reachable, and the word band moves with it, so nothing is
|
|
230
|
+
* ever squeezed — a shorter clip gets a shorter script, not a compressed
|
|
231
|
+
* one. It just has to be ASKED for now.
|
|
232
|
+
*
|
|
233
|
+
* What has not changed: the length is decided BEFORE the writing. Deriving
|
|
234
|
+
* it from the script was tried and it collapsed to hook-length everything,
|
|
235
|
+
* because that is how she writes when nothing sets the shape.
|
|
232
236
|
*/
|
|
233
|
-
const DEFAULT_SECONDS =
|
|
237
|
+
const DEFAULT_SECONDS = 15;
|
|
234
238
|
const requested = typeof args.duration === 'number' ? args.duration : undefined;
|
|
235
239
|
const plannedDuration = requested === undefined
|
|
236
240
|
? DEFAULT_SECONDS
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"write-video-post.js","sourceRoot":"","sources":["../../src/tools/write-video-post.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAA4C,MAAM,oBAAoB,CAAC;AAEpG;gEACgE;AAChE,MAAM,OAAO,GAAG,kBAAkB,CAAC;AAEnC;;;;;;;;;;;;;GAaG;AACH,MAAM,OAAO,kBAAkB;IACpB,IAAI,GAAG,kBAAkB,CAAC;IAC1B,WAAW,GAClB,iHAAiH,CAAC;IAC3G,SAAS,GAAkB,OAAO,CAAC;IACnC,oBAAoB,GAAG,KAAK,CAAC;IAE7B,MAAM,GAAmB;QAChC,IAAI,EAAE,kBAAkB;QACxB,WAAW,EACT,4bAA4b;QAC9b,UAAU,EAAE;YACV,IAAI,EAAE,QAAQ;YACd,UAAU,EAAE;gBACV,QAAQ,EAAE;oBACR,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,CAAC,QAAQ,EAAE,WAAW,EAAE,SAAS,EAAE,UAAU,CAAC;oBACpD,WAAW,EAAE,oJAAoJ;iBAClK;gBACD,MAAM,EAAE;oBACN,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE,ySAAyS;iBACvT;gBACD,MAAM,EAAE;oBACN,IAAI,EAAE,QAAQ;oBACd,WAAW,EAAE
|
|
1
|
+
{"version":3,"file":"write-video-post.js","sourceRoot":"","sources":["../../src/tools/write-video-post.ts"],"names":[],"mappings":"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"}
|