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

    

mediaItem = AZ_GetMediaItemSelect(0,0,0)

retval = AZ_SetMediaItemPitch(mediaItem,-4)

- SCRIPT -

retval = AZ_SetMediaItemPitch(mediaItem,setPitch)

- API -

ID

MEDIA

AZ_SetMediaItemPitch

対応バージョン:

2.0.0

以降

Set the pitch of the specified media item.

- API Detail-

▼Input value

  • MediaItem (MediaItem): Media item

  • setPitch(float): The amount of pitch increment or decrement to set

▼Output value

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

bottom of page