top of page
- API -
segmentList = reaper.AZ_TRSC_SegmentsForMediaID(ctx, proj, mediaID, language)
- API Detail-
▼入力値
ctx(TRSCContext) : 文字起こし用コンテキスト
proj(ReaProject) : Reaperプロジェクト
mediaID(integer) : メディアID
language(string) : 言語(任意 デフォルト : 自動検出)
▼出力値
segmentList(SegmentArray) : 文章まとまりごとの文字起こし結果
文字起こし機能の詳細はこちらをご確認ください
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_BRONZE")
require("reaper_AZSTOKE_SILVER")
ctx = reaper.AZ_TRSC_LoadModel()
segmentList = reaper.AZ_TRSC_SegmentsForMediaID(ctx, 0, 1, "ja")
ShowObject(segmentList)
reaper.AZ_TRSC_ReleaseModel(ctx)
TRANSCRIPTION
AZ_TRSC_SegmentsForMediaID
Supported versions:
1.4.0
onwards
メディアIDを対象に音声を文章まとまりごとに文字起こし

bottom of page


