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,muteTypeOut = AZ_GetMediaMute(0,0,0)
Msg(muteTypeOut)
retval,projID,itemID,muteTypeOut = AZ_GetMediaMute(0,1,0)
Msg(muteTypeOut)
- SCRIPT -
retval,projID,itemID,muteTypeOut = AZ_GetMediaMute(projID,itemID,muteTypeOut)
- API -
対応バージョン:
1.0.1
以降
MEDIA
AZ_GetMediaMute
指定メディアIDのミュートの状態を取得
LUA
- API Detail-
▼入力値
projID(integer):プロジェクトID
itemID(integer):メディアID
muteTypeOut(bool):ミュート:True ミュートではない:False
▼出力値
retval(bool):APIの実行成功の有無
projID (integer): 入力と同じものが出力「_」で対処
itemID (integer) : 入力と同じものが出力 「_」で対処
muteTypeOut(bool):ミュート:True ミュートではない:False
bottom of page