top of page
- API -
maxMomentary,maxMomentaryPos = reaper.AZ_GetMediaItemLoudnessMaxMomentary(item)
- API Detail -
▼入力値
item (MediaItem):メディアアイテム
▼出力値
maxMomentary(double) : 最大ラウドネス値(Momentary)
※指定メディア内で一番大きい場所のMomentaryを出力します。
maxMomentaryPos(double) : 最大ラウドネス開始位置(秒)
- SIMPLE SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
item = reaper.AZ_GetMediaItemSelect(0,0,0)
maxMomentary,maxMomentaryPos = reaper.AZ_GetMediaItemLoudnessMaxMomentary(item)
Msg(maxMomentary)
Msg(maxMomentaryPos)
Loudness
AZ_GetMediaItemLoudnessMaxMomentary
対応バージョン:
1.0.3
以降
指定メディアの瞬間ラウドネスの最大値を取得
bottom of page