top of page
- API -

text = reaper.AZ_TRSC_FullForMediaID(ctx, proj, mediaID, language)

- API Detail-

▼Input values

  • ctx(TRSCContext): transcription context

  • proj(ReaProject): Reaper project

  • mediaID(integer): media ID

  • language(string): language (optional, default: auto-detect)

▼Output values

  • text(string): full transcription result



For details on the transcription feature,hereplease refer to

- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_BRONZE")  

require("reaper_AZSTOKE_SILVER")   


ctx = reaper.AZ_TRSC_LoadModel()


text = reaper.AZ_TRSC_FullForMediaID(ctx, 0, 2, "ja")

Msg(text)


reaper.AZ_TRSC_ReleaseModel(ctx)


TRANSCRIPTION

AZ_TRSC_FullForMediaID

Supported versions:

1.4.0

onwards

Transcribe audio as a single sentence for a media ID

bottom of page