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")


bitRateOut = AZ_GetMediaBitRate(0,1)


Msg(bitRateOut)

- SCRIPT -

bitRate=AZ_GetMediaBitRate(projID,itemID)

- API -

ID

MEDIA

AZ_GetMediaBitRate

対応バージョン:

1.0.1

以降

Get bit depth of specified media ID

- API Detail-

▼Input value

  • projID(ReaProject): Project ID

  • itemID(Int): 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

  • itemID (Int): The same as the input is output

  • bitRateOut(Int) : Bit depth number

bottom of page