Go Back   Cockos Incorporated Forums > REAPER Forums > REAPER Feature Requests

Reply
 
Thread Tools Display Modes
Old 02-24-2020, 02:08 AM   #1
vmnsk
Human being with feelings
 
Join Date: Feb 2020
Posts: 5
Default Bypass panning when rendering "Tracks with only mono media"

I noticed that rendering out tracks panned to the right with the "Tracks with mono media to mono files" option ends up with reduced volume or completely empty (if at 100%R).

As the feature does what it says, I don't think of it as a bug, but I would at least like an extra checkbox to go along with it that allows for ignoring panning in this case. Another way would be to just bypass panning when the feature is used, but there might be a use case for the current functionality I haven't thought of.

Either way would be fine by me, as long as I wouldn't have to reset panning on all tracks manually (or using actions).

The benefit would be reducing the need to create separate projects with reset panning for exporting stems or accidentally leaving some panned tracks empty when exported.
vmnsk is offline   Reply With Quote
Old 02-25-2020, 06:48 PM   #2
Thonex
Human being with feelings
 
Join Date: May 2018
Location: Los Angeles
Posts: 1,719
Default

I could get on board with this.

I wrote a Set Pan to Center script... in the meantime if you need it.

Code:
-- sets pan to center of selected tracks

function Msg (param)
  reaper.ShowConsoleMsg(tostring (param).."\n")
end


function Set_Pan_To_Center ()
  reaper.PreventUIRefresh(1)
  reaper.Undo_BeginBlock()
  reaper.ClearConsole()
  
  num_sel_tracks = reaper.CountSelectedTracks( 0 )
  
  for i=0, num_sel_tracks-1 do
    track = reaper.GetSelectedTrack(0, i)
    --Msg(reaper.GetMediaTrackInfo_Value( track, "D_VOL" ))
    --reaper.SetMediaTrackInfo_Value( track, "D_VOL", 1.0 )
    reaper.SetMediaTrackInfo_Value( track, "D_PAN", 0 )
  end
  
  reaper.PreventUIRefresh(-1)
  reaper.UpdateArrange()
  reaper.Undo_EndBlock("Set Pan To Center",-1)
 
end
 
 
 Set_Pan_To_Center ()
__________________
Cheers... Andrew K
Reaper v6.80+dev0621 - June 21 2023 • Catalina • Mac Mini 2020 6 core i7 • 64GB RAM • OS: Catalina • 4K monitor • RME RayDAT card with Sync Card and extended Light Pipe.
Thonex is offline   Reply With Quote
Old 02-26-2020, 05:47 AM   #3
vmnsk
Human being with feelings
 
Join Date: Feb 2020
Posts: 5
Default

Thanks, I'm currently using an SWS action along with some others (also breaking up folders and deleting the parent tracks).
vmnsk is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 09:20 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.