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 = AZ_SetMediaFade(0,3,2,0.2,3,0.5)

- SIMPLE SCRIPT -

retval = AZ_SetMediaFade(projID, itemID, inTypeOut,inLenOut,outTypeOut,outLenOut)

- API -

ID

MEDIA

AZ_SetMediaFade

対応バージョン:

1.0.1

以降

指定メディアののフェードの種類、長さを設定

- API Detail -

▼入力値

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

  • itemID(integer):アイテムID

  • inType(integer):開始フェードのタイプ(0~6)

  • inLen(number):開始フェードの長さ(秒)

  • outType(integer):終了フェードのタイプ(0~6)

  • outLen(number):終了フェードの長さ(秒)

▼出力値

  • retval(boolean):API実行の成否

bottom of page