문제

i have a menu, where user need to select 1 or 2. the prompt is an audio file where as the number is a twilio "Say".

<Play>http://example.com/russianaudio.wav</Play>
<Say voice="woman" language="ru">1</Say>

The problem is that after the audio file, instead of saying "один"(Russian for one), twilio is saying "one"(in English). Is there a way to get this working for Russian? also will the below work?

 <Say voice="woman" language="ru">один</Say>
도움이 되었습니까?

해결책

Twilio Evangelist here.

This should work fine, but you need to use the full two-part language code for <Say>, as well as voice Alice:

<Say voice="alice" language="ru-RU">1</Say>

That should work for you.

Hope this helps,

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top