search for: testdenoise

Displaying 17 results from an estimated 17 matches for "testdenoise".

2016 Mar 08
0
Fixed point divide-by-zero issue for testdenoise.exe
...0000000009 r9 =0000000000000514 r10=0000000600013F80 r11=0000000000007210 r12=0000000000000007 r13=0000000000000018 r14=0000000000000000 r15=00000006000103C0 rbp=00000006000123F0 rsp=00000000FFFFC930 program=C:\Users\adhanapalan\Desktop\test\speexdsp-1.2rc3.tar\speexdsp-1.2rc3\libspeexdsp\.libs\testdenoise.exe, pid 13368, thread main cs=0033 ds=002B es=002B fs=0053 gs=002B ss=002B Stack trace: Frame Function Args 006000123F0 005FFB72544 (000FFFFCA20, 00000000000, 000FFFFCBD0, 000FFFFDE58) 000FFFFCCC0 0010040184B (00000000020, FF0700010302FF00, 0018004843C, 000FFFFD680) 000FFFFCCC0...
2009 May 28
1
DC component coming back after AGC
...tting confused, what's the problem exactly? The AGC doesn't remove the DC or it adds one? Jean-Marc Aymeric Moizard a ?crit : > Hi Jean-Marc & all, > > I'm currently working on a wav file with very low volume. > This wav also contains a DC component. > > Using testdenoise with modification (AGC turned on with > 20000.0 value) I'm able to increase volume, but a new > irregular DC component appears again due to the AGC. > (seems to increase at the same time the AGC gain is increasing) > > Using testdenoise again on the output, but without the >...
2009 May 27
3
Is 17 dB ERLE normal?
Hi We are working on a speaker phone system using PJSIP and Speex Speech processing API on an ARM platform. Currently we have spent about a month on getting the AEC to work properly and we have worked through the most common causes of problems (such as clock drift, synchronization problems and non-linearity's in echo path). Now we achieve ERLE of about 17 dB which tells me that the AEC is
2009 Dec 30
0
[PATCH] Link libspeexdsp with libfftw3 when needed
...libspeex_la_LDFLAGS = -no-undefined -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@ +libspeexdsp_la_LIBADD = @FFT_LIBS@ libspeexdsp_la_LDFLAGS = -no-undefined -version-info @SPEEX_LT_CURRENT@:@SPEEX_LT_REVISION@:@SPEEX_LT_AGE@ noinst_PROGRAMS = testenc testenc_wb testenc_uwb testdenoise testecho testjitter @@ -55,8 +56,8 @@ testenc_wb_LDADD = libspeex.la $(VPSY_LIB) testenc_uwb_SOURCES = testenc_uwb.c testenc_uwb_LDADD = libspeex.la $(VPSY_LIB) testdenoise_SOURCES = testdenoise.c -testdenoise_LDADD = libspeexdsp.la @FFT_LIBS@ +testdenoise_LDADD = libspeexdsp.la testecho_SOURC...
2011 Aug 31
0
How can I use preprocessor standalone with a wav file?
I have been tyring to use the preprocessor standalone by feeding it pcm data from a headerless pcm file (mono, 22050hz) and then write the result to another file. Unfortunately, all I get back is noise (first frame is set to 0, rest is noise). Frame size is set to 440. I just modified testdenoise.c slightly to read/write from a file (see below) but I can't get useful results. What am I doing wrong? Do I need to perform additional initializations? I am using 1.2rc1, target platform is windows (using Visual Studio). Thank you for your help. ----------------- Modified version of tes...
2007 Jul 19
2
noise reduction capabilities
Hi, I am considering to use Speex in a particular environment and I want to ask if you thought it realistic. I am going to use Wireless SIP (G.711) handsets in an environment that is typcially noisey (background), connecting to an Asterisk PBX. I am considering converting the G.711 to Speex so I can "massage" out the background noise. Is this realistic? Any input would be great.
2004 Aug 06
1
reduction of noise due to high microphone gain
Hello, With high microphone gain, I seem to have problem making the silence detection work. The speech detection works well for the rare dish sample, which has very low noise amplitudes in silence regions. However, if the microphone gain is set to really high, noise samples are taken as speech, as indicated by the non-zero return value from speex_encode() calls. I had VAD turned on.
2006 Dec 20
1
Broken denoiser in SVN (?)
Hi, I'm trying to use a denoiser on a wince with a FIXED_POINT defined. Denoiser works OK - it removes the noise, but then it unacceptable hurts a voice. Here is a code that I use: #define TEST_DENOISE_SAMPLES 2000 void test_denoise() { FILE *fin; FILE *fout; spx_int32_t rate=0; int chan=1; int fmt=16; int denoise_enabled = 1; SpeexPreprocessState *preprocess;
2006 Dec 25
1
A case including VAD bug
Hi all: I was analysising the speex code these days and learned much from it. Thank you so much! But I have a question about VAD: After preprocess(denoise and agc are off, vad is on),the input pcm speech was distorted seriously.The input speech include ten syllables(one~ ten), but the output speech lost one! Can you tell me why? Please see the attachment about input and output: (See attached
2007 Jun 07
1
speex1.2-beta2 and noise suppression problem
Hi! I'm using the newest (beta2) speex library on PocketPC (Windows powered) and experiencing some problems with noise suppression preprocessor turned on while encoding 44kHz files. You can hear the example here: http://szalik.net/speex (this is a 44kHz, 16, mono file encoded in UWB mode) I tried using speex cross-compiled with gcc (fixed point + arm4 asm) and VS (just fixed point) and it
2007 Oct 30
0
noise reduction capabilities
...;>> noise. Is >>> this realistic? >> >> Note that the noise suppression algorithm is independent of the codec, >> so it can be used on any codec. I suggest you try it on your samples and >> see for yourself (see the --denoise option of speexenc or the >> testdenoise program). >> Jean-Marc >> > > > >
2010 Jul 08
0
Work with speex
Hello, First of all i would like to say a big thanks for developers of this excellent product. My question is the following: I need to read raw audio data from file and remove from it noise, echo and perform some another stuff. Particularly to remove noise I'm using the "testdenoise" sample as a template. As you know it reads data from stdin. I read it from a file by chunks. Should I make speex encoding of this input data at first, or I can just clear the noise on my stream? If I should, than I can assume that after noise removal the "cleared" data needs to be d...
2013 Apr 24
0
vorbis-psy compilation fix
...diff -r -u speex/libspeex/Makefile.am speex/libspeex/Makefile.am --- speex/libspeex/Makefile.am 2013-04-24 19:08:00.729566052 +0400 +++ speex/libspeex/Makefile.am 2013-04-24 20:05:18.870721435 +0400 @@ -55,8 +55,8 @@ testenc_uwb_SOURCES = testenc_uwb.c testenc_uwb_LDADD = libspeex.la $(VPSY_LIB) testdenoise_SOURCES = testdenoise.c -testdenoise_LDADD = libspeexdsp.la @FFT_LIBS@ +testdenoise_LDADD = libspeexdsp.la libspeex.la @FFT_LIBS@ testecho_SOURCES = testecho.c -testecho_LDADD = libspeexdsp.la @FFT_LIBS@ +testecho_LDADD = libspeexdsp.la libspeex.la @FFT_LIBS@ testjitter_SOURCES = testjitter.c -te...
2004 Aug 06
2
reduction of noise due to high microphone gain
...44 PM To: speex Cc: Tongbiao Li Subject: Re: [speex-dev] reduction of noise due to high microphone gain Hi, You might want to try the denoiser I've got in CVS (that will go into Speex 1.1 eventually). It will remove stationary noise from the signal and probably help the silence detection. See testdenoise.c for how to use it. There's also a better VAD in the denoiser but speex_encode cannot make use of it yet. Jean-Marc Le mar 12/08/2003 à 15:03, Tongbiao Li a écrit : > Hello, > > > > With high microphone gain, I seem to have problem making the silence > detection...
2006 Oct 23
0
Bug with the new preprocessor
Can you provide me with a backtrace? It's quite hard to see what could happen. Also, can you reproduce the problem with testdenoise or only with your own code? Jean-Marc Ouss a ?crit : > The frame size is 320 > > Ouss > > > > -----Original Message----- > From: Jean-Marc Valin [mailto:jean-marc.valin@usherbrooke.ca] > Sent: lundi 23 octobre 2006 18:26 > To: Ouss > Cc: speex-dev@xiph.org &...
2005 Sep 22
1
Noise :-(
Hi all, i use speex preprocessor features in this way: =================================== #define NN 160 /* 20msec di audio */ ... int tbc=0,c,d,ret; spx_int16_t TEMP_Buffer[NN]; char DLECODE; /* Inizializza il preprocessore Speex se non inizializzato */ if(Modem->speex_pp_state == NULL) { Modem->speex_pp_state = speex_preprocess_state_init(NN,AUDIO_SAMPLERATE); }
2006 Oct 23
2
Bug with the new preprocessor
The frame size is 320 Ouss -----Original Message----- From: Jean-Marc Valin [mailto:jean-marc.valin@usherbrooke.ca] Sent: lundi 23 octobre 2006 18:26 To: Ouss Cc: speex-dev@xiph.org Subject: Re: [Speex-dev] Bug with the new preprocessor What frame size are you using? Jean-Marc Ouss a ?crit : > Hello, > > I have an (Access violation reading location) on line 115 in the fftwrap.c