top of page
- API -
allCount,_ = reaper.AZ_GetSelectedMediaTypeCount(0,"")
for i = 0,allCount-1 do
reaper.AZ_SetSelectedMediaAddPitch(0,i,-1)
end
- API Detail-
Multiple media in a project
- SCRIPT -
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
- SCRIPT -
Media
AZSTOKE_SelectAllMediaAddPitch
-1 pitch for all selected media
bottom of page