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")
muteTypeOut = AZ_GetMediaMute(0,0)
Msg(muteTypeOut)
muteTypeOut = AZ_GetMediaMute(0,1)
Msg(muteTypeOut)
- SCRIPT -
muteType = AZ_GetMediaMute(projID,itemI)
- API -
ID
MEDIA
AZ_GetMediaMute
対応バージョン:
1.0.1
以降
Gets the mute status of the specified media ID.
LUA
- API Detail-
▼Input value
projID(integer) : Project ID
itemID(integer): Media ID
muteTypeOut(bool): Muted: True Not muted: False
▼Output value
retval(bool): Whether the API execution was successful or not
projID (integer): The same as the input will be handled with "_" as the output.
itemID (integer): The same as the input is output. Use "_" to handle
muteTypeOut(bool): Muted: True Not muted: False
bottom of page