All Projects → jagger2048 → WebRtc_noise_suppression

jagger2048 / WebRtc_noise_suppression

Licence: other
This is WebRtc noise suppression module demo.

Programming Languages

c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to WebRtc noise suppression

Webrtc Experiment
WebRTC, WebRTC and WebRTC. Everything here is all about WebRTC!!
Stars: ✭ 10,335 (+14664.29%)
Mutual labels:  webrtc-demos
Mediastreamrecorder
Cross browser audio/video/screen recording. It supports Chrome, Firefox, Opera and Microsoft Edge. It even works on Android browsers. It follows latest MediaRecorder API standards and provides similar APIs.
Stars: ✭ 2,381 (+3301.43%)
Mutual labels:  webrtc-demos
audio noise clustering
https://dodiku.github.io/audio_noise_clustering/results/ ==> An experiment with a variety of clustering (and clustering-like) techniques to reduce noise on an audio speech recording.
Stars: ✭ 24 (-65.71%)
Mutual labels:  noise-reduction
Samples
WebRTC Web demos and samples
Stars: ✭ 11,318 (+16068.57%)
Mutual labels:  webrtc-demos
Rtcmulticonnection
RTCMultiConnection is a WebRTC JavaScript library for peer-to-peer applications (screen sharing, audio/video conferencing, file sharing, media streaming etc.)
Stars: ✭ 2,187 (+3024.29%)
Mutual labels:  webrtc-demos
demo-rails-webrtc
A demo project shows how to use webrtc on rails
Stars: ✭ 28 (-60%)
Mutual labels:  webrtc-demos
Learning Webrtc
Codes and notes while learning webrtc
Stars: ✭ 98 (+40%)
Mutual labels:  webrtc-demos
awesome-speech-enhancement
A curated list of awesome Speech Enhancement papers, libraries, datasets, and other resources.
Stars: ✭ 48 (-31.43%)
Mutual labels:  noise-reduction
Cuckoo
🎥 Cuckoo - A free anonymous video-calling web application built with WebRTC and React that provides peer-to-peer video and audio communication in a web browser with no plugins or extensions required.
Stars: ✭ 195 (+178.57%)
Mutual labels:  webrtc-demos
bLUe PYSIDE
bLUe - A simple and comprehensive image editor featuring automatic contrast enhancement, color correction, 3D LUT creation, raw postprocessing, exposure fusion and noise reduction
Stars: ✭ 41 (-41.43%)
Mutual labels:  noise-reduction
Mobilecameratemplate
A HTML5, JS, CSS Camera interface template. Feel free to use it in your next Computer Vision or AI project.
Stars: ✭ 145 (+107.14%)
Mutual labels:  webrtc-demos
React Webrtc
Video chat using webRTC and react
Stars: ✭ 168 (+140%)
Mutual labels:  webrtc-demos
spatial-temporal-LCMV
multi-channel microphone array noise reduction
Stars: ✭ 43 (-38.57%)
Mutual labels:  noise-reduction
Webrtc Data Channel Demo
WebRTC Data Channel demo
Stars: ✭ 116 (+65.71%)
Mutual labels:  webrtc-demos
Deep-Restore-PyTorch
Deep CNN for learning image restoration without clean data!
Stars: ✭ 59 (-15.71%)
Mutual labels:  noise-reduction
Translator
Translator.js is a JavaScript library built top on Google Speech-Recognition & Translation API to transcript and translate voice and text. It supports many locales and brings globalization in WebRTC! https://www.webrtc-experiment.com/Translator/
Stars: ✭ 103 (+47.14%)
Mutual labels:  webrtc-demos
Webrtcchat
🔏 Pure Browser To Browser Chat (STUN & ICE Servers optional)
Stars: ✭ 230 (+228.57%)
Mutual labels:  webrtc-demos
nettu-meet
Open source video conferencing system for tutors.
Stars: ✭ 1,878 (+2582.86%)
Mutual labels:  webrtc-demos
nextrtc-example-videochat
Most simple example of use NextRTC (WebRTC signaling server written in java) where two people can setup video call (treat it like prototype!)
Stars: ✭ 36 (-48.57%)
Mutual labels:  webrtc-demos
One-to-One-Video-Calling-Open-Source-PHP-Application
This Sample PHP Application demonstrates the use of EnableX webRTC Platform Server APIs and JavaScript Toolkit to develop one to one real time communication (RTC) application. It allows developers to ramp up on app development by hosting on their own devices.
Stars: ✭ 13 (-81.43%)
Mutual labels:  webrtc-demos

WebRtc noise suppression

This project is a standalone noise suppression module which reference from google's official webrtc project. I rewraped it so that it can be used in other places. The files used in this project in sync with official webrtc project respository. (branch de10eea, 2018.12).

TODO List:

  • noise suppression in hight sample rate - DONE supproted 32khz and 48 khz.
  • Explaining the principle of Webrtc's noise suppression algorithm. - TODO

The noise suppression process flow can be summed up as below:

1544091468844

WebRtc uses AudioBuffer class to split audio date into different bands. I have capture the main splitting filter function in order to support 32khz and 48khz.

For more details, please find https://chromium.googlesource.com/external/webrtc/+/master and the codes.


Test cases

input :

assets\babble_15dB.wav

output:

ns_level = kLow || webrtc_ns_kLow_babble_15dB.wav

ns_level = kModerate || webrtc_ns_kModerate_babble_15dB.wav

ns_level = kHigh || webrtc_ns_kHigh_babble_15dB.wav

The rnnoise and speexdsp's noise suppression test case wav files are captured from the https://people.xiph.org/~jm/demo/rnnoise/

Thses files can be found in the link TEST_CASES

Performance

With the same input,babble_15dB.wav, we set up a contrast among RNNoise, speexdsp and webrtc_ns.In the listening test, RNNoise performs well and suppresses the noise in babble.. It introduces a bit of artifacts which sounds unnature but it is tolerable.

For the webrtc's ns, kHigh performs better than kModerate which can suppress the whole noise.The kLow case has a poor performance than the others. Notes that the webrtc's ns has an impacts of the Gain when processed the audio data, maybe it should be interfaced with AGC module.

Finally, speexdsp's ns can suppress the babble noise but not completely reduce the backgourd noise. These noise suppression algorithm's performance can be summed up as blows:

$$

kLow < speechx \approx kModerate <kHigh \approx Rnnoise

$$

Update history:

中文说明-for ver0.1

  • ver 1.0 2018-12-6
  • 1. Update the dependent files in sync with official webrtc project (branch de10eea, 2018.12).
  • 2. Wraped noise suppression interface and support 32khz,48khz sample rete.
  • 3. Mono supported.Stereo supported can be modify easily.
  • ver 0.1 2018-7
  • 1. Capture the code of noise suppression module in webrtc project.
  • 2. A simple implement of noise suppression alorithm,supported 8khz and 16khz.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].