top of page
- Script Code -
allCount,_ = reaper.AZ_GetSelectedMediaTypeCount(0,"")
for i = 0,allCount-1 do
reaper.AZ_SetSelectedMediaAddPitch(0,i,-1)
end
- Warm Up -
Multiple media in a project
- Script Detail -
allCount,_ = reaper.AZ_GetSelectedMediaTypeCount(0,"")
Get the number of selected media (allCount)
for i = 0,allCount-1 do
Loop from 0 to the variable (allCount-1)
reaper.AZ_SetSelectedMediaAddPitch(0,i,-1)
Set the pitch of the selected media in variable (i) to -1.
end
- API LINK -
Media
AZSTOKE_SelectAllMediaAddPitch
-1 pitch for all selected media
bottom of page