ailiaVoiceGraphemeToPhoneme method
- Pointer<
AILIAVoice> net, - Pointer<
Char> utf8, - int g2p_type
~japanese @brief G2Pを行います。 @param net ボイスオブジェクトポインタ @param text テキスト(UTF8) @param g2p_type AILIA_VOICE_G2P_TYPE_* @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。 @details 認識した結果はailiaVoiceGetFeatures APIで取得します。
~english @brief Perform g2p @param net A Voice instance pointer @param text Text(UTF8) @param g2p_type AILIA_VOICE_G2P_TYPE_* @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise. @details Get the result with ailiaVoiceGetFeatures API.
Implementation
int ailiaVoiceGraphemeToPhoneme(
ffi.Pointer<AILIAVoice> net,
ffi.Pointer<ffi.Char> utf8,
int g2p_type,
) {
return _ailiaVoiceGraphemeToPhoneme(
net,
utf8,
g2p_type,
);
}