Displaying 20 results from an estimated 2000 matches similar to: "VAD CPU usage"
2008 Apr 17
0
VAD CPU usage
Sounds strange. Can you reproduce the problem with speexenc/speexdec? If
so, can you send a short file that triggers that along with the exact
command line?
Jean-Marc
Jozsef Vass a ?crit :
> Hi Jean-Marc
>
> I am using speex in my voip app (wideband mode). I
> have noticed that when VAD kicks in, CPU considerably
> increases (bitrate decreases to 4 kbps). It takes
> about 7
2009 Nov 18
2
jspeex question
The link is http://www.adobe.com/devnet/rtmp/. TC Message stands for TinCan message. It is 11 bytes long, first byte is message type, three bytes of payload length four bytes of timestamp and three bytes of stream ID.
The first byte of the payload for audio message is the format byte and the rest of the byte is the payload.
Jozsef
----- Original Message ----
From: Jeff Ramin <jeff.ramin
2010 Mar 19
4
Speex in flash player: how to work with?
Nicer way:
void* speexState = speex_encoder_init(&speex_wb_mode);
int speexFrameSize, speexRate;
speex_encoder_ctl(speexState, SPEEX_GET_FRAME_SIZE, &speexFrameSize);
speex_encoder_ctl(speexState, SPEEX_GET_SAMPLING_RATE, &speexRate);
SpeexPreprocessState* speexPreprocessState = speex_preprocess_state_init(speexFrameSize, speexRate);
Jozsef
-----Original Message-----
From: Max
2009 Nov 18
3
jspeex question
FLV contains TC messages? TC message payload contains a format byte and speex frames (up to eight). In the format byte 0xb0 indicates speex. Speex is always 16 kHz, 16 bit, mono.
Jozsef
Message: 1
Date: Mon, 16 Nov 2009 14:40:20 -0600
From: Jeff Ramin <jeff.ramin at singlewire.com>
Subject: [Speex-dev] jspeex question
To: speex-dev at xiph.org
Message-ID: <4B01B8B4.8020904 at
2010 Mar 19
2
Speex in flash player: how to work with?
First of all, Flash Player can only publish Speex at 16 kHz. 20 ms of audio (320 samples) will result in compressed payload size of 106 bytes (42.4 kbps). When Flash Player sends a TC message, there is 11 bytes TC message header and a single byte of audio message header.
For more information, please see ActionScript 3 reference http://help.adobe.com/en_US/AS3LCR/Flash_10.0/
Jozsef
2010 Mar 31
1
Speex in flash player: how to work with?
What are you trying to accomplish? My code sample was about how Flash Player microphone input in speex.
If you want to do decode, please see speexdec.c
Jozsef
-----Original Message-----
From: Max Lapshin [mailto:max.lapshin at gmail.com]
Sent: Tuesday, March 30, 2010 8:53 AM
To: Jozsef Vass
Cc: speex-dev at xiph.org
Subject: Re: [Speex-dev] Speex in flash player: how to work with?
On Sat, Mar
2009 Oct 01
1
High CPU usage
Hi Jozsef,
this approach sounds interesting.
Do have you have some source code available ?
Thanks
Mark
-----Original Message-----
From: speex-dev-bounces at xiph.org [mailto:speex-dev-bounces at xiph.org] On Behalf Of Jozsef Vass
Sent: Friday, September 25, 2009 11:43 PM
To: mark_schilling at gmx.de
Cc: speex-dev at xiph.org
Subject: Re: [Speex-dev] High CPU usage
I have run into the same
2012 Oct 08
2
Is it possible to change the quality with encoding ?
Hi All,
Actually, the question is right on the topic.
Is it possible to change the quality while encoding ?
If the answer is yes, does the jitter buffer provides info about latency, e.g. : if latency is too high, we lower down the quality, if the latency is okay, we are raising the quality until latency rise up again...
Thank you for your help.
Morgan
2009 Sep 25
1
High CPU usage
I have run into the same issue. Before sending a frame to encoder, I calculate the energy. If it is less than a small threshold, I simply replace this frame with "silence frame," which is 320 random samples of values smaller than 3 (16 kHz).
BTW, I have only experience this problem with certain USB headsets that provide you all 0 samples when muted.
Jozsef
2007 Dec 04
3
speex/aec and vad
Hi Aymeric,
> 2 questions:
I count 4 :-)
> * Do you "feel" that the current svn is enough stable
Yes. I'm planning on releasing it as 1.2beta3 this week. Even in normal
time, I try to keep svn in good shape so it is almost always better than
the last release. And even when it breaks, Speex bugs tend to be very
obvious and easy to reproduce (no segfaults that happen once a
2009 Jul 16
1
Encoding/Decoding doubts
Flash player encodes speex at 16 kHz, mono, 16 bit. Fields in the format byte should be ignored if the format is speex. You can set the quality by Microphone.encodeQuality (default 6). You can also set the number of speex frames per tc message using Microphone.framesPerPacket.
Flash player can only decode speex at 16 kHz, so make sure you have the proper sample rate.
Jozsef
>
> Message:
2006 Oct 24
2
Does VAD/DTX work without VBR and Preprocessor
Hello,
I'm try to run speex on some ARM processor.
I'd like to cut away some speex features including VBR, ABR and preprocessor
while still supporting VAD/DTX.
But I've found some puzzles in the source code regarding VAD as below,
1) there are VAD related codes in the source file preprocess.c.
Will VAD still work If I don't use the source file preprocess.c?
2)The speex manual
2006 Oct 24
1
Does VAD/DTX work without VBR and Preprocessor
Hi Marc,
Thanks for your quick response.
So if VAD is enabled then VBR will be enable although it's a special VBR.
How about take out the VAD code from the VBR and remove the code else?
Lianghu
On 10/24/06, Jean-Marc Valin <jean-marc.valin@usherbrooke.ca> wrote:
>
> > 1) there are VAD related codes in the source file preprocess.c.
> > Will VAD still work If I
2007 Jun 07
2
VAD Questions
Hello all:
I am interested in using Speex for an application that streams audio
from a (noisy) source, so I am interested in VAD and DTX operation.
However, after browsing the archives of this list, I note that a
number of people have not been satisfied with the operation of the VAD
algorithm in Speex. This leads me to a few questions:
- Is there a reference somewhere (other than the source
2009 Mar 17
1
VAD speex 1.2rc1
My data is speech sampled as pcm mono 32khz.
I want to use vad for regulating the agc gain mechanism.
So... if voice is not detected I just reduce the agc value
in order to not amplify the 'silence' otherwise we just
increase the agc value if it is below the minimum.
Thanks,
Daniel
----- Original Message -----
De: Jean-Marc Valin <jean-marc.valin at usherbrooke.ca>
Para: danflu at
2003 Oct 14
2
VAD in Asterisk ?
Hi,
Is there is some form of VAD on * for SIP channels, cause I have a
problem with MOH. I made an extension which simply plays MOH, when I
dial that extension with my ATA188 MOH sounds choppy if I talk on the
phone the MOH keeps playing.
I saw the sip channel (show channel SIP/*) and I see no packets going
in/out when I talk then packets shows going in/out.
I don?t have this kind of problem
2009 Jul 27
2
VAD performance worse on version 1.2rc1 than 1.1.12
Hi, I decide to write to the list because of a strange behaviour when
updating from version 1.1.12 to 1.2rc1.
My software was running fine with version 1.1.12, but now I want to benefit
from advances on AEC.
After updating the library to 1.2rc1 and do few changes on my sources, I run
the application and discovered that VAD doesn't work so fine as in previous
version 1.1.12 (3 years ago).
I
2004 Sep 27
2
Speex VAD algorithm
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7226.0">
<TITLE>Speex VAD algorithm</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/rtf
2008 Aug 19
2
size of speex packets when VAD/CNG is enabled
Hi all,
supposing to have speex working at 3.95, when VAD/CNG is employed, which
is the size of those "silence" samples respect to voice samples?
I am wondering if it could be possible to lower even the transmission of
VAD/CNG samples by specifying "outbound" in the communication channel
only 1 bit instead of sending the whole VAD/CNG packet.
I am doing the same for AMR
2007 Aug 25
1
asterisk and vad/cng
Hi List,
i've set up a cisco 7912 for my asterisk box. I've had problems with
VAD and CNG. After googling a bit, i've found an article about asterisk
not supporting these two protocols, therefore it's better to turn them off.
Since then i did not found answer to my two questions, maybe somebody
here could help me:
a) am i even able to turn off vad/cng on cisco 7912? SIP