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

Gets the mute status of the specified media ID.

- 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