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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "makaron-cli",
3
- "version": "0.11.4",
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.4",
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
- Use `--audio` when a song, beat, or voice recording should guide the video generation. Audio is imported into the project music library and passed to the agent as `audio_1`, `audio_2`, etc.; it does not become a timeline media item.
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 from this music"
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
- Local audio supports MP3/WAV, 2-15s duration, and max 15MB. Reference audio is currently supported for Seedance video generation; Kling and Grok will return a clear unsupported-model error if audio refs are used.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "makaron-cli",
3
- "version": "0.11.4",
3
+ "version": "0.11.5",
4
4
  "description": "Talk to Makaron Agent from the terminal — create projects, edit images, generate videos",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -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
- Use `--audio` when a song, beat, or voice recording should guide the video generation. Audio is imported into the project music library and passed to the agent as `audio_1`, `audio_2`, etc.; it does not become a timeline media item.
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 from this music"
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
- Local audio supports MP3/WAV, 2-15s duration, and max 15MB. Reference audio is currently supported for Seedance video generation; Kling and Grok will return a clear unsupported-model error if audio refs are used.
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