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

    

item = AZ_InsertMediaOutItem(0,"F:\\script\\test\\wav\\AZ_vo_women_01.wav")

Msg(item)

- SIMPLE SCRIPT -

item = AZ_InsertMediaOutItem(projID,filePath)

- API -

対応バージョン:

2.0.0

以降

MEDIA

AZ_InsertMediaOutItem

指定パスのメディアファイルをインサートしてそのメディアアイテムを取得

- API Detail -

▼入力値

proj(ReaProject):プロジェクト

filePath(String) : ファイルパス

▼出力値

item(MediaItem) : インサートしたメディアアイテム

bottom of page