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,projID,selectTrackID,trackItemID,bitRateOut = AZ_GetSelectedTrackMediaBitRate(0,1,1,0)

Msg(bitRateOut)

- SCRIPT -

retval,projID,selectTrackID,trackItemID,bitRateOut=AZ_GetTrackMediaBitRate(projID,selectTrackID,trackItemID,bitRateOut)

- API -

ID

MEDIA

AZ_GetSelectedTrackMediaBitRate

対応バージョン:

1.0.1

以降

Get bit depth of specified media for specified selected track

- API Detail-

▼Input value

  • projID(ReaProject): Project ID

  • selectTrackID(int): Selected track ID

  • trackItemID(Int): Track media ID

  • bitRateOut(int): Any number (0 is OK)

▼Output value

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

  • projID (ReaProject): The same as the input is output

  • selectTrackID(int) : The same as the input is output

  • trackItemID(Int): The same as the input

  • bitRateOut(Int) : Bit depth number

bottom of page