top of page

function Msg(param)

   reaper.ShowConsoleMsg(tostring(param).."\n")

end


mute = reaper.AZ_GetMediaMute(0,0)

Msg(mute)


mute = reaper.AZ_GetMediaMute(0,2)

Msg(mute)

- SCRIPT -

mute = reaper.AZ_GetMediaMute(projID,itemID)

- API -

ID

MEDIA

reaper.AZ_GetMediaMute

対応バージョン:

1.0.1

以降

Gets the mute status of the specified media ID.

- API Detail-

▼Input value

  • proj (integer): Project ID

  • itemID(integer): Item ID

▼Output value

  • retval(bool): Whether the API execution was successful or not

  • mute(bool): Muted: True Not muted: False

bottom of page