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,selectItemID,endTimeOut = AZ_GetSelectedMediaEndTime(0,1,0)

Msg(endTimeOut)

- SIMPLE SCRIPT -

projID,selectItemID,endTimeOut = AZ_GetSelectedMediaEndTime(projID,selectItemID,endTimeOut)

- API -

対応バージョン:

以降

MEDIA

AZ_GetSelectedMediaEndTime

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

- API Detail -

▼入力値

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

  • selectItemID(Int):選択アイテムID

  • endTimeOut(Float):「0」 ※任意

▼出力値

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

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

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

bottom of page