Spaces:
Running
Running
File size: 2,092 Bytes
2a8b06e |
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 |
#!/bin/bash
URL=${1:-http://localhost:8000/v1/audio/speech}
curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1\",
\"input\": \"I'm going to play you the original voice, followed by the piper voice and finally the X T T S version 2 voice\",
\"voice\": \"echo\",
\"speed\": 1.0
}" | mpv --really-quiet -
for voice in alloy echo fable onyx nova shimmer ; do
echo $voice
curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1\",
\"input\": \"original\",
\"voice\": \"echo\",
\"speed\": 1.0
}" | mpv --really-quiet -
curl -s https://cdn.openai.com/API/docs/audio/$voice.wav | mpv --really-quiet -
curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1\",
\"input\": \"The quick brown fox jumped over the lazy dog. This voice is called $voice, how do you like this voice?\",
\"voice\": \"$voice\",
\"speed\": 1.0
}" | mpv --really-quiet -
curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1-hd\",
\"input\": \"The quick brown fox jumped over the lazy dog. This HD voice is called $voice, how do you like this voice?\",
\"voice\": \"$voice\",
\"speed\": 1.0
}" | mpv --really-quiet -
done
curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1\",
\"input\": \"the slowest voice\",
\"voice\": \"onyx\",
\"speed\": 0.25
}" | mpv --really-quiet -
curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1-hd\",
\"input\": \"the slowest HD voice\",
\"voice\": \"onyx\",
\"speed\": 0.25
}" | mpv --really-quiet -
curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1\",
\"input\": \"And this is how fast it can go, the fastest voice\",
\"voice\": \"nova\",
\"speed\": 4.0
}" | mpv --really-quiet -
curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1-hd\",
\"input\": \"And this is how fast it can go, the fastest HD voice\",
\"voice\": \"nova\",
\"speed\": 4.0
}" | mpv --really-quiet -
|