pedalboard
pedalboard copied to clipboard
🎛 🔊 A Python library for audio.
Problem The current developer install is using pip setup.py which creates a distributable installation. If a developer makes changes to code then they essentailly need to build and reinstall the...
Problem As a new developer to the project, using RedHat, I encountered a few issues that I wanted to document so that other new devs would find quick soltuions to...
Problem The tox linter has a whilelist of directories which will not get scanned. The virtual environment that is whitelisted does not match the virtual env created in the INSTALLATION...
Problem Prior to building pedalboard for the first time, there were a few obvious and non-obivous dependencies that I had to resolve Solution Adding Prerequisites section in CONTRIBUTING file so...
Hi again @psobot, this is one more problem with a specific plugin. I am running this code: ``` import soundfile as sf from pedalboard import load_plugin plugin = load_plugin(r'C:\USERS\CHARL\ONEDRIVE_USP.BR\DOCUMENTS\PLUGINS\VST3\anaglyph-win-v0.9.4c\Anaglyph.vst3') #all_parameters...
Summary: I've started a basic implementation of MIDI support to get things started Problem Pedalboard doesn't currently support plugin instruments because there is no way of sending MIDI to the...
hi, is it a way to add support for more than two channels. I am working with VSTs for ambisonic (at least 4 input/output channels, up to 64). ``` from...
Is there any way to send MIDI signals to Pedalboard? Most DAWs can forward MIDI signals to a VST plugin, then [I can use Python as a virtual MIDI device...
Still very very WIP. TODO: - [x] Add proper locking and/or lock-free synchronization to ensure that the audio thread always has a valid view of the plugins used for processing...
First of all, thanks a lot for the amazing library, it's a great help! While toying around, I wanted to store `Pedalboard` instances by directly dumping them using `pickle` (https://docs.python.org/3/library/pickle.html)....