top of page
- API -

text = reaper.AZ_TRSC_FullForMediaItem(ctx, mediaItem, language)

- API Detail-

▼Input values

  • ctx(TRSCContext): transcription context

  • mediaItem(MediaItem): media item

  • 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")   


item = reaper.AZ_GetMediaItemSelect(0, 2, 0)


ctx = reaper.AZ_TRSC_LoadModel()


text = reaper.AZ_TRSC_FullForMediaItem(ctx, item, "ja")


Msg(text)


reaper.AZ_TRSC_ReleaseModel(ctx)


TRANSCRIPTION

AZ_TRSC_FullForMediaItem

Supported versions:

1.4.0

onwards

Transcribe audio as a single sentence for a media item

bottom of page