top of page

import sys

sys.path.append(RPR_GetResourcePath() + r"\UserPlugins")

from AZSTOKE_SILVER_python import *


def Msg(parm):

    RPR_ShowConsoleMsg(str(parm) + "\n")

    

projID,selectItemID,maxMomentary,maxMomentaryPosOut = AZ_SetSelectedMediaIdLoudnessMaxMomentary(0,0,-21,0)

Msg(maxMomentaryPosOut)

- SCRIPT -

projID,selectItemID,maxMomentary,maxMomePosOut = reaper.AZ_SetSelectedMediaIdLoudnessMaxMomentary(projID,selectItemID,maxMomentary,maxMomePosOut)

- API -

対応バージョン:

1.0.0

以降

Loudness

AZ_SetSelectedMediaIdLoudnessMaxMomentary

Set the specified MaxMomentary for the specified selected media ID

- API Detail-

▼Input value

  • projID(integer) : Project ID

  • selectItemID(integer): Selected media ID

  • setMaxMomentary(double): MaxMomentary * Sets the largest Momentary in loudness measurement in 400ms units

  • maxMomentaryPosOut(double) : Initial value

▼Output value

  • retval(bool): Whether the API execution was successful or not

  • projID(integer) : output is the same as the input

  • selectItemID(integer) : Output is the same as the input value

  • maxMomentary : Output is the same as the input value

  • maxMomentaryPosOut : Maximum momentary start position (seconds)

bottom of page