top of page
- API -
firstChInx, numChs, inputChType = reaper.AZ_GetTrackIdInputChannel(projID, trackID)
- API Detail-
▼Input values
projID(ReaProject): target project (0 for the current project)
trackID(integer): track ID (0-based)
▼Output values
firstChInx(integer): index of the first channel (0-based)
numChs(integer): number of input channels
inputChType(integer): input channel type (0 = Audio, 1 = Midi)
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
require("reaper_AZSTOKE_SILVER")
projID = 0
trackID = 0
firstChInx, numChs, inputChType = reaper.AZ_GetTrackIdInputChannel(projID, trackID)
Msg(firstChInx)
Msg(numChs)
Msg(inputChType)
TRACK
AZ_GetTrackIdInputChannel
Supported versions:
2.0.0
onwards
Get input channel settings (by track ID)

bottom of page
