File size: 20,905 Bytes
9f5c8f7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 | #!/bin/bash
#
# ACE-Step Music Generation CLI (Bash + Curl + jq)
#
# Requirements: curl, jq
#
# Usage:
# ./acemusic.sh generate "Music description" [options]
# ./acemusic.sh random [--no-thinking]
# ./acemusic.sh status <job_id>
# ./acemusic.sh models
# ./acemusic.sh health
# ./acemusic.sh config [--get|--set|--reset]
#
# Output:
# - Results saved to output/<job_id>.json
# - Audio files downloaded to output/<job_id>_1.mp3, output/<job_id>_2.mp3, ...
set -e
# Ensure UTF-8 encoding for non-ASCII characters (Japanese, Chinese, etc.)
export LANG="${LANG:-en_US.UTF-8}"
export LC_ALL="${LC_ALL:-en_US.UTF-8}"
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
CONFIG_FILE="${SCRIPT_DIR}/config.json"
# Output dir at same level as .claude (go up 4 levels from scripts/)
OUTPUT_DIR="$(cd "${SCRIPT_DIR}/../../../.." && pwd)/acemusic_output"
DEFAULT_API_URL="http://127.0.0.1:8001"
# Colors
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
CYAN='\033[0;36m'
NC='\033[0m'
# Check dependencies
check_deps() {
if ! command -v curl &> /dev/null; then
echo -e "${RED}Error: curl is required but not installed.${NC}"
exit 1
fi
if ! command -v jq &> /dev/null; then
echo -e "${RED}Error: jq is required but not installed.${NC}"
echo "Install: apt install jq / brew install jq / choco install jq"
exit 1
fi
}
# JSON value extractor using jq
# Usage: json_get "$json" ".key" or json_get "$json" ".nested.key"
json_get() {
local json="$1"
local path="$2"
echo "$json" | jq -r "$path // empty" 2>/dev/null
}
# Extract array values using jq
json_get_array() {
local json="$1"
local path="$2"
echo "$json" | jq -r "$path[]? // empty" 2>/dev/null
}
# Ensure output directory exists
ensure_output_dir() {
mkdir -p "$OUTPUT_DIR"
}
# Default config
DEFAULT_CONFIG='{
"api_url": "http://127.0.0.1:8001",
"generation": {
"thinking": true,
"use_format": true,
"use_cot_caption": true,
"use_cot_language": true,
"audio_format": "mp3",
"vocal_language": "en"
}
}'
# Ensure config file exists
ensure_config() {
if [ ! -f "$CONFIG_FILE" ]; then
echo "$DEFAULT_CONFIG" > "$CONFIG_FILE"
fi
}
# Get config value using jq
get_config() {
local key="$1"
ensure_config
# Convert dot notation to jq path: "generation.thinking" -> ".generation.thinking"
local jq_path=".${key}"
local value
value=$(jq -r "$jq_path // empty" "$CONFIG_FILE" 2>/dev/null)
# Remove any trailing whitespace/newlines (Windows compatibility)
echo "$value" | tr -d '\r\n'
}
# Normalize boolean value for jq --argjson
normalize_bool() {
local val="$1"
local default="${2:-false}"
case "$val" in
true|True|TRUE|1) echo "true" ;;
false|False|FALSE|0) echo "false" ;;
*) echo "$default" ;;
esac
}
# Set config value using jq
set_config() {
local key="$1"
local value="$2"
ensure_config
local tmp_file="${CONFIG_FILE}.tmp"
local jq_path=".${key}"
# Determine value type and set accordingly
if [ "$value" = "true" ] || [ "$value" = "false" ]; then
jq "$jq_path = $value" "$CONFIG_FILE" > "$tmp_file"
elif [[ "$value" =~ ^-?[0-9]+$ ]] || [[ "$value" =~ ^-?[0-9]+\.[0-9]+$ ]]; then
jq "$jq_path = $value" "$CONFIG_FILE" > "$tmp_file"
else
jq "$jq_path = \"$value\"" "$CONFIG_FILE" > "$tmp_file"
fi
mv "$tmp_file" "$CONFIG_FILE"
echo "Set $key = $value"
}
# Load API URL
load_api_url() {
local url=$(get_config "api_url")
echo "${url:-$DEFAULT_API_URL}"
}
# Check API health
check_health() {
local url="$1"
local status
status=$(curl -s -o /dev/null -w "%{http_code}" --connect-timeout 5 "${url}/health" 2>/dev/null) || true
[ "$status" = "200" ]
}
# Prompt for URL
prompt_for_url() {
echo ""
echo -e "${YELLOW}API server is not responding.${NC}"
echo "Please enter the API URL (or press Enter for default):"
read -p "API URL [$DEFAULT_API_URL]: " user_input
echo "${user_input:-$DEFAULT_API_URL}"
}
# Ensure API connection
ensure_connection() {
ensure_config
local api_url=$(load_api_url)
if check_health "$api_url"; then
echo "$api_url"
return 0
fi
echo -e "${YELLOW}Cannot connect to: $api_url${NC}" >&2
local new_url=$(prompt_for_url)
if check_health "$new_url"; then
set_config "api_url" "$new_url" > /dev/null
echo -e "${GREEN}Saved API URL: $new_url${NC}" >&2
echo "$new_url"
return 0
fi
echo -e "${RED}Error: Cannot connect to $new_url${NC}" >&2
exit 1
}
# Save result to JSON file
save_result() {
local job_id="$1"
local result_json="$2"
ensure_output_dir
local output_file="${OUTPUT_DIR}/${job_id}.json"
echo "$result_json" > "$output_file"
echo -e "${GREEN}Result saved: $output_file${NC}"
}
# Health command
cmd_health() {
check_deps
ensure_config
local api_url=$(load_api_url)
echo "Checking API at: $api_url"
if check_health "$api_url"; then
echo -e "${GREEN}Status: OK${NC}"
curl -s "${api_url}/health"
echo ""
else
echo -e "${RED}Status: FAILED${NC}"
exit 1
fi
}
# Config command
cmd_config() {
check_deps
ensure_config
local action=""
local key=""
local value=""
while [[ $# -gt 0 ]]; do
case $1 in
--get) action="get"; key="$2"; shift 2 ;;
--set) action="set"; key="$2"; value="$3"; shift 3 ;;
--reset) action="reset"; shift ;;
--list) action="list"; shift ;;
*) shift ;;
esac
done
case "$action" in
"get")
[ -z "$key" ] && { echo -e "${RED}Error: --get requires KEY${NC}"; exit 1; }
local result=$(get_config "$key")
[ -n "$result" ] && echo "$key = $result" || echo "Key not found: $key"
;;
"set")
[ -z "$key" ] || [ -z "$value" ] && { echo -e "${RED}Error: --set requires KEY VALUE${NC}"; exit 1; }
set_config "$key" "$value"
;;
"reset")
echo "$DEFAULT_CONFIG" > "$CONFIG_FILE"
echo -e "${GREEN}Configuration reset to defaults.${NC}"
cat "$CONFIG_FILE"
;;
"list")
echo "Current configuration:"
cat "$CONFIG_FILE"
;;
*)
echo "Config file: $CONFIG_FILE"
echo "Output dir: $OUTPUT_DIR"
echo "----------------------------------------"
cat "$CONFIG_FILE"
echo "----------------------------------------"
echo ""
echo "Usage:"
echo " config --list Show config"
echo " config --get <key> Get value"
echo " config --set <key> <val> Set value"
echo " config --reset Reset to defaults"
;;
esac
}
# Models command
cmd_models() {
check_deps
local api_url=$(ensure_connection)
echo "Available Models:"
echo "----------------------------------------"
curl -s "${api_url}/v1/models"
echo ""
}
# Query job result via /query_result endpoint
query_job_result() {
local api_url="$1"
local job_id="$2"
local payload=$(jq -n --arg id "$job_id" '{"task_id_list": [$id]}')
curl -s -X POST "${api_url}/query_result" \
-H "Content-Type: application/json; charset=utf-8" \
-d "$payload"
}
# Parse query_result response to extract status (0=processing, 1=success, 2=failed)
parse_query_status() {
local response="$1"
echo "$response" | jq -r '.[0].status // 0'
}
# Parse result JSON string from query_result response
# The result field is a JSON string that needs to be parsed
parse_query_result() {
local response="$1"
echo "$response" | jq -r '.[0].result // "[]"'
}
# Extract audio file paths from result (returns newline-separated paths)
parse_audio_files() {
local result="$1"
echo "$result" | jq -r '.[]?.file // empty' 2>/dev/null
}
# Extract metas value from result
parse_metas_value() {
local result="$1"
local key="$2"
echo "$result" | jq -r ".[0].metas.$key // .[0].$key // empty" 2>/dev/null
}
# Status command
cmd_status() {
check_deps
local job_id="$1"
[ -z "$job_id" ] && { echo -e "${RED}Error: job_id required${NC}"; echo "Usage: $0 status <job_id>"; exit 1; }
local api_url=$(ensure_connection)
local response=$(query_job_result "$api_url" "$job_id")
local status=$(parse_query_status "$response")
echo "Job ID: $job_id"
case "$status" in
0)
echo "Status: processing"
;;
1)
echo "Status: succeeded"
echo ""
local result=$(parse_query_result "$response")
local bpm=$(parse_metas_value "$result" "bpm")
local keyscale=$(parse_metas_value "$result" "keyscale")
local duration=$(parse_metas_value "$result" "duration")
echo "Result:"
[ -n "$bpm" ] && echo " BPM: $bpm"
[ -n "$keyscale" ] && echo " Key: $keyscale"
[ -n "$duration" ] && echo " Duration: ${duration}s"
# Save and download
save_result "$job_id" "$response"
download_audios "$api_url" "$job_id" "$result"
;;
2)
echo "Status: failed"
echo ""
echo -e "${RED}Task failed${NC}"
;;
*)
echo "Status: unknown ($status)"
;;
esac
}
# Download audio files from parsed result
download_audios() {
local api_url="$1"
local job_id="$2"
local result="$3"
ensure_output_dir
local audio_format=$(get_config "generation.audio_format")
[ -z "$audio_format" ] && audio_format="mp3"
local count=1
while IFS= read -r audio_path; do
if [ -n "$audio_path" ]; then
local output_file="${OUTPUT_DIR}/${job_id}_${count}.${audio_format}"
local download_url="${api_url}${audio_path}"
echo -e " ${CYAN}Downloading audio $count...${NC}"
if curl -s -o "$output_file" "$download_url"; then
echo -e " ${GREEN}Saved: $output_file${NC}"
else
echo -e " ${RED}Failed to download: $download_url${NC}"
fi
count=$((count + 1))
fi
done <<< "$(parse_audio_files "$result")"
}
# Wait for job and download results
wait_for_job() {
local api_url="$1"
local job_id="$2"
echo "Job created: $job_id"
echo "Output: $OUTPUT_DIR"
echo ""
while true; do
local response=$(query_job_result "$api_url" "$job_id")
local status=$(parse_query_status "$response")
case "$status" in
1)
echo ""
echo -e "${GREEN}Generation completed!${NC}"
echo ""
local result=$(parse_query_result "$response")
local bpm=$(parse_metas_value "$result" "bpm")
local keyscale=$(parse_metas_value "$result" "keyscale")
local duration=$(parse_metas_value "$result" "duration")
echo "Metadata:"
[ -n "$bpm" ] && echo " BPM: $bpm"
[ -n "$keyscale" ] && echo " Key: $keyscale"
[ -n "$duration" ] && echo " Duration: ${duration}s"
echo ""
# Save result JSON
save_result "$job_id" "$response"
# Download audio files
echo "Downloading audio files..."
download_audios "$api_url" "$job_id" "$result"
echo ""
echo -e "${GREEN}Done! Files saved to: $OUTPUT_DIR${NC}"
return 0
;;
2)
echo ""
echo -e "${RED}Generation failed!${NC}"
# Save error result
save_result "$job_id" "$response"
return 1
;;
0)
printf "\rProcessing... "
;;
*)
printf "\rWaiting... "
;;
esac
sleep 5
done
}
# Generate command
cmd_generate() {
check_deps
ensure_config
local caption="" lyrics="" description="" thinking="" use_format=""
local no_thinking=false no_format=false no_wait=false
local model="" language="" steps="" guidance="" seed="" duration="" bpm="" batch=""
while [[ $# -gt 0 ]]; do
case $1 in
--caption|-c) caption="$2"; shift 2 ;;
--lyrics|-l) lyrics="$2"; shift 2 ;;
--description|-d) description="$2"; shift 2 ;;
--thinking|-t) thinking="true"; shift ;;
--no-thinking) no_thinking=true; shift ;;
--use-format) use_format="true"; shift ;;
--no-format) no_format=true; shift ;;
--model|-m) model="$2"; shift 2 ;;
--language|--vocal-language) language="$2"; shift 2 ;;
--steps) steps="$2"; shift 2 ;;
--guidance) guidance="$2"; shift 2 ;;
--seed) seed="$2"; shift 2 ;;
--duration) duration="$2"; shift 2 ;;
--bpm) bpm="$2"; shift 2 ;;
--batch) batch="$2"; shift 2 ;;
--no-wait) no_wait=true; shift ;;
*) [ -z "$caption" ] && caption="$1"; shift ;;
esac
done
# If no caption but has description, use simple mode
if [ -z "$caption" ] && [ -z "$description" ]; then
echo -e "${RED}Error: caption or description required${NC}"
echo "Usage: $0 generate \"Music description\" [options]"
echo " $0 generate -d \"Simple description\" [options]"
exit 1
fi
local api_url=$(ensure_connection)
# Get defaults
local def_thinking=$(get_config "generation.thinking")
local def_format=$(get_config "generation.use_format")
local def_cot_caption=$(get_config "generation.use_cot_caption")
local def_cot_language=$(get_config "generation.use_cot_language")
local def_language=$(get_config "generation.vocal_language")
local def_audio_format=$(get_config "generation.audio_format")
[ -z "$thinking" ] && thinking="${def_thinking:-true}"
[ -z "$use_format" ] && use_format="${def_format:-true}"
[ -z "$language" ] && language="${def_language:-en}"
[ "$no_thinking" = true ] && thinking="false"
[ "$no_format" = true ] && use_format="false"
# Normalize boolean values for jq --argjson
thinking=$(normalize_bool "$thinking" "true")
use_format=$(normalize_bool "$use_format" "true")
local cot_caption=$(normalize_bool "$def_cot_caption" "true")
local cot_language=$(normalize_bool "$def_cot_language" "true")
# Build payload using jq for proper escaping
local payload=$(jq -n \
--arg prompt "$caption" \
--arg lyrics "${lyrics:-}" \
--arg sample_query "${description:-}" \
--argjson thinking "$thinking" \
--argjson use_format "$use_format" \
--argjson use_cot_caption "$cot_caption" \
--argjson use_cot_language "$cot_language" \
--arg vocal_language "$language" \
--arg audio_format "${def_audio_format:-mp3}" \
'{
prompt: $prompt,
lyrics: $lyrics,
sample_query: $sample_query,
thinking: $thinking,
use_format: $use_format,
use_cot_caption: $use_cot_caption,
use_cot_language: $use_cot_language,
vocal_language: $vocal_language,
audio_format: $audio_format,
use_random_seed: true
}')
# Add optional parameters
[ -n "$model" ] && payload=$(echo "$payload" | jq --arg v "$model" '. + {model: $v}')
[ -n "$steps" ] && payload=$(echo "$payload" | jq --argjson v "$steps" '. + {inference_steps: $v}')
[ -n "$guidance" ] && payload=$(echo "$payload" | jq --argjson v "$guidance" '. + {guidance_scale: $v}')
[ -n "$seed" ] && payload=$(echo "$payload" | jq --argjson v "$seed" '. + {seed: $v, use_random_seed: false}')
[ -n "$duration" ] && payload=$(echo "$payload" | jq --argjson v "$duration" '. + {audio_duration: $v}')
[ -n "$bpm" ] && payload=$(echo "$payload" | jq --argjson v "$bpm" '. + {bpm: $v}')
[ -n "$batch" ] && payload=$(echo "$payload" | jq --argjson v "$batch" '. + {batch_size: $v}')
echo "Generating music..."
if [ -n "$description" ]; then
echo " Mode: Simple (description)"
echo " Description: ${description:0:50}..."
else
echo " Mode: Caption"
echo " Caption: ${caption:0:50}..."
fi
echo " Thinking: $thinking, Format: $use_format"
echo " Output: $OUTPUT_DIR"
echo ""
# Write payload to temp file to ensure proper UTF-8 encoding
local temp_payload=$(mktemp)
printf '%s' "$payload" > "$temp_payload"
local response=$(curl -s -X POST "${api_url}/release_task" \
-H "Content-Type: application/json; charset=utf-8" \
--data-binary "@${temp_payload}")
rm -f "$temp_payload"
local job_id=$(echo "$response" | jq -r '.task_id // empty')
[ -z "$job_id" ] && { echo -e "${RED}Error: Failed to create job${NC}"; echo "$response"; exit 1; }
if [ "$no_wait" = true ]; then
echo "Job ID: $job_id"
echo "Use '$0 status $job_id' to check progress and download"
else
wait_for_job "$api_url" "$job_id"
fi
}
# Random command
cmd_random() {
check_deps
ensure_config
local thinking="" no_thinking=false no_wait=false
while [[ $# -gt 0 ]]; do
case $1 in
--thinking|-t) thinking="true"; shift ;;
--no-thinking) no_thinking=true; shift ;;
--no-wait) no_wait=true; shift ;;
*) shift ;;
esac
done
local api_url=$(ensure_connection)
local def_thinking=$(get_config "generation.thinking")
[ -z "$thinking" ] && thinking="${def_thinking:-true}"
[ "$no_thinking" = true ] && thinking="false"
# Normalize boolean for jq --argjson
thinking=$(normalize_bool "$thinking" "true")
echo "Generating random music..."
echo " Thinking: $thinking"
echo " Output: $OUTPUT_DIR"
echo ""
local payload=$(jq -n --argjson thinking "$thinking" '{sample_mode: true, thinking: $thinking}')
# Write payload to temp file
local temp_payload=$(mktemp)
printf '%s' "$payload" > "$temp_payload"
local response=$(curl -s -X POST "${api_url}/release_task" \
-H "Content-Type: application/json; charset=utf-8" \
--data-binary "@${temp_payload}")
rm -f "$temp_payload"
local job_id=$(echo "$response" | jq -r '.task_id // empty')
[ -z "$job_id" ] && { echo -e "${RED}Error: Failed to create job${NC}"; echo "$response"; exit 1; }
if [ "$no_wait" = true ]; then
echo "Job ID: $job_id"
echo "Use '$0 status $job_id' to check progress and download"
else
wait_for_job "$api_url" "$job_id"
fi
}
# Help
show_help() {
echo "ACE-Step Music Generation CLI"
echo ""
echo "Requirements: curl, jq"
echo ""
echo "Usage: $0 <command> [options]"
echo ""
echo "Commands:"
echo " generate Generate music from text"
echo " random Generate random music"
echo " status Check job status and download results"
echo " models List available models"
echo " health Check API health"
echo " config Manage configuration"
echo ""
echo "Output:"
echo " Results saved to: $OUTPUT_DIR/<job_id>.json"
echo " Audio files: $OUTPUT_DIR/<job_id>_1.mp3, ..."
echo ""
echo "Generate Options:"
echo " -c, --caption Music style/genre description (caption mode)"
echo " -d, --description Simple description, LM auto-generates caption/lyrics"
echo " -l, --lyrics Lyrics text"
echo " -t, --thinking Enable thinking mode (default: true)"
echo " --no-thinking Disable thinking mode"
echo " --no-format Disable format enhancement"
echo ""
echo "Examples:"
echo " $0 generate \"Pop music with guitar\" # Caption mode"
echo " $0 generate -d \"A February love song\" # Simple mode (LM generates)"
echo " $0 generate -c \"Jazz\" -l \"[Verse] Hello\" # With lyrics"
echo " $0 random"
echo " $0 status <job_id>"
echo " $0 config --set generation.thinking false"
}
# Main
case "$1" in
generate) shift; cmd_generate "$@" ;;
random) shift; cmd_random "$@" ;;
status) shift; cmd_status "$@" ;;
models) cmd_models ;;
health) cmd_health ;;
config) shift; cmd_config "$@" ;;
help|--help|-h) show_help ;;
*) show_help; exit 1 ;;
esac
|