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_GetSelectedTrackMediaMute(0,0,1)

Msg(muteTypeOut)


muteTypeOut = AZ_GetSelectedTrackMediaMute(0,1,2)

Msg(muteTypeOut)

- SCRIPT -

muteType = AZ_GetMediaMute(projID,selectTrackID,trackItemI)

- API -

ID

MEDIA

AZ_GetSelectedTrackMediaMute

対応バージョン:

以降

Gets the mute status of the specified media in the specified selected track.

- API Detail-

▼Input value

  • projID(integer) : Project ID

  • selectTrackID(integer): Select 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 "_".

  • selectTrackID(inteher): 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