9 lines
319 B
Bash
9 lines
319 B
Bash
#!/bin/bash
|
|
curl -s -o /tmp/clone_test.wav \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"input":"Hallo, ich bin eine geklonte Stimme. Das ist ziemlich cool.","voice":"meine_stimme","language":"german"}' \
|
|
http://localhost:8072/v1/audio/speech
|
|
echo "Clone WAV:"
|
|
ls -la /tmp/clone_test.wav
|
|
file /tmp/clone_test.wav
|