don't hardcode the url

This commit is contained in:
matatonic 2023-11-29 03:30:59 -05:00
parent 78ca6fe931
commit 90e69b074a

View File

@ -1,17 +1,19 @@
#!/bin/sh #!/bin/bash
curl -s http://localhost:8000/v1/audio/speech -H "Content-Type: application/json" -d "{ URL=${1:-http://localhost:8000/v1/audio/speech}
curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1\", \"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\", \"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\", \"voice\": \"echo\",
\"speed\": 1.0 \"speed\": 1.0
}" | mpv --really-quiet - }" | mpv --really-quiet -
for voice in alloy echo fable onyx nova shimmer ; do for voice in alloy echo fable onyx nova shimmer ; do
echo $voice echo $voice
curl -s http://localhost:8000/v1/audio/speech -H "Content-Type: application/json" -d "{ curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1\", \"model\": \"tts-1\",
\"input\": \"original\", \"input\": \"original\",
\"voice\": \"echo\", \"voice\": \"echo\",
@ -20,14 +22,14 @@ curl -s http://localhost:8000/v1/audio/speech -H "Content-Type: application/jso
curl -s https://cdn.openai.com/API/docs/audio/$voice.wav | mpv --really-quiet - curl -s https://cdn.openai.com/API/docs/audio/$voice.wav | mpv --really-quiet -
curl -s http://localhost:8000/v1/audio/speech -H "Content-Type: application/json" -d "{ curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1\", \"model\": \"tts-1\",
\"input\": \"The quick brown fox jumped over the lazy dog. This voice is called $voice, how do you like this voice?\", \"input\": \"The quick brown fox jumped over the lazy dog. This voice is called $voice, how do you like this voice?\",
\"voice\": \"$voice\", \"voice\": \"$voice\",
\"speed\": 1.0 \"speed\": 1.0
}" | mpv --really-quiet - }" | mpv --really-quiet -
curl -s http://localhost:8000/v1/audio/speech -H "Content-Type: application/json" -d "{ curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1-hd\", \"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?\", \"input\": \"The quick brown fox jumped over the lazy dog. This HD voice is called $voice, how do you like this voice?\",
\"voice\": \"$voice\", \"voice\": \"$voice\",
@ -36,28 +38,28 @@ curl -s http://localhost:8000/v1/audio/speech -H "Content-Type: application/jso
done done
curl -s http://localhost:8000/v1/audio/speech -H "Content-Type: application/json" -d "{ curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1\", \"model\": \"tts-1\",
\"input\": \"the slowest voice\", \"input\": \"the slowest voice\",
\"voice\": \"onyx\", \"voice\": \"onyx\",
\"speed\": 0.25 \"speed\": 0.25
}" | mpv --really-quiet - }" | mpv --really-quiet -
curl -s http://localhost:8000/v1/audio/speech -H "Content-Type: application/json" -d "{ curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1-hd\", \"model\": \"tts-1-hd\",
\"input\": \"the slowest HD voice\", \"input\": \"the slowest HD voice\",
\"voice\": \"onyx\", \"voice\": \"onyx\",
\"speed\": 0.25 \"speed\": 0.25
}" | mpv --really-quiet - }" | mpv --really-quiet -
curl -s http://localhost:8000/v1/audio/speech -H "Content-Type: application/json" -d "{ curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1\", \"model\": \"tts-1\",
\"input\": \"And this is how fast it can go, the fastest voice\", \"input\": \"And this is how fast it can go, the fastest voice\",
\"voice\": \"nova\", \"voice\": \"nova\",
\"speed\": 4.0 \"speed\": 4.0
}" | mpv --really-quiet - }" | mpv --really-quiet -
curl -s http://localhost:8000/v1/audio/speech -H "Content-Type: application/json" -d "{ curl -s $URL -H "Content-Type: application/json" -d "{
\"model\": \"tts-1-hd\", \"model\": \"tts-1-hd\",
\"input\": \"And this is how fast it can go, the fastest HD voice\", \"input\": \"And this is how fast it can go, the fastest HD voice\",
\"voice\": \"nova\", \"voice\": \"nova\",