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")



projID,itemID,endTimeOut = AZ_GetMediaEndTime(0,0,0)

Msg(endTimeOut)

- SCRIPT -

endTimeOut=AZ_GetMediaEndTime(projID,itemID,endTimeOut)

- API -

ID

MEDIA

AZ_GetMediaEndTime

対応バージョン:

1.0.1

以降

Gets the end position of the specified media in seconds.

- API Detail-

▼Input value

  • projID (ReaProject): Project ID

  • itemID(Int): Item ID

  • endTimeOut(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 will be output with "_"

  • itemID(Int): The same as the input is handled by output "_".

  • endTimeOut(Float): End position of the media (seconds)

bottom of page