top of page

import sysimport sys

sys.path.append(RPR_GetResourcePath() + r"/UserPlugins")

from AZSTOKE_BRONZE_python import *


def Msg(parm):

    RPR_ShowConsoleMsg(str(parm) + "\n")


retval, _, _, second = AZ_GetMediaStartTimeSeconds(0, 3, 0)

Msg(second)

- SCRIPT -

retval, projID, itemID, secondOut = AZ_GetMediaStartTimeSeconds(projID, itemID, secondOut)

- API -

対応バージョン:

1.0.1

以降

MEDIA

AZ_GetMediaStartTimeSeconds

Gets the start position of the specified media in seconds.

- API Detail-

▼Input value

  • projID (ReaProject): Project ID

  • itemID(Int): 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

  • itemID(Int): The same as the input is output

  • secondOut(Float): The start position of the media (seconds)

bottom of page