Code Monkey home page Code Monkey logo

vla-252a's Introduction

VLA-252A: Analog Modeling of the Langevin 252A Utilizing Wave Digital Filters

Introduction

Our goal for this project is to create a revolutionary Passive Graphic Equalizer (GEQ) prototype replicating the iconic Langevin EQ252A, one of the earliest and most sought-after analog EQs in history. However, instead of relying on costly physical analogs that can set you back around 1400 GBP (around 1600 EUR or 1750 USD), we are taking a modern approach by utilizing Wave Digital Filters to create a digital model that is both affordable and highly efficient. With this innovative solution, we aim to bring the timeless sound of the Langevin EQ252A to a wider audience, while also revolutionizing the way we approach equalization in the digital age.

Background

Langevin 252A Equalizer

The Langevin 252A Equalizer is an iconic analog equalizer known for its exceptional sound quality and versatility. It features seven bands, each with a fixed frequency center and a variable gain control, allowing for precise equalization across the audio spectrum.

The EQ 252A's analog circuitry provides warmth, color, and depth to audio signals, contributing to its unique sonic characteristics.

Wave Digital Filters

Wave Digital Filters (WDFs) are a digital signal processing technique used to model and emulate analog audio circuits. They accurately simulate the behavior of analog components in the digital domain by using wave variables to represent voltages and currents in the circuit.

WDFs are employed in this software project to faithfully reproduce the sonic qualities and tonal characteristics of the Langevin 252A equalizer, providing users with a highly realistic and versatile equalization tool.

Dependencies

  • Python v3.11
  • Supercollider v3.13
  • Structure

      
      ./VLA-252A/
      ├── Demos
      │   ├── Prototype Demo
      │   ├──RealTimee Demo
      ├── Documentation
      │   ├── User Manual
      │   ├── VLA252A
      ├── Langevin251
      │   ├── LTSpice
          │   ├── HiCutLoBoost.asc
          │   ├── HiLoBoost.asc
          │   ├── HiLoCut.asc
          │   ├── LoCutHiBoost.asc
          │   ├── Simplifiedcircuit.asc
      │   ├── Netlist
          │   ├── HiCutLoBoost.txt
          │   ├── HiLoBoost.txt
          │   ├── HiLoCut.txt
          │   ├── LoCutHiBoost.txt
          │   ├── Simplifiedcircuit.txt
      │   ├── Scattering Matrix
          │   ├── HiCutLoBoost.txt
          │   ├── HiLoBoost.txt
          │   ├── HiLoCut.txt
          │   ├── LoCutHiBoost.txt
          │   ├── Simplifiedcircuit.txt
      │   ├─ Separated Ports
          │   ├── HiCutLoBoost.py
          │   ├── HiLoBoost.py
          │   ├── HiLoCut.py
          │   ├── LoCutHiBoost.py
      │   ├──Sounds / Input
          │   ├── piano.wav
      │   ├── Langevin.py
      │   ├── utils.py
      ├── sc
          │   ├── Prototype
              │   ├── utils.py
              │   ├── LC_SecondOrd_BPF.py
              │   ├── LC_ThirdOrd_BPF.py
              │   ├── LC_BPF.py
              │   ├── RC_hpf.py
              │   ├── RC_lpf.py
              │   ├── VLA252.py
              │   ├── VLA252_GUI.py
              │   ├── environment.yml
              │   ├── main.py
          │   ├── Supercollider
              │   ├── Langevin252A.sc
              │   ├── langevinTest.scd
              │   ├── somiomio.wav
      
      

    Installation and Usage

    For more information about the usage of the plugin you can check the User Manual

    Python prototype

    To set up and install the Python prototype, please follow the instructions provided below:

    1. Begin by downloading the source code from the designated GitHub repository.
    2. Install all the necessary libraries by executing the following command in your terminal:
    pip install -r requirements.txt

    This command will utilize the requirements.txt file to automatically install all the required libraries.

    1. Once the installation process is complete, you are ready to run the code and start utilizing the prototype.

    Supercollider

    1. Copy the folder named "Langevin252A" located in Supercollider, and paste it into the extensions folder of your SuperCollider installation on your computer.
    2. To find the location of the extension folder, open SuperCollider and evaluate the following line of code: Platform.userExtensionDir.
    3. Inside the extension folder, you will find the plugin file, an audio file for the tutorial, and a tutorial named "langevinTest".
    4. For the final part of the tutorial (VarGui), you need to install the "MiSCellaneous" library from the Quarks system.

    Results

    Python Prototype

    The evaluation results of the python prototype showcased exceptional accuracy and fidelity in terms of sonic reproduction. We were able to achieve a remarkably close sound to our desired outcome, highlighting the prototype's potential in delivering high-quality audio. However, one significant drawback surfaced during the evaluation process - the computational efficiency of the prototype was insufficient for real-time performance. This limitation impacted the overall feature set and functionality of the prototype, falling short of our initial expectations. While the prototype could potentially serve as a standalone version of the plugin, it remains less convenient due to its inability to operate in real time.

    Supercollider

    The evaluation results showed that it may not be able to perfectly reproduce the distinctive sound of the Langevin 252A due to the unavailability of its schematics. However, it does possess a commendable ability to accurately reproduce the sonic characteristics of a bandpass filter. While it may not replicate the exact sound signature of the Langevin 252A, it still offers a satisfying audio experience.

    Moreover, this plugin has the potential to deliver high-quality audio output. It is designed to ensure that the audio signals passing through it are faithfully reproduced, maintaining their clarity, dynamics, and fidelity. In addition, it offers sufficient computational efficiency to enable real-time performance. It can handle audio processing tasks without significant latency or lag. This capability is especially important for applications where immediate audio feedback or live performances are involved.

    Improvements

    Looking ahead, we recognize the scope for future improvements in the circuit used. Given more time, we could have sought out a circuit that closely matched our requirements, ultimately yielding better results. Continual refinement and fine-tuning of the circuit will contribute to the overall enhancement of the project.

    Contributing

    We welcome contributions to enhance the VLA-252A! If you'd like to contribute, please follow these steps:

    1. Fork the repository on GitHub.
    2. Create a new branch for your feature or bug fix: git checkout -b feature/your-feature.
    3. Make the necessary changes and commit them.
    4. Push your changes to your forked repository.
    5. Create a pull request on the main repository.

    Demos

    For a demonstration of the Python prototype, you can watch the video here.

    Additionally, we have a video showcasing the real-time part in SuperCollider, which can be found here.

    License

    This project is licensed under the Affero General Public License (AGPL). The AGPL is a copyleft license that requires any modified or extended versions of the software to be distributed under the same license terms.

    Feel free to use, modify, and distribute the code according to the terms of the AGPL.

    Acknowledgments

    This project was done as part of the Sound communication class for the Sound and Music Computing master's degree at Universitat Pompeu Fabra.

    It was made possible by the following libraries and resources:

    • PYWDF - Python framework designed for modeling and simulating wave digital filter circuits.
    • Contact

      If you have any questions, or feedback, or need assistance with our plugin, we encourage you to get in touch with us. We are here to help and provide you with the support you need. You can contact us through the following emails:

      Please provide as much detail as possible when contacting us, including the version of the plugin you are using, any error messages you encountered, and steps to reproduce the issue. This information will assist us in diagnosing and resolving your problem quickly.

      We value your feedback and strive to continuously improve our plugin based on your suggestions and needs. Don't hesitate to reach out to us. Your input is invaluable in making our plugin even better.

      Thank you for using our plugin!

    vla-252a's People

    Contributors

    duduoliver avatar obiwxnkenxbi avatar zvoda avatar

    Stargazers

     avatar  avatar  avatar

    Watchers

     avatar  avatar

    Recommend Projects

    • React photo React

      A declarative, efficient, and flexible JavaScript library for building user interfaces.

    • Vue.js photo Vue.js

      🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

    • Typescript photo Typescript

      TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

    • TensorFlow photo TensorFlow

      An Open Source Machine Learning Framework for Everyone

    • Django photo Django

      The Web framework for perfectionists with deadlines.

    • D3 photo D3

      Bring data to life with SVG, Canvas and HTML. 📊📈🎉

    Recommend Topics

    • javascript

      JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

    • web

      Some thing interesting about web. New door for the world.

    • server

      A server is a program made to process requests and deliver data to clients.

    • Machine learning

      Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

    • Game

      Some thing interesting about game, make everyone happy.

    Recommend Org

    • Facebook photo Facebook

      We are working to build community through open source technology. NB: members must have two-factor auth.

    • Microsoft photo Microsoft

      Open source projects and samples from Microsoft.

    • Google photo Google

      Google ❤️ Open Source for everyone.

    • D3 photo D3

      Data-Driven Documents codes.