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, _, _, _, frame = AZ_GetTrackMediaStartTimeFrame(0, 0, 0, 0)

Msg(frame)

- SCRIPT -

retval,projID,trackID,trackItemID,frame = AZ_GetTrackMediaStartTimeFrame(projID,trackID,trackItemID,frameOut)

- API -

ID

MEDIA

AZ_GetTrackMediaStartTimeFrame

対応バージョン:

1.0.1

以降

Get the start frame of the specified media in the specified track

- API Detail-

▼Input value

  • projID(integer) : Project ID

  • trackID(int) : Track ID

  • trackItemID(int): Track media ID

  • frameOut(int): Any number (0 is OK)

▼Output value

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

  • projID (int): Output the same as the input, but use "_"

  • trackID (int): Output the same as the input. Use "_" to handle it.

  • trackItemID (int): Output the same as the input. Use "_" to handle

  • frame(int): Frame value

bottom of page