<div dir="ltr"><div class="gmail_default" style="font-family:times new roman,serif;font-size:large;color:#000000">Greetings, all.  I'm trying to take another stab at OSC control of non-mixer.  I've tried a few times over years, always using specific methods given on list or various web sites.  I did it again, still no dice.  Perhaps someone might be able to tell what I'm doing wrong.</div><div class="gmail_default" style="font-family:times new roman,serif;font-size:large;color:#000000"><br></div><div class="gmail_default" style="font-family:times new roman,serif;font-size:large;color:#000000">First of all, the non-mixer setup I'm using is pictured here:</div><div class="gmail_default" style="font-family:times new roman,serif;font-size:large;color:#000000"><a href="https://img.onl/IQ1Ds8">https://img.onl/IQ1Ds8</a><br></div><div class="gmail_default" style="font-family:times new roman,serif;font-size:large;color:#000000"><br></div><div class="gmail_default" style="font-family:times new roman,serif;font-size:large;color:#000000">One of its strips is named "DistortionOutput", another "CleanOutput".  The goal is to get outside input somehow (this is a headless design, am currently thinking programmable keypad for maximum simplicity), with two different scripts to spawn, "DistortionMode.py" and "CleanMode.py".  </div><div class="gmail_default" style="font-family:times new roman,serif;font-size:large;color:#000000"><br></div><div class="gmail_default" style="font-family:times new roman,serif;font-size:large;color:#000000">My latest attempt, was to run non-mixer with the appropriate command line option for the port, and then once running, to run the script below.  It was thought that it would turn the volume of DistortionOutput to zero.  However, the script freezes once run and no change is observed.</div><div class="gmail_default" style="font-family:times new roman,serif;font-size:large;color:#000000"><br></div><div class="gmail_default" style="font-family:times new roman,serif;font-size:large;color:#000000">I have made sure the OS firewall is off (Manjaro seems to have it off by default) and have tried a telnet to localhost at that port also, no connection.  Thoughts, anyone?</div><div><br></div>-- <br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><span><font size="4" color="#351c75"><i style=""><div style="font-family:"times new roman",serif">Jonathan E. Brickman   <a href="mailto:jeb@ponderworthy.com" target="_blank">jeb@ponderworthy.com</a>
                   (785)233-9977<br>
                God gives!!!<br>
                <a href="https://ponderworthy.com" target="_blank">Ponderworthy Music</a>  
                <a href="https://www.youtube.com/channel/UC-V09acFP20jYIgDAsJM-pw" target="_blank">Some New Music in Piano</a>  
                <a href="https://www.youtube.com/channel/UCZddpE2EQo_Ai0DCoSKVRn=" target="_blank">Some Spoken Word</a>        <br></div><div style="font-family:"times new roman",serif"><br></div><div style=""><div class="gmail_default" style="font-size:large;color:rgb(0,0,0)"><font face="times new roman, serif"></font><span style="color:rgb(53,28,117)"><font face="monospace"># Get the mididings and OSC stuffs</font></span></div><font face="monospace">from mididings import *<br>from mididings.extra.osc import SendOSC<br><br># Set up the OSC port <br>#(you define it in non-mixer thanks to  "--osc-port=7587" option - no quotes)<br>port = 7587<br> <br>#The actual conversion stuff<br>run(<br>   Filter(CTRL) >> CtrlSplit({<br>       # Non-mixer maping<br>       #It's always : /strip/[strip_name]/[effect_name]/[control_name]<br>       #Non-mixer uses values from 0.0 to 1.0. Therfore you have to divide by 127<br>       # Caution : 127.0 ( .0 !!). Check 'python's promotion' if you want to know why.<br><br>       #Sending MIDI CC #16 to the pan pot of the "mix1" strip<br>       # 16: SendOSC(port, '/strip/DistortionOutput/Mono%20Pan/Pan', lambda ev: ev.value / 127.0),<br>       # 17: SendOSC(port, '/strip/mix2/Mono%20Pan/Pan', lambda ev: ev.value / 127.0),<br><br>       # CC0 is sent to the gain of the "mix1" strip<br>       0: SendOSC(port, '/strip/DistortionOutput/Gain/Gain%20(dB)', lambda ev: ev.value / 127.0),<br>       # 1: SendOSC(port, '/strip/mix2/Gain/Gain%20(dB)', lambda ev: ev.value / 127.0),<br>   })<br>)<br></font><div class="gmail_default" style="font-size:large;color:rgb(0,0,0)"><font face="monospace"></font></div><br></div></i></font></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>