skillfed

deepfilternet

Noise supression using deep filtering

deepfilternet v0.5.6 78.6K downloads/30d#14,421 on PyPI4,596
Permissive license MIT DORMANT released

What it is and what it does

DeepFilterNet is a speech enhancement framework that uses deep learning to suppress noise from audio at 48kHz sampling rate. It wraps a Rust-based STFT/ISTFT processing core with a Python interface, offering both a command-line tool and a programmatic API for batch or real-time noise reduction. The package depends on numpy for numerical work, loguru for logging, requests for downloads, packaging for version handling, sympy for symbolic math, appdirs for configuration paths, and deepfilterlib for core filtering logic.

You can use it to clean up noisy recordings by passing audio files through a pretrained model, or integrate it into Python applications via the init_df() and enhance() functions. The framework supports multiple model variants and includes optional postfiltering for aggressive noise attenuation. Training and dataset preparation are documented but require additional dependencies not bundled in the base wheel.

Use it for:

  • Clean up noisy voice recordings or podcast audio before publishing or further processing.
  • Suppress background noise in real-time video conferencing or streaming applications.
  • Preprocess speech data for downstream tasks like transcription or speaker recognition.
  • Batch denoise archived audio collections or archival speech datasets.
  • Integrate noise reduction into assistive audio devices via the LADSPA plugin.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

DeepFilterNet removes background noise from full-band audio at 48kHz using deep learning models, providing both command-line and Python API interfaces for speech enhancement.

Yes, if you need robust speech denoising at 48kHz and can tolerate dormant maintenance. The package is stable, well-documented, has no known vulnerabilities, and carries a permissive MIT license. Install friction is low. Verify external deep learning dependencies and model availability before production use.

Install

deepfilternet on PyPI

pip

pip install deepfilternet

uv

uv add deepfilternet

poetry

poetry add deepfilternet

Installing deepfilternet

Before you install

Low install friction; pure Python wheel with standard dependencies. Maintenance is dormant—last release was 2023-08-31 and last commit 2024-10-17, so expect no active bug fixes or feature updates, though the codebase remains stable.

License in practice

MIT license is permissive; you may use, modify, and distribute this package freely in commercial or private projects with minimal restrictions.

Quickstart

pip install deepfilternet

from deepfilternet import enhance, init_df

model, df_state, _ = init_df()
enhanced_audio = enhance(model, df_state, noisy_audio)

External deep learning framework must be installed separately; pretrained models are loaded at runtime and may require network access.

Verify before relying

  • Whether pretrained models are bundled with the wheel or must be downloaded separately at runtime.
  • GPU acceleration support and whether external deep learning dependencies are pinned or flexible.
  • Real-time latency and CPU/memory footprint for typical audio streams.
  • Exact PyTorch version compatibility and whether it must be installed before deepfilternet.

Package facts

License MIT (permissive)
Python support supports the current Python release (>=3.8,<4.0)
Install friction low — pure-Python wheel
Runtime dependencies 7 — appdirs, deepfilterlib, loguru, numpy, packaging, requests, sympy
Maintenance dormant — 1,079 days since the last release
Last repo commit
First released
Downloads 78,622/month — #14,421 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: deepfilternet-0.5.6-py3-none-any.whl

Keywords: noise reduction, neural network

License :: OSI Approved :: MIT LicenseProgramming Language :: PythonProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Programming Language :: RustTopic :: Multimedia :: Sound/Audio :: SpeechTopic :: Software Development :: Libraries :: Application FrameworksTopic :: Software Development :: Libraries :: Python ModulesTopic :: Utilities

Tags

noise suppression deep learningspeech enhancement neural networkaudio denoising 48khzbackground noise removalspeech clarity improvementnoise filtering frameworkreal-time audio denoising
audio-processingspeech-enhancementdeep-learning

More Python Modules packages