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


AZ_SetTrackMediaName(0,1,1,"AZ_Set_03")

- SCRIPT -

AZ_SetTrackMediaName(projID,trackID,trackItemID,setMediaName)

- API -

ID

MEDIA

AZ_SetTrackMediaName

対応バージョン:

1.0.1

以降

Set the name of the specified media in the specified track

- API Detail-

▼Input value

  • projID(integer) : Project ID

  • trackID(integer) : track ID

  • trackItemID(integer): Track media ID

  • setMediaName (string): The media name you want to set.

▼Output value

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

bottom of page