I'm having issues trying to adjust the prosody speaking rate in IBM Watson's TTS Service using curl.
Here is the code I've tried, it does synthesize audio but just completely ignores the --header "prosody rate: +50%" ^
line I inserted which was to be expected as I'm unsure how to make that happen and just improvised that.
Does anyone know how I could get it to work as intended? I want to speed it up by 50%, but I can't find anything in the docs to help me when it comes to this request format.
Thanks!
curl -X POST -u "apikey:apikey" ^
--header "Content-Type: application/json" ^
--header "Accept: audio/wav" ^
--header "prosody rate: +50%" ^
--data "{\"text\":\"Adult capybaras are one meter long.\"}" ^
--output hello_world.wav ^
"URL/v1/synthesize?voice=en-US_HenryV3Voice"
prosody
is an SSML option, so I would expect it to be used as tags around the text that you are synthesising.