3. SDK Feature

Start record

Param
Type
Description

referenceText

String

Pronunciation reference text

languageAccent

LanguageAccent

Pronunciation language accent (Optional - Default English accent)

extraData

String

Attach data (Optional)

  • Used to start record for IOE evaluate pronunciation

  • When start record fails, it will be processed at callback onFail() in recording callback.

FTechIOEManager.instance().startRecord(referenceText: "")

Stop record

  • Used to stop record and start evaluate pronunciation process

  • When successful evaluate, the SDK will be return evaluate result on onComplete() in recording callback. Handling stop record successfully here.

  • When stop record and evaluate fails, it will be processed at callback onFail() in recording callback.

    FTechIOEManager.instance().stopRecord()

Last updated