top of page

function Msg(param)

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

end


retval = reaper.AZ_SetMediaMute(0,0,true)

Msg(retval)


retval = reaper.AZ_SetMediaMute(0,1,false)

Msg(retval)

- SCRIPT -

retval = reaper.AZ_SetMediaMute(projID,itemID,muteType)

- API -

対応バージョン:

1.0.1

以降

MEDIA

reaper.AZ_SetMediaMute

Sets the mute state of the specified media

- API Detail-

▼Input value

  • proj (integer): Project ID

  • itemID(integer): Item ID

  • muteType(bool) : true = muted, false = not muted

▼Output value

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

bottom of page