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,projID,itemID,endTimeOut = AZ_GetMediaEndTime(0,0,0)

Msg(endTimeOut)

- SIMPLE SCRIPT -

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

- API -

対応バージョン:

1.0.1

以降

MEDIA

AZ_GetMediaEndTime

指定メディアの終了位置を秒単位で取得

- API Detail -

▼入力値

  • projID (ReaProject):プロジェクトID

  • itemID(Int):アイテムID

  • endTimeOut(Float):任意の数値(0でOK)

▼出力値

  • retval(Boolean):APIの実行成功の有無

  • projID (ReaProject):入力と同じものが出力「_」で対処

  • itemID(Int):入力と同じものが出力「_」で対処

  • endTimeOut(Float):メディアの終了位置(秒)

bottom of page