Category Archives: Console
my favorite session ever…
Home Made Studer A80 16 Track remote
My Old Neve Desk
Changing the ID of a panel
Python OSC device – Motarized fader for volume + mute switch and solo switch
import reapy
import OSC
# Create an OSC client to send messages to Reaper
client = OSC.OSCClient()
client.connect(("127.0.0.1", 8000))
# Create an OSC server to receive messages from the fader and switches
server = OSC.OSCServer(("127.0.0.1", 9000))
def handle_volume(path, tags, args, source):
volume = args[0]
# Set the volume of the track using the Reaper API
reapy.connect()
track = reapy.Track(1)
track.volume = volume
reapy.disconnect()
# Add a callback for the volume fader
server.addMsgHandler("/volume", handle_volume)
def handle_mute(path, tags, args, source):
mute = args[0]
# Set the mute of the track using the Reaper API
reapy.connect()
track = reapy.Track(1)
track.mute = mute
reapy.disconnect()
# Add a callback for the mute switch
server.addMsgHandler("/mute", handle_mute)
def handle_solo(path, tags, args, source):
solo = args[0]
# Set the solo of the track using the Reaper API
reapy.connect()
track = reapy.Track(1)
track.solo = solo
reapy.disconnect()
# Add a callback for the solo switch
server.addMsgHandler("/solo", handle_solo)
# Run the OSC server
st = threading.Thread(target=server.serve_forever)
st.start()
Kids and mixer
Most influential studio
WBSps.ca – channel on button templates
1979 McCurdy 7800 Console TV13
Wbsps.ca – removing LM201 chips on M460A modules
Sony MX-12
New hire – doing some transistor changes
Ward Beck M464F cinema filter
Some Ward Beck M625 console power supplies
Overlaying WBS M462 and M462A Equalizer schematics – Hand Drawn
Crowtail console – https://www.elecrow.com/crowtail.html
From https://www.elecrow.com/crowtail.html
Faders A0-7
Screens D12-15
UART GNSS? PTP?
The Saskatoon Shop
Work Bench Rebuild
Arduino Project – Digitally Controlled Analog Surround Sound Panning – Open Source
For your enjoyment:
Digitally Controlled Analog Surround Sound Panning
Presentation:
Circuit Explination:
Presentation documents:
0 – TPJ – Technical Presentation
0 – TPJ556-FINAL report DCASSP-COMPLETE
0 – TPJ556-FINAL report DCASSP-SCHEMATICS V1
Project Source Code: