From 61e5f1865f80aa9bd2e4adfa99f5e38025ef4965 Mon Sep 17 00:00:00 2001 From: AdityaSeth777 Date: Tue, 4 Jun 2024 11:03:09 +0530 Subject: [PATCH] Added a small NB --- .../__pycache__/main.cpython-311.pyc | Bin 10714 -> 10714 bytes Readme.md | 3 ++- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Audio_SpectraCLI/__pycache__/main.cpython-311.pyc b/Audio_SpectraCLI/__pycache__/main.cpython-311.pyc index 9e0d144c74d1d45bed44aa149f6cd2ceb04282dd..c7545226f2e86bc1fa7b83e5406d41d2d5c8f98a 100644 GIT binary patch delta 19 ZcmcZ=d@Go1IWI340}zB7ZREP32>?9L1#18R delta 19 ZcmcZ=d@Go1IWI340}!-vZ{)h52>?AZ1$6)b 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',