- API -
peakList = reaper.AZ_GetMediaItemPeakList(projID,selectItemID)
- API Detail-
▼Input value
projID(ReaProject): Project ID
selectItemID(integer) : Selected media item ID
▼Output value
retval(boolean): Success or failure of API execution
peakList(table) : Peak array .MaxPeak /.MinPeak/.Time
- SCRIPT -
os = reaper.GetOS()
if "Win" == string.match(os,"(Win)") then
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dll"
else
package.cpath = package.cpath .. ";"..reaper.GetResourcePath() .."/UserPlugins/?.dylib"
end
require("reaper_AZSTOKE_SILVER")
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
peakList = reaper.AZ_GetSelectedMediaIdPeakList(0,0)
for i, value in pairs(peakList) do
Msg("MaxPeak: "..peakList[i].MaxPeak)
Msg("MinPeak: "..peakList[i].MinPeak)
Msg("Time: "..peakList[i].Time)
end