Need help getting Track data #85
-
I'm attempting to get the following:
I see there's a lot of |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This question is more related to the REAPER API itself than to reaper-rs, so I point you to the original docs: https://www.reaper.fm/sdk/reascript/reascripthelp.html and https://github.com/justinfrankel/reaper-sdk/blob/main/sdk/reaper_plugin_functions.h Just some hints:
Good luck. |
Beta Was this translation helpful? Give feedback.
This question is more related to the REAPER API itself than to reaper-rs, so I point you to the original docs: https://www.reaper.fm/sdk/reascript/reascripthelp.html and https://github.com/justinfrankel/reaper-sdk/blob/main/sdk/reaper_plugin_functions.h
Just some hints:
GetSetMediaTrackInfo
(most powerful but hardest to use, reaper-rs provides a few helper methods, e.g. the one with_get_name
suffix),GetMediaTrackInfo_Value
(easier access for floating point values) orGetSetMediaTrackInfo_String
(easier access for string values). The two latter functions can't do anything thatGetSetMediaTrackInfo
can't do as well. To my knowledge…