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_GetTrackMediaMute(0,0,0)
Msg(muteTypeOut)
muteTypeOut = AZ_GetTrackMediaMute(0,1,2)
Msg(muteTypeOut)
- SCRIPT -
muteType = AZ_GetMediaMute(projID,trackID,trackItemI)
- API -
対応バージョン:
1.0.1
以降
MEDIA
AZ_GetTrackMediaMute
Gets the mute status of the specified media in the specified track.
LUA
- API Detail-
▼Input value
projID(integer) : Project ID
trackID(integer): Track ID
trackItemID(integer): Track 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 can be handled with output "_".
trackID(internal): The same as the input can be handled with output "_".
trackItemID (integer): The same as the input is output. Can be handled with "_"
muteTypeOut(bool): Muted: True Not muted: False
bottom of page