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

    

mediaItem = AZ_GetMediaItemSelect(0,0,0)

item,lengthOut = AZ_GetMediaItemLength(mediaItem,0)

Msg(lengthOut)

- SIMPLE SCRIPT -

item,lengthOut = AZ_GetMediaItemLength(item,lengthOut)

- API -

対応バージョン:

2.0.0

以降

MEDIA

AZ_GetMediaItemLength

指定メディアアイテムの長さ(秒)を取得

- API Detail -

▼入力値

  • item(MediaItem):メディアアイテム

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

▼出力値

  • item(MediaItem):入力値

  • lengthOut(Float):指定メディアアイテムの長さ(秒)

bottom of page