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

Reply
 
Thread Tools Display Modes
Old 12-12-2018, 01:06 AM   #1
foxAsteria
Human being with feelings
 
foxAsteria's Avatar
 
Join Date: Dec 2009
Location: Oblivion
Posts: 10,271
Default Auto Flip Polarity on Track + Pre-Fader Sends

I've been having a lot of success using the "invert phase" switch to help multitrack drums sound great together, but recently realized that they are not at all as great as they could be...if I ever remembered to also flip the polarity of the pre-fader buss sends!

Could we please have a modifier or shortcut that automatically inverts pre-fader send polarities when doing so on the track? I.e. holding alt while clicking the track phase button could flip polarity for any pre-fader sends as well. Or, honestly I think this should be default, since it's more than likely that we want phase coherent sends, right? It might not be obvious that we should do this or we might forget...

Does this also matter for post fader sends? No, because they're fed from after the inversion, right?
https://reaperblog.net/wp-content/up...ignal-flow.jpg
__________________
foxyyymusic

Last edited by foxAsteria; 12-12-2018 at 01:13 AM.
foxAsteria is offline   Reply With Quote
Old 12-20-2018, 07:26 AM   #2
Dstruct
Human being with feelings
 
Join Date: Jul 2006
Posts: 12,482
Default

Related thread: https://forum.cockos.com/showthread.php?t=32429
Dstruct is offline   Reply With Quote
Old 12-20-2018, 11:22 AM   #3
foxAsteria
Human being with feelings
 
foxAsteria's Avatar
 
Join Date: Dec 2009
Location: Oblivion
Posts: 10,271
Default

Oh dang. Disheartening that this is such an old topic and hasn't been addressed...

Even just an action to flip send polarity would help. Then at least the process could be reduced to a single action.
__________________
foxyyymusic
foxAsteria is offline   Reply With Quote
Old 12-22-2018, 05:54 AM   #4
mpl
Human being with feelings
 
mpl's Avatar
 
Join Date: Oct 2013
Location: Moscow, Russia
Posts: 3,984
Default

Here is 'Flip polarity for selected tracks pre-fader sends' lua

Code:
for i = 1, reaper.CountSelectedTracks(0) do
  local tr = reaper.GetSelectedTrack(0,i-1)
  for sendidx = 1, reaper.GetTrackNumSends( tr, 0 ) do
    local mode = reaper.GetTrackSendInfo_Value( tr, 0, sendidx-1, 'I_SENDMODE' )
    local polarity = reaper.GetTrackSendInfo_Value( tr, 0, sendidx-1, 'B_PHASE' )
    if mode == 1 then 
      reaper.SetTrackSendInfo_Value( tr, 0, sendidx-1, 'B_PHASE', math.abs(1- polarity) )
    end
  end
end
mpl is offline   Reply With Quote
Old 12-22-2018, 10:21 AM   #5
foxAsteria
Human being with feelings
 
foxAsteria's Avatar
 
Join Date: Dec 2009
Location: Oblivion
Posts: 10,271
Default

mpl rules! Thanks, dude, I'll try that out tonite.
__________________
foxyyymusic
foxAsteria is offline   Reply With Quote
Old 12-22-2018, 12:53 PM   #6
EpicSounds
Human being with feelings
 
EpicSounds's Avatar
 
Join Date: Jul 2009
Posts: 7,592
Default

you can also fix it earlier in the chain by inverting the items.
__________________
REAPER Video Tutorials, Tips & Tricks and more at The REAPER Blog
EpicSounds is offline   Reply With Quote
Old 12-22-2018, 12:55 PM   #7
foxAsteria
Human being with feelings
 
foxAsteria's Avatar
 
Join Date: Dec 2009
Location: Oblivion
Posts: 10,271
Default

Quote:
Originally Posted by EpicSounds View Post
you can also fix it earlier in the chain by inverting the items.
Yea but I'd prefer to see some visual indication, plus I tend to have many items on a track, so not too convenient that way.
__________________
foxyyymusic
foxAsteria is offline   Reply With Quote
Old 12-23-2018, 01:25 PM   #8
foxAsteria
Human being with feelings
 
foxAsteria's Avatar
 
Join Date: Dec 2009
Location: Oblivion
Posts: 10,271
Default

@mpl - Hi, can this script be made to accurately report toggle state and/or also invert the track polarity? I tried to combine them into a cycle action, but the toggles are not always synced. Thanks, man!
__________________
foxyyymusic
foxAsteria 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 12:25 AM.


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