top of page
- API -

maxMomentary, maxMomentaryPos = reaper.AZ_GetMediaIdLoudnessMaxMomentary(projID, itemID)

- API Detail-

▼Input value

  • proj (ReaProject) : Specified project
  • itemID(integer) : Specified media ID

▼Output value 

  • maxMomentary(number) : Maximum instantaneous loudness
  • maxMomentaryPos(number) : Position on the media where instantaneous loudness is maximum
- SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_SILVER")  


maxMomentary,maxMomentaryPos = reaper.AZ_GetMediaIdLoudnessMaxMomentary(0, 1)


Msg(maxMomentary)

Msg(maxMomentaryPos)

Loudness

AZ_GetMediaIdLoudnessMaxMomentary

Supported versions:

1.3.0

onwards

Get maximum instantaneous loudness for specified media ID

bottom of page