top of page
- API -
mute = reaper.AZ_GetMediaMute(projID,itemID)
- 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
- SCRIPT -
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)
MEDIA
reaper.AZ_GetMediaMute
Supported versions:
1.0.1
onwards
Gets the mute status of the specified media ID.
bottom of page