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 = AZ_SetTrackMediaVolume(0, 1, 2, -4.87)

Msg(retval)

- SCRIPT -

retval= AZ_SetTrackMediaVolume(projID, trackID, trackItemID, volume)

- API -

ID

MEDIA

AZ_SetTrackMediaVolume

対応バージョン:

1.0.1

以降

Change the volume of the specified media in the specified track to the specified value

- API Detail-

▼Input value

  • projID (ReaProject): Project ID

  • trackID (Int) : Track ID

  • trackItemID(Int): Track item ID

  • volume(Float): Volume to set

▼Output value

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

bottom of page