top of page
- API -
length= reaper.AZ_GetTrackMediaLength(projID, trackID, trackItemID)
- API Detail-
▼Input value
projID (ReaProject): Project ID
trackID (integer) : Track ID
trackItemID(integer): Track item ID
▼Output value
retval(boolean): Success or failure of API execution
length(number): Length of the media (seconds)
- SCRIPT -
function Msg(param)
reaper.ShowConsoleMsg(tostring((param)).."\n")
end
length = reaper.AZ_GetTrackMediaLength(0, 1, 1)
Msg(length)
MEDIA
reaper.AZ_GetTrackMediaLength
Supported versions:
1.0.3
onwards
Get the length (in seconds) of the specified media in the specified track
bottom of page