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_SetTrackMediaAddVolume(0, 1, 2, 1.27)

Msg(retval)

- SCRIPT -

retval= AZ_SetTrackMediaAddVolume(projID, trackID, trackItemID, addVolume)

- API -

対応バージョン:

1.0.1

以降

MEDIA

AZ_SetTrackMediaAddVolume

Increase or decrease the volume of the specified media in the specified track by the specified amount

- API Detail-

▼Input value

  • projID (ReaProject): Project ID

  • trackID (Int) : Track ID

  • trackItemID(Int): Track item ID

  • addVolume(Float): Value to add to the volume

▼Output value

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

bottom of page