diff --git a/Audio_SpectraCLI/__pycache__/main.cpython-311.pyc b/Audio_SpectraCLI/__pycache__/main.cpython-311.pyc index 9e0d144..c754522 100644 Binary files a/Audio_SpectraCLI/__pycache__/main.cpython-311.pyc and b/Audio_SpectraCLI/__pycache__/main.cpython-311.pyc differ diff --git a/Readme.md b/Readme.md index 1ca2d82..94a9981 100644 --- a/Readme.md +++ b/Readme.md @@ -30,7 +30,7 @@ ### The ['main-old.py'](./Audio_SpectraCLI/main-old.py), which is the code for the main file for v3.2, and the ['test-old.py'](./tests/test-old.py) case supporting that, is DEPRECATED. -## Current Features (with respect to 4.0) +## Current Features (with respect to 4.0.1) - Real-time visualization of Fast Fourier Transform (FFT) spectrum of audio input. - Support for adjusting parameters such as duration, sampling rate, and block size. @@ -38,6 +38,7 @@ - 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 diff --git a/setup.cfg b/setup.cfg index 6bf881c..3e43e48 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = Audio-SpectraCLI -version = 4.0.0 +version = 4.0.1 author = Aditya Seth author_email = contact@adityaseth.in description = 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. diff --git a/setup.py b/setup.py index f3baea6..cbaa789 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='Audio_SpectraCLI', - version='4.0.0', + version='4.0.1', author="Aditya Seth", long_description=open('Readme.md', encoding='utf-8').read(), long_description_content_type='text/markdown',