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_SetSelectedTrackMediaRate(0, 1, 1, 2.1)
Msg(retval)
- SCRIPT -
retval= AZ_SetSelectedTrackMediaRate(projID, selectTrackID, trackItemID, setRate)
- API -
ID
MEDIA
AZ_SetSelectedTrackMediaRate
対応バージョン:
以降
Change the playback speed of the specified media in the specified selected track to the specified value
LUA
- API Detail-
▼Input value
projID (ReaProject): Project ID
selectTrackID (Int) : Selected track ID
trackItemID(Int): Track item ID
setRate(Float): The playback speed to set
▼Output value
retval(Boolean): Success or failure of API execution
bottom of page