output audio formats #268
-
is the API tts_to_file() and tts_to_vc_file() support other audio format than .wav? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Currently Scipy is used to save audio, which only supports WAV. But you can instead use the |
Beta Was this translation helpful? Give feedback.
-
ah yes true, forgot this ones... thanks! |
Beta Was this translation helpful? Give feedback.
-
btw it's tts_with_vc() and not tts_to_vc() ;D |
Beta Was this translation helpful? Give feedback.
Currently Scipy is used to save audio, which only supports WAV. But you can instead use the
tts()
andtts_with_vc()
methods to get the raw audio and then use torchaudio or any other library to save it in a format of your choice.