top of page
- API -

middlewareInfo = reaper.AZ_MIDDLESCANNER_Wwise_GetVolumeForMediaItem(item,language,parentID,options)

- API Detail -

▼入力値

・item(MediaItem): メディアアイテム

・language(string): 言語

・parentID(string):

・options: 処理オプション(任意)

 ・ExcludeBusList: 除外するバスの名称リスト(文字列配列)

 ・ExcludeActorList: 除外するアクターミキサーの名称リスト(文字列配列)

 ・AddBusList: 追加するバスのオブジェクトリスト

  ・Name : 追加するバスの名称

  ・Volume : 音量


▼出力値

・middlewareInfo: メディアに対応するWwiseオブジェクトの出力までの音量設定の合計

 ・Item : メディアアイテム

 ・Volume : 音量

- SIMPLE SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_GOLD")


options = {

    ExcludeBusList = {"Hall"},

}


item = reaper.AZ_GetMediaItemSelect(0,0,0)


if reaper.AZ_Wwise_Connect("127.0.0.1",8080) then 

   middlewareInfo = reaper.AZ_MIDDLESCANNER_Wwise_GetVolumeForMediaItem(item,"English(US)","",options)


   Msg(middlewareInfo.Volume)

   reaper.AZ_Wwise_Disconnect()

end

MIDDLESCANNER

AZ_MIDDLESCANNER_Wwise_GetVolumeForMediaItem

対応バージョン:

1.0.3

以降

メディアを対象にMIDDLESCANNERを実行

bottom of page