Skip to content

AudioSpectraCLI is a tool that provides real-time FFT visualization of audio spectra. It captures audio input from the microphone and displays the corresponding frequency spectrum directly, allowing users to monitor and analyze audio signals.

License

Notifications You must be signed in to change notification settings

AdityaSeth777/Audio-SpectraCLI

Repository files navigation

    _             _ _            ____                  _              ____ _     ___
   / \  _   _  __| (_) ___      / ___| _ __   ___  ___| |_ _ __ __ _ / ___| |   |_ _|
  / _ \| | | |/ _` | |/ _ \ ____\___ \| '_ \ / _ \/ __| __| '__/ _` | |   | |    | |
 / ___ \ |_| | (_| | | (_) |_____|__) | |_) |  __/ (__| |_| | | (_| | |___| |___ | |
/_/   \_\__,_|\__,_|_|\___/     |____/| .__/ \___|\___|\__|_|  \__,_|\____|_____|___|
                                      |_|

cover.png

Audio Spectrum Visualization is a Python project that visualizes real-time audio input as a spectrum using Fast Fourier Transform (FFT). It provides an interactive and dynamic interface for users to start the visualization and exit the program.

PRs Welcome Visitors GitHub forks GitHub Repo stars GitHub last commit GitHub repo size GitHub issues GitHub closed issues GitHub pull requests GitHub closed pull requests

Audio-SpectraCLI - Visualizing real-time audio input as a spectrum using FFT | Product Hunt

Notable point : From v4.0, I have implemented a whole new code using PyQt5, which you will find evident here in the new main default code - 'main.py' and the 'test.py' case supporting that.

The 'main-old.py', which is the code for the main file for v3.2, and the 'test-old.py' case supporting that, is DEPRECATED.

Current Features (with respect to 4.1.0)

  • Real-time visualization of Fast Fourier Transform (FFT) spectrum of audio input.
  • Live VS Code Extension support.
  • Support for adjusting parameters such as duration, sampling rate, and block size.
  • Seamless integration with SoundDevice for audio input capture.
  • Customizable Frequency Range: Allow users to specify the frequency range to display in the spectrum.
  • Color Customization: Provide options for users to customize the colors used in the spectrum visualization.
  • Added PyQt5 modules and a Gaussian filter that enables user input for Duration (in seconds), Sampling Rate (in Hz), Block Size, and also smoothens the output.
  • Might need to keep in mind that the Gaussian filter is too strong and it won't recognise any noise and display it's spectra. Only actual input through mic such as conversations and music are displayed which can be categorised as real inputs or audio, and of course in real time.
  • Much more dynamic and user-controlled interface.

Packaging

Audio-SpectraCLI/

├── .gitignore
├── CODE_OF_CONDUCT.md
├── Contributing.md
├── Dockerfile
├── LICENSE
├── Readme.md
├── requirements.txt
├── setup.cfg
├── setup.py
├── .github/
│   └── workflows/
│       ├── docker-publish.yml
│       ├── label.yml
│       └── python-publish.yml
├── Audio_SpectraCLI/
│   ├── main-old.py
│   ├── main.py
│   └── __init__.py
└── tests/
├── ├── test-old.py
├── └── test.py
└── audiospectra-cli/
    ├── assets
    ├── dist
    ├── src/
    │   ├── test
    │   ├── extension.test.ts
    │   └── extension.ts
    ├── audio-spectracli-extension-v.vsix
    ├── CHANGELOG.md
    ├── ebuild.js
    ├── eslint.config.mjs
    ├── package.json
    ├── package-lock.json
    ├── README.md
    ├── sample.py
    └── tsconfig.json

Installation Methods : (Now Extension available)

Installation & Usage (Using VSCode Extensions - Marketplace)

How to Use the Audio-SpectraCLI Extension

Follow these steps to use the Audio-SpectraCLI extension in Visual Studio Code:

  1. Open Visual Studio Code

    • Launch VS Code on your computer (macOS, Windows, or Linux).
  2. Install the Audio-SpectraCLI Extension

    • Go to the Extensions sidebar by clicking on the Extensions icon in the Activity Bar (or press Ctrl+Shift+X on Windows/Linux or Cmd+Shift+X on macOS).
    • Search for "Audio-SpectraCLI" in the Extensions Marketplace.
    • Click Install next to the Audio-SpectraCLI extension.
  3. Activate the Extension

    • After installation, open the Command Palette by pressing F1 or Ctrl+Shift+P on Windows/Linux or Cmd+Shift+P on macOS.
    • Type >Audio-SpectraCLI: Add Sample Code or >Audio-SpectraCLI: View Status.
    • Select either command to activate and use the extension.
  4. Using the Commands

    • Add Sample Code: Inserts sample code for Audio-SpectraCLI into the current editor window.
      • Open any Python file or create a new one.
      • Run the command Audio-SpectraCLI: Add Sample Code from the Command Palette.
      • The sample code should appear in the editor.
    • View Extension Status: Displays the current status of Audio-SpectraCLI.
      • Run the command Audio-SpectraCLI: View Status from the Command Palette.
      • You’ll see a notification indicating that Audio-SpectraCLI is ready to use.
  5. Verify the Extension

    • Ensure that the Audio-SpectraCLI commands work as expected by following the steps above.
    • You should see notifications for the status and sample code added in the editor.
  6. Customize as Needed

    • You can modify the inserted code or use the extension as a reference for developing your own custom scripts with Audio-SpectraCLI.

Note: If you encounter issues, check the extension's README or reach out to contact@adityaseth.in support for troubleshooting.

Enjoy using Audio-SpectraCLI in VS Code!

Once you have activated the audio_visualizer instance, feel free to use it wherever in the program. It consists of several parameters (which gives more control to the user), so make sure to configure and add those before using it in your code. Also, the user can modify (wrt v4.1.0) the Duration (in seconds), Sampling Rate (in Hz), and Block Size.



Installation & Usage (Using PIP on Windows)
  1. Install using pip (Use pip3 instead, if pip doesn't work.)
pip install Audio-SpectraCLI
  1. Import and use modules
  • Create a Python file.
  • You can use Example.py as a reference or use the following code :
from Audio_SpectraCLI import AudioSpectrumVisualizer
from PyQt5.QtWidgets import QApplication

# Creating an instance of AudioSpectrumVisualizer with custom parameters
app = QApplication([])
audio_visualizer = AudioSpectrumVisualizer(
    duration=5, fs=22050, block_size=1024, frequency_range=(1000, 5000), color='red')

# Starting the audio spectrum visualization
audio_visualizer.show()
app.exec_()

Once you have activated the audio_visualizer instance, feel free to use it wherever in the program. It consists of several parameters (which gives more control to the user), so make sure to configure and add those before using it in your code. Also, the user can modify (wrt v4.1.0) the Duration (in seconds), Sampling Rate (in Hz), and Block Size.



Installation & Usage (Using Homebrew and pip on MacOS)
  1. Install using pip (Use pip3 instead, if pip doesn't work.)
brew install pyaudio
pip install Audio-SpectraCLI
  1. Import and use modules
  • Create a Python file.
  • You can use Example.py as a reference or use the following code :
from Audio_SpectraCLI import AudioSpectrumVisualizer
from PyQt5.QtWidgets import QApplication

# Creating an instance of AudioSpectrumVisualizer with custom parameters
app = QApplication([])
audio_visualizer = AudioSpectrumVisualizer(
    duration=5, fs=22050, block_size=1024, frequency_range=(1000, 5000), color='red')

# Starting the audio spectrum visualization
audio_visualizer.show()
app.exec_()

Once you have activated the audio_visualizer instance, feel free to use it wherever in the program. It consists of several parameters (which gives more control to the user), so make sure to configure and add those before using it in your code. Also, the user can modify (wrt v4.1.0) the Duration (in seconds), Sampling Rate (in Hz), and Block Size.



Examining & Usage (Using Docker)
  1. Prerequisites You should have docker installed on your machine. You can download and install Docker from here.
  2. Pulling the Docker Image

You can pull the pre-built Docker image from Docker Hub using the following command:

docker pull adityaseth777/audio-spectracli
  1. Viewing Files Inside the Docker Container For seeing the files inside the Docker container for debugging purposes, you can run an interactive shell session:
docker run --rm -it --entrypoint /bin/bash audio-spectracli
  1. Use the 'ls' command to view the files and get a proper understanding of the file structure :
ls
  1. You can use Example.py as a reference or use the following code :
from Audio_SpectraCLI import AudioSpectrumVisualizer
from PyQt5.QtWidgets import QApplication

# Creating an instance of AudioSpectrumVisualizer with custom parameters
app = QApplication([])
audio_visualizer = AudioSpectrumVisualizer(
    duration=5, fs=22050, block_size=1024, frequency_range=(1000, 5000), color='red')

# Starting the audio spectrum visualization
audio_visualizer.show()
app.exec_()

Once you have activated the audio_visualizer instance, feel free to use it wherever in the program. It consists of several parameters (which gives more control to the user), so make sure to configure and add those before using it in your code. Also, the user can modify (wrt v4.1.0) the Duration (in seconds), Sampling Rate (in Hz), and Block Size.



Building the Docker Image Locally

If you prefer to build the Docker image locally, follow these steps:

  1. Clone the repository :
git clone https://github.com/AdityaSeth777/Audio-SpectraCLI.git
cd Audio-SpectraCLI
  1. Build the Docker image:
docker build -t audio-spectracli .
  1. Viewing Files Inside the Docker Container For seeing the files inside the Docker container for debugging purposes, you can run an interactive shell session:
docker run --rm -it --entrypoint /bin/bash audio-spectracli
  1. Use the 'ls' command to view the files and get a proper understanding of the file structure :
ls
  1. You can use Example.py as a reference or use the following code :
from Audio_SpectraCLI import AudioSpectrumVisualizer
from PyQt5.QtWidgets import QApplication

# Creating an instance of AudioSpectrumVisualizer with custom parameters
app = QApplication([])
audio_visualizer = AudioSpectrumVisualizer(
    duration=5, fs=22050, block_size=1024, frequency_range=(1000, 5000), color='red')

# Starting the audio spectrum visualization
audio_visualizer.show()
app.exec_()

Once you have activated the audio_visualizer instance, feel free to use it wherever in the program. It consists of several parameters (which gives more control to the user), so make sure to configure and add those before using it in your code. Also, the user can modify (wrt v4.1.0) the Duration (in seconds), Sampling Rate (in Hz), and Block Size.


Upcoming Features

  • Save and Export: Implement functionality to save the generated spectrum as an image file or export data for further analysis.
  • CLI endpoints.
  • Option to choose between CLI/GUI.

For contributing

Check the Contributing page.

License

MIT © Aditya Seth

What next?

I will be improving this project.

Where to contact ?

Contact: contact@adityaseth.in

🙋‍♂️ Support

💙 If you like this project, give it a ⭐ and share it with friends!

buymeacoffee


Made with love-circled and python

About

AudioSpectraCLI is a tool that provides real-time FFT visualization of audio spectra. It captures audio input from the microphone and displays the corresponding frequency spectrum directly, allowing users to monitor and analyze audio signals.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published