ailiaVoiceSetSpeed method
- Pointer<
AILIAVoice> net, - double speed
~japanese @brief 音声合成の速度を設定します。 @param net ボイスオブジェクトポインタ @param speed 速度(デフォルト1.0、0より大きい値) @return 成功した場合は \ref AILIA_STATUS_SUCCESS 、そうでなければエラーコードを返す。 @details GPT-SoVITS V2およびV3で使用できます。V1では無効です。
~english @brief Set the speech speed for synthesis. @param net A Voice instance pointer @param speed Speed value (default 1.0, must be greater than 0) @return If this function is successful, it returns \ref AILIA_STATUS_SUCCESS , or an error code otherwise. @details Supported by GPT-SoVITS V2 and V3. Not effective for V1.
Implementation
int ailiaVoiceSetSpeed(
ffi.Pointer<AILIAVoice> net,
double speed,
) {
return _ailiaVoiceSetSpeed(
net,
speed,
);
}