top of page
- API -
sample = reaper.AZ_GetTrackMediaSampleRate(projID, trackID, trackItemID)
- API Detail-
▼Input value
proj ID(ReaProjrct): Project ID
trackID(integer) : track ID
trackItemID(integer): Track media ID
▼Output value
retval(boolean): Success or failure of API execution
sample(integer): Sampling rate value
- SCRIPT -
function Msg(param)
reaper.ShowConsoleMsg(tostring((param)).."\n")
end
sample = reaper.AZ_GetTrackMediaSampleRate(0, 1, 2)
Msg(sample)
MEDIA
reaper.AZ_GetTrackMediaSampleRate
Supported versions:
1.0.3
onwards
Get the sampling rate of the specified media for the specified track
bottom of page