top of page
import sys
sys.path.append(RPR_GetResourcePath() + r"/UserPlugins")
from AZSTOKE_BRONZE_python import *
def Msg(parm):
RPR_ShowConsoleMsg(str(parm) + "\n")
_, _, _, pitch = AZ_GetSelectedTrackMediaPitch(0, 1, 1, 0)
Msg(pitch)
- SCRIPT -
projID, selectTrackID, trackItemID, pitchOut = AZ_GetSelectedTraackMediaPitch(projID, selectTrackID, trackItemID, pitchOut)
- API -
対応バージョン:
1.0.1
以降
MEDIA
AZ_GetSelectedTrackMediaPitch
Get pitch of specified media in specified selected track
LUA
- API Detail-
▼Input value
projID (ReaProject): Project ID
selectTrackID (Int) : Selected track ID
trackItemID(Int): Track item ID
pitchOut(Float): Any number (0 is OK)
▼Output value
retval(Boolean): Whether the API execution was successful or not
projID (ReaProject): The same as the input is output
selectTrackID (Int): The same as the input is output
trackItemID(Int): The same as the input
pitchOut(Float): Media pitch
bottom of page