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")
_, _, _, second = AZ_GetTrackMediaStartTimeSeconds(0, 1, 1, 0)
Msg(second)
- SCRIPT -
projID, trackID, trackItemID, secondOut = AZ_GetTrackMediaStartTimeSeconds(projID, trackID, trackItemID, secondOut)
- API -
ID
MEDIA
AZ_GetTrackMediaStartTimeSeconds
対応バージョン:
1.0.1
以降
Gets the start position of the specified media in the specified track in seconds.
LUA
- API Detail-
▼Input value
projID (ReaProject): Project ID
trackID (Int) : Track ID
trackItemID(Int): Track item ID
secondOut(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
trackID (Int): The same as the input
trackItemID(Int): The same as the input
secondOut(Float): The start position of the media (seconds)
bottom of page