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")
retval = AZ_SetTrackMediaAddPitch(0, 0, 2, 0.6)
Msg(retval)
- SCRIPT -
retval= AZ_SetTrackMediaAddPitch(projID, trackID, trackItemID, addPitch)
- API -
対応バージョン:
1.0.1
以降
MEDIA
AZ_SetTrackMediaAddPitch
Increases or decreases the pitch of the specified media in the specified track by the specified value.
LUA
- API Detail-
▼Input value
projID (ReaProject): Project ID
trackID (Int) : Track ID
trackItemID(Int): Track item ID
addPitch(Float): Additive pitch
▼Output value
retval(Boolean): Whether the API execution was successful or not
bottom of page