makaron-cli 0.11.4 → 0.11.5
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/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +3 -9
- package/package.json +1 -1
- package/skills/makaron/SKILL.md +3 -9
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "makaron-cli",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.5",
|
|
4
4
|
"description": "AI image editing, video generation, music creation, and marketplace skill workflows via CLI. Agents can self-register, install skills, create projects, and produce creative media.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Makaron AI",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "makaron-cli",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.5",
|
|
4
4
|
"description": "AI image editing, video generation, music creation, and marketplace skill workflows via CLI. Agents can self-register, install skills, create projects, and produce creative media.",
|
|
5
5
|
"displayName": "Makaron",
|
|
6
6
|
"shortDescription": "AI image/video/music creation from the terminal",
|
package/README.md
CHANGED
|
@@ -162,23 +162,17 @@ Use `chat --project <id|auto> --video ...` for any project/timeline video work.
|
|
|
162
162
|
|
|
163
163
|
### With reference audio (MP3/WAV)
|
|
164
164
|
|
|
165
|
-
|
|
165
|
+
Attach a short song, beat, or voice recording when the video should follow audio pacing:
|
|
166
166
|
|
|
167
167
|
```bash
|
|
168
|
-
# Local audio: validate, upload, import, then generate with Seedance
|
|
169
168
|
npx makaron-cli chat --project auto \
|
|
170
169
|
--audio beat.mp3 \
|
|
171
170
|
--video-model seedance-fast \
|
|
172
171
|
--video-resolution 480p \
|
|
173
|
-
-b "make a 15s beat-synced video
|
|
174
|
-
|
|
175
|
-
# Public audio URL: store the URL directly, no mirroring
|
|
176
|
-
npx makaron-cli chat --project <id> \
|
|
177
|
-
--audio https://example.com/voice.wav \
|
|
178
|
-
-b "use this voice recording as the pacing reference for the video"
|
|
172
|
+
-b "make a 15s beat-synced video"
|
|
179
173
|
```
|
|
180
174
|
|
|
181
|
-
|
|
175
|
+
`--audio` accepts repeatable local files or public URLs. Local MP3/WAV files must be 2-15s and <=15MB; reference audio currently works with Seedance video generation.
|
|
182
176
|
|
|
183
177
|
### Fix one video moment from a screenshot
|
|
184
178
|
|
package/package.json
CHANGED
package/skills/makaron/SKILL.md
CHANGED
|
@@ -161,23 +161,17 @@ Use `chat --project <id|auto> --video ...` for any project/timeline video work.
|
|
|
161
161
|
|
|
162
162
|
### With reference audio (MP3/WAV)
|
|
163
163
|
|
|
164
|
-
|
|
164
|
+
Attach a short song, beat, or voice recording when the video should follow audio pacing:
|
|
165
165
|
|
|
166
166
|
```bash
|
|
167
|
-
# Local audio: validate, upload, import, then generate with Seedance
|
|
168
167
|
npx makaron-cli chat --project auto \
|
|
169
168
|
--audio beat.mp3 \
|
|
170
169
|
--video-model seedance-fast \
|
|
171
170
|
--video-resolution 480p \
|
|
172
|
-
-b "make a 15s beat-synced video
|
|
173
|
-
|
|
174
|
-
# Public audio URL: store the URL directly, no mirroring
|
|
175
|
-
npx makaron-cli chat --project <id> \
|
|
176
|
-
--audio https://example.com/voice.wav \
|
|
177
|
-
-b "use this voice recording as the pacing reference for the video"
|
|
171
|
+
-b "make a 15s beat-synced video"
|
|
178
172
|
```
|
|
179
173
|
|
|
180
|
-
|
|
174
|
+
`--audio` accepts repeatable local files or public URLs. Local MP3/WAV files must be 2-15s and <=15MB; reference audio currently works with Seedance video generation.
|
|
181
175
|
|
|
182
176
|
### Fix one video moment from a screenshot
|
|
183
177
|
|