mirror of
https://github.com/matatonic/openedai-speech
synced 2025-06-26 18:16:32 +00:00
7 lines
230 B
Batchfile
7 lines
230 B
Batchfile
@echo off
|
|
for %%i in (alloy echo fable onyx nova shimmer) do (
|
|
if not exist "voices\%%i.wav" (
|
|
curl -s https://cdn.openai.com/API/docs/audio/%%i.wav | ffmpeg -loglevel error -i - -ar 22050 -ac 1 voices\%%i.wav
|
|
)
|
|
)
|