top of page
- API -

firstChInx, numChs, inputChType = reaper.AZ_GetTrackItemInputChannel(track)

- API Detail -

▼入力値 

track(MediaTrack) : 対象トラック


▼出力値 

firstChInx(integer) : 先頭チャンネルのインデックス(0始まり)

numChs(integer) : 入力チャンネル数

inputChType(integer) : 入力チャンネル種別(0=Audio, 1=Midi)

- SIMPLE SCRIPT -

dofile(reaper.AZ_GetLuaInitPath())

require("reaper_AZSTOKE_SILVER")


track = reaper.AZ_GetTrackItemSelect(0, 0, 0)


firstChInx, numChs, inputChType = reaper.AZ_GetTrackItemInputChannel(track)

Msg(firstChInx)

Msg(numChs)

Msg(inputChType)

TRACK

AZ_GetTrackItemInputChannel

対応バージョン:

2.0.0

以降

トラックの入力チャンネル設定を取得

bottom of page