Pedalboard – A Python library for adding effects to audio
1–4 of 4 posts
Re: Pedalboard – A Python library for adding effects to audio
#2Re: Pedalboard – A Python library for adding effects to audio
#3Spotify’s varied and extensive contributions to open source make the company so much more valuable to me. The service is great but what differentiates it for me (from the likes of Pandora or Apple Music) is their community engagement via open source. I really appreciate companies that do this despite any drama that may surround the company. It’s like I view their engineering arm as a whole separate entity. This may b…
Re: Pedalboard – A Python library for adding effects to audio
#4Under the hood, this is essentially a Python wrapper around JUCE (https://juce.com), a comprehensive C++ library for building audio applications. We at Spotify needed a library that could load VSTs and process audio extremely quickly for machine learning research, but all of the popular solutions we found either shelled out to command line tools like sox/ffmpeg, or had non-thread-safe bindings to C libraries. Pedalboard was built for speed and stability first, but turned out to be useful in a lot of other contexts as well.