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


frame = AZ_GetMediaStartTimeFrame(0, 0)

Msg(frame)

- SCRIPT -

frame = AZ_GetMediaStartTimeFrame(projID,itemI)

- API -

対応バージョン:

1.0.1

以降

MEDIA

AZ_GetMediaStartTimeFram

Get the start frame of the specified media

- API Detail-

▼Input value

  • projID(ReaProject): Project ID

  • itemID(int): Media ID

  • frameOut(int): 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 will be output as "_".

  • frameOut(int) : frame value

bottom of page