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,trackID,trackItem,muteTypeOut = AZ_GetTrackMediaMute(0,0,0,0)

Msg(muteTypeOut)


retval,projID,trackID,trackItem,muteTypeOut = AZ_GetTrackMediaMute(0,1,2,0)

Msg(muteTypeOut)

- SCRIPT -

retval,projID,trackID,trackItemID,muteTypeOut = AZ_GetMediaMute(projID,trackID,trackItemID,muteTypeOut)

- API -

対応バージョン:

1.0.1

以降

MEDIA

AZ_GetTrackMediaMute

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

- 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