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_SetTrackMediaStartTimeSeconds(0, 1, 1, 8.29)

Msg(retval)

- SCRIPT -

retval= AZ_SetTrackMediaStartTimeSeconds(projID, trackID, trackItemID, setSeconds)

- API -

対応バージョン:

1.0.1

以降

MEDIA

AZ_SetTrackMediaStartTimeSeconds

Set the start position of the specified media in the specified track in seconds

- API Detail-

▼Input value

  • projID (ReaProject): Project ID

  • trackID (Int) : Track ID

  • trackItemID(Int): Track item ID

  • setSeconds(Float): Media start position (seconds)

▼Output value

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

bottom of page