From 1943cc006c3bd78e6bcbdbfe9d58e12b88c51101 Mon Sep 17 00:00:00 2001 From: Joel Mathew Thomas <90510078+joelmathewthomas@users.noreply.github.com> Date: Tue, 25 Feb 2025 03:44:18 +0530 Subject: [PATCH] Update README.md --- README.md | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 9284d1c..5ae4d26 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# freq-split-enhance +# freqsplit An evolving **audio processing pipeline** designed to separate and enhance audio components using open-source tools. The project aims to provide a modular framework for working with raw audio files, enabling separation, refinement, and post-processing. @@ -21,18 +21,22 @@ An evolving **audio processing pipeline** designed to separate and enhance audio freq-split-enhance/ ├── api/ # API implementation (future work) ├── client/ # Client-side interactions (future work) -├── src/ # Core processing modules -│ ├── input/ # Audio input handling -│ ├── preprocessing/ # Normalization, resampling, trimming -│ ├── separation/ # Source separation with Demucs -│ ├── postprocessing/ # Post-processing and saving results -│ ├── refinement/ # Noise reduction and enhancement -│ ├── spectogram/ # Spectrogram generation and analysis -├── tests/ # Unit tests -├── requirements.txt # Dependencies +├── LICENSE # License file +├── pyproject.toml # Project metadata and dependencies +├── pytest.ini # Pytest configuration ├── README.md # Project documentation -├── LICENSE # License information -└── pytest.ini # Pytest configuration +├── requirements.txt # Python dependencies +├── src/ # Core processing modules +│ ├── freqsplit/ # Main package directory +│ │ ├── __init__.py # Package initialization +│ │ ├── input/ # Audio input handling +│ │ ├── preprocessing/ # Normalization, resampling, trimming +│ │ ├── separation/ # Source separation with Demucs +│ │ ├── postprocessing/ # Post-processing and saving results +│ │ ├── refinement/ # Spectrogram-based enhancement +│ │ ├── spectogram/ # Spectrogram generation and analysis +├── tests/ # Unit and integration tests +└── venv/ # Virtual environment (should be excluded from version control) ``` ### 📝 Wiki