Displaying 20 results from an estimated 1000 matches similar to: "why VAD modifies my voice data?"
2011 Dec 25
1
Working on VBR fixed point conversion
Hi All,
I am working on VBR fixed point conversion for our DSP processor and in the algorithm the MIN_ENERGY and some more terms which I am not able to understand how those numbers are derived. Can some one help me with some documentation on algorithm discription of VBR?.
Regards,
-Prasad
2010 Oct 28
1
Problem with VAD in preprocessor on iPhone
Hello,
I am attempting to use Speex in an iPhone application and running into an
issue. I got speex to compile by following these instructions:
http://codeforfun.wordpress.com/2010/04/29/compile-speex-for-iphone/
Next, I was able to record some audio and play it back. I then inserted a
call to the speex preprocessor and am passing all of the audio buffers I
receive from Audio Queue Services
2010 Oct 28
0
Problem with VAD in preprocessor on iphone
Hello,
I am attempting to use Speex in an iPhone application and running into an
issue. I got speex to compile by following these instructions:
http://codeforfun.wordpress.com/2010/04/29/compile-speex-for-iphone/
Next, I was able to record some audio and play it back. I then inserted a
call to the speex preprocessor and am passing all of the audio buffers I
receive from Audio Queue Services
2014 Jun 12
1
VAD always return 1
Hi All,
I am trying to use VAD opption of speex encode on STM32F4 chip. But when I
use *speex_preprocess_run *function, It allways return 1.
Anyone can show me the problem? And please, give me an example about using
VAD.
Thanks in advance,
Regards,
Nhan.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2007 Jun 08
0
VAD Questions
> Either one. The question is: If we treat the software like a black
> box, and we feed in PCM audio, we get Speex encoded data out. Where is
> the information that indicates whether the encoded data contains
> speech or not? The API has a "get VAD status", but it seems like that
> might only indicate whether VAD is currently enabled. Perhaps the VAD
> status is
2007 Jun 08
2
VAD Questions
Hello Jean-Marc:
On 08/06/07, Jean-Marc Valin <jean-marc.valin@usherbrooke.ca> wrote:
> > Either one. The question is: If we treat the software like a black
> > box, and we feed in PCM audio, we get Speex encoded data out. Where is
> > the information that indicates whether the encoded data contains
> > speech or not? The API has a "get VAD status", but it
2007 Sep 17
1
Possible fixed point overflow/div 0 preprocess.c
Hi,
I'll try to keep this as brief, yet descriptive enough to save everyone
some time.
If I'm off with this one please forgive me, but it has fixed my issues.
I am not
sure whether it is just my compiler (gcc 3.3.5) doing the wrong thing
with the cast.
File: preprocess.c
Arch affected: x86, (others?)
svn revision: 12778
Description:
The SpeexPreprocessState_ member 'nb_adapt'
2008 Feb 17
1
Voice activity detection
Thanks for your reply. I changed my code to:
if (speex_preprocess_run(preprocess_state, shortPointer) == 1)
{
speex_encode_int(enc_state, shortPointer, &enc_bits);
}
In the mobile version of the software, compiled against the mobile build of Speech, I get 1 and 0 based on whether the speech is detected. In the version of the software compiled against the Win32 version of Speex,
2015 Feb 25
1
Fwd: Unattended guest installation fails
Hi,
I am following the below link to install a Fedora19 guest on Fedora19 Host.
http://kashyapc.com/2011/08/18/unattended-guest-install-with-a-local-kickstart/
Version :
libvirtd (libvirt) 1.0.5.1,
QEMU emulator version 1.4.2, Copyright (c) 2003-2008 Fabrice Bellard
I have the iso which I loop mounted and created a http repo using python
module "python -m SimpleHTTPServer". This
2010 Feb 09
1
Stereo AEC
Hi,
Can anybody show me how to enable stereo AEC, I tried with the
following code and the result is bad, degraded output.
Init:
ec_state = speex_echo_state_init_mc(frame_size, aec_tail, 2, 2);
speex_echo_ctl(ec_state, SPEEX_ECHO_SET_SAMPLING_RATE, &sample_rate);
preprocess_state_left = speex_preprocess_state_init(frame_size, sample_rate);
preprocess_state_right =
2007 Jul 24
1
speex_preprocess_run unable to locate
i'm trying to find the speex_preprocess_run fuction and checked in
the speex/speex_preprocess.h but the prototype isn't there. I'm using
1.2beta1 checked the trunk and it seems to say that is the right header.
wondering if anyone else has/had this issue and if its resolved or my
lib just got corrupted somehow.
thanks
Greg
---------------------------------
Be a better
2007 Sep 27
1
Need some clarifications about "speex_preprocess_run"
Simple questions:1. when this method is called for each frame, do I have to call them twice for both the encode process and the decode process?2. does preprocessor do preprocessing on raw PCM data or on encoded speex data? I need to clarify this because i want to know when should I call this function, before the encoding process (i.e. preprocess the pcm data) or after the encoding process (i.e.
2010 Feb 10
0
Speex-dev Digest, Vol 69, Issue 8
If the left and right channels are processed separately as you do,
the parameter Mic-Number in speex_echo_state_init_mc should be 1, not 2
On Wed, Feb 10, 2010 at 4:00 AM, <speex-dev-request at xiph.org> wrote:
> Send Speex-dev mailing list submissions to
> speex-dev at xiph.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
>
2010 Feb 28
0
Denoise not working for me
Hi
I am trying to use the Denoise option of speex but unable to do so
successfully. I would really appreciate if some one could help me and
identify what exactly wrong i am doing...
I am using below code to perform denoise.
//Initialize speex preprocess state and set the denoise option
int nEnable = 1;
SpxPreprocessState =
speex_preprocess_state_init(160, 8000);
2010 Feb 22
0
Speex echo cancellation and denoise issues
Hi All
I am using speex in one of my WinCE project.
I have been trying to use speex to perform denoise on the captured audio
packet and echo cancellation. Following behavior I have observed while using
various options. I would really appreciate if you could help me with the
issues I am facing.
1. Denoise: I have written the following to code to perform denoise.
//To initialize speex
2007 Jun 08
2
VAD Questions
Hello Jean-Marc et al:
On 07/06/07, Jean-Marc Valin <jean-marc.valin@usherbrooke.ca> wrote:
> > - Is there a reference somewhere (other than the source itself) that
> > explains how the latest VAD algorithm works?
>
> Read the source, Luke :-) (sorry)
Okay. I had to ask :-)
>
> > - Is it possible to obtain the VAD status of a Speex stream
> >
2008 Jan 26
1
Project Proposal: SAM-QFS
In the last 4 years of using SAM-FS/QFS I have fallen in love with this product. I have tried earlier to ask Sun to incorporate features into this product but in vain.
Do you think the following is worth exploring and in-corporating:
1. Unlike ZFS SAM-FS/QFS File system need "compression" feature turned on with ''setfa''. I understand that''s a whole lot of
2008 Feb 15
3
Voice activity detection
This must be a simple issue, but I cannot figure it out.
I want to use VAD, but I don't know how to check if the actual frame has
voice in it or not.
So, in my code, I do:
int tmp = 1;
speex_preprocess_ctl(preprocess_state, SPEEX_PREPROCESS_SET_VAD, &tmp);
speex_preprocess_ctl(preprocess_state, SPEEX_PREPROCESS_SET_DENOISE,
&tmp);
then later, for each frame
2008 Jan 07
2
Problem related to Voice activity detection
hi guys,
i am trying to develop an application having a capability to detect voice activity in voice stream and then record only portion of this stream which contains the activity. i went through these steps.
1. Captured voice through Waveform Functions of Windows Multimedia API
2. Started Speex Preprocessing liberary
3. Turned on preprocessor by calling speex_preprocess_state_init and
2007 May 01
2
Sending speex over a network
I am trying to compile speexclient.c. I downloaded all the files to ~/speex-
1.2beta1/include
When I call ./compile.sh
I get the following errors,
speexclient.c: In function 'main':
speexclient.c:164: error: 'SPEEX_PREPROCESS_SET_ECHO_STATE' undeclared
(first use in this function)
speexclient.c:164: error: (Each undeclared identifier is reported only once
speexclient.c:164: