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, _, _, length = AZ_GetTrackMediaLength(0, 1, 1, 0)

Msg(length)

- SCRIPT -

retval, projID, trackID, lengthOut= AZ_GetTrackMediaLength(projID, trackID, trackItemID, lengthOut)

- API -

対応バージョン:

1.0.1

以降

MEDIA

AZ_GetTrackMediaLength

Get the length (in seconds) of the specified media in the specified track

- API Detail-

▼Input value

  • projID (ReaProject): Project ID

  • trackID (Int) : Track ID

  • trackItemID(Int): Track item ID

  • lengthOut(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 "_"

  • trackID (Int): The same as the input will be output as "_".

  • lengthOut(Float): Media length (seconds)

bottom of page