@koda-sl/baker-cli 0.142.0-dev.c858bcc46 → 0.144.0
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 +15 -1
- package/dist/{chunk-TXNOPO6P.js → chunk-TAGQCU36.js} +4 -4
- package/dist/chunk-TAGQCU36.js.map +1 -0
- package/dist/cli.js +241 -25
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-TXNOPO6P.js.map +0 -1
package/README.md
CHANGED
|
@@ -2132,7 +2132,11 @@ baker videos search "tutorial" --tags explainer,ugc --limit 5
|
|
|
2132
2132
|
|
|
2133
2133
|
### `baker videos get <id>`
|
|
2134
2134
|
|
|
2135
|
-
Get a single video by ID.
|
|
2135
|
+
Get a single video by ID. `--full` includes the auto-generated **transcript** (Baker transcribes every upload with speech-to-text), a `transcript_segment_count`, and the titled/timestamped **scene breakdown** — so you can read what a clip says and shows without watching it. Default JSON also returns the raw `transcript` + timed `transcriptSegments`; `--full` is what surfaces them in `--output md`/`files` too.
|
|
2136
|
+
|
|
2137
|
+
```bash
|
|
2138
|
+
baker videos get j571abc123 --full --output md
|
|
2139
|
+
```
|
|
2136
2140
|
|
|
2137
2141
|
### `baker videos upload <file>`
|
|
2138
2142
|
|
|
@@ -2326,6 +2330,16 @@ Top winning ads for one advertiser id → `GET /api/ad-library/advertiser-winner
|
|
|
2326
2330
|
baker winning-ads winners adv_123 --top 15 --output md
|
|
2327
2331
|
```
|
|
2328
2332
|
|
|
2333
|
+
### `baker winning-ads content <ad-id>`
|
|
2334
|
+
|
|
2335
|
+
Read what's **inside** one ad → `GET /api/ad-library/ad-content`. `search`/`winners`/`feed` return a lean shortlist; this opens a single `ad_id` so you can understand a reference before reproducing it. For a **video** it returns the spoken `transcript`, the `on_screen_text` overlays, and the ad `copy` (`primary_text`/`headline`/`cta`); a **static** ad returns only the copy. Add `--full` for speech (voiceover style, speaker count, direct-address), pacing (scene count, shot length, key timeline moments), any recognised soundtrack, and each on-screen overlay's role + position (e.g. `GLOBAL PAYROLL @0.5s [hook, top]`) so you can place text faithfully. `--platform meta|linkedin` selects which platform the id is on (default `meta`).
|
|
2336
|
+
|
|
2337
|
+
```bash
|
|
2338
|
+
baker winning-ads content adg_123 # transcript + on-screen text + copy
|
|
2339
|
+
baker winning-ads content adg_123 --platform meta --full # + speech, pacing, soundtrack
|
|
2340
|
+
baker winning-ads content adg_123 --full --output md
|
|
2341
|
+
```
|
|
2342
|
+
|
|
2329
2343
|
### `baker winning-ads unfollow <advertiser>`
|
|
2330
2344
|
|
|
2331
2345
|
Stop following a brand by advertiser id → `POST /api/ad-library/unfollow`. Returns `{ removed }`.
|
|
@@ -7,9 +7,9 @@ import {
|
|
|
7
7
|
__toESM
|
|
8
8
|
} from "./chunk-RK67WL4O.js";
|
|
9
9
|
|
|
10
|
-
//
|
|
10
|
+
// ../../node_modules/.pnpm/safe-stable-stringify@2.5.0/node_modules/safe-stable-stringify/index.js
|
|
11
11
|
var require_safe_stable_stringify = __commonJS({
|
|
12
|
-
"
|
|
12
|
+
"../../node_modules/.pnpm/safe-stable-stringify@2.5.0/node_modules/safe-stable-stringify/index.js"(exports, module) {
|
|
13
13
|
"use strict";
|
|
14
14
|
var { hasOwnProperty } = Object.prototype;
|
|
15
15
|
var stringify = configure2();
|
|
@@ -1070,7 +1070,7 @@ function resolveAdaptFormats(params) {
|
|
|
1070
1070
|
return params.formats ?? [];
|
|
1071
1071
|
}
|
|
1072
1072
|
|
|
1073
|
-
//
|
|
1073
|
+
// ../../node_modules/.pnpm/safe-stable-stringify@2.5.0/node_modules/safe-stable-stringify/esm/wrapper.js
|
|
1074
1074
|
var import__ = __toESM(require_safe_stable_stringify(), 1);
|
|
1075
1075
|
var configure = import__.default.configure;
|
|
1076
1076
|
var wrapper_default = import__.default;
|
|
@@ -7837,4 +7837,4 @@ export {
|
|
|
7837
7837
|
defaultRegistry,
|
|
7838
7838
|
createEngineFromEnv
|
|
7839
7839
|
};
|
|
7840
|
-
//# sourceMappingURL=chunk-
|
|
7840
|
+
//# sourceMappingURL=chunk-TAGQCU36.js.map
|