@facelessad/cli 2.1.0 → 2.1.1
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/README.md +1 -1
- package/SKILL.md +2 -2
- package/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ Three ways to get the file:
|
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
43
|
facelessad download 103 --out ad.mp4 # saves into the CURRENT directory
|
|
44
|
-
facelessad status 103 --json | jq -r .url # the raw link, valid ~
|
|
44
|
+
facelessad status 103 --json | jq -r .url # the raw link, valid ~24 hours
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
The third is the browser: every video made through the CLI also appears in My
|
package/SKILL.md
CHANGED
|
@@ -162,8 +162,8 @@ no voice, no script, no music and no SFX.
|
|
|
162
162
|
|
|
163
163
|
`--voiceover-text "<script>"` (or `--voiceover-file <path>`) makes the
|
|
164
164
|
narration **word-for-word** — the AI script writer is skipped and not
|
|
165
|
-
charged. The word limit follows the duration: 15 s fits ~
|
|
166
|
-
50 s ~
|
|
165
|
+
charged. The word limit follows the duration: 15 s fits ~45 words, 30 s ~80,
|
|
166
|
+
50 s ~130. Over the limit is a clear error, never a silent trim, so count
|
|
167
167
|
before sending. Not on music-video (its script is sung) or video-banner.
|
|
168
168
|
|
|
169
169
|
`--visual-direction` steers the storyboard and `--hook-text` the first frame.
|
package/index.js
CHANGED
|
@@ -861,7 +861,7 @@ Create flags:
|
|
|
861
861
|
--video-mode continuous|cuts (animated-ad and music-video only)
|
|
862
862
|
--voiceover-text "<script>" (your own narration, spoken word-for-word —
|
|
863
863
|
the AI script writer is skipped and not charged. Word limit follows
|
|
864
|
-
duration: 15s fits
|
|
864
|
+
duration: 15s fits 45 words, 30s fits 80, 50s fits 130. Over the limit
|
|
865
865
|
is an error, never a silent trim. Not on music-video or video-banner.)
|
|
866
866
|
--voiceover-file <path> (same, read from a local text file)
|
|
867
867
|
--visual-direction "<...>" (how the video should LOOK and what happens
|
|
@@ -950,7 +950,7 @@ function statusLine(d) {
|
|
|
950
950
|
let s = 'Video ' + d.id + ': ' + bold(d.status);
|
|
951
951
|
if (d.phase && !done) s += ' ' + dim('(' + d.phase + ')');
|
|
952
952
|
if (d.url) s += '\n' + dim('Download: ') + 'facelessad download ' + d.id + ' --out ad.mp4'
|
|
953
|
-
+ '\n' + dim('(the direct link is in --json output; it expires in ~
|
|
953
|
+
+ '\n' + dim('(the direct link is in --json output; it expires in ~24 h)');
|
|
954
954
|
if (d.error) s += '\n' + d.error;
|
|
955
955
|
return s;
|
|
956
956
|
}
|