top of page
- API -

allCount,_ = reaper.AZ_GetSelectedMediaTypeCount(0,"")


for i = 0,allCount-1 do

reaper.AZ_SetSelectedMediaChannelMode(0,i,2)

end

- API Detail-

  1. Multiple media in a project

  2. Select the media you want to change

- SCRIPT -

allCount,_ = reaper.AZ_GetSelectedMediaTypeCount(0,"")


  • Get the total number (allCount) of selected media


for i = 0,allCount-1 do

reaper.AZ_SetSelectedMediaChannelMode(0,i,2)

end


  • Execute ForLoop 0~5-1 Since the number of selections is 5, 0-4 becomes 5.

  • Set the channel mode for each ID 2: DownMixMono

- SCRIPT -

Media

AZSTOKE_SelectAllMediaStereoDownMixMonoChanger

Change channel mode of all selected media to mono with stereo mixdown

01_BRONZE_ss_edited.png
01_SILVER_edited_edited.png
03_GOLD_edited_edited.png
bottom of page