Displaying 20 results from an estimated 1000 matches similar to: "21bytes vs 38 bytes"
2007 Jun 13
1
21bytes vs 38 bytes
Hello, thank you for responding. I'm sure I'm confusing something, but I did
not explicitly set either kHz or kbps, I just set the mode to narrowband,
and traced through libspeex's code to see that sample_rate was 8000
something, I'm guessing Hz. My assumption was: if you set PA to nb-mode,
then you should encode 160 bytes to 21. Is that mistaken?
ys
On 6/13/07, Jean-Marc Valin
2004 Aug 06
2
SPEEX_GET_SAMPLING_RATE of encoder is wrong
Hi,
I'm using speex 1.1.4 and when I query SPEEX_GET_SAMPLING_RATE
as in
speex_encoder_ctl ( m_pEncoderState, SPEEX_GET_SAMPLING_RATE,
&m_SampleRate );
I get
2
The encoder is initialized with
m_pEncoderState = speex_encoder_init ( &speex_wb_mode );
On the decoder side, the correct sampling rate is returned:
m_pDecoderState = speex_decoder_init ( &speex_wb_mode );
2006 May 22
1
RQuantlib Array processing applying EuropeanOptionExampleArray
I am trying to replicate part of the EuropeanOptionExample using my
date. I have a data.frame containing all my inputs
atm.vols<-subset(data.vols,moneyness==min);
#Some days have the abs(moneyness) exactly between two strike prices,
#Traders will alway price an option at the higher vol when selling it,
so we will too.
2004 Aug 06
1
One Minor Bug (Typo) in Speex 1.0
Speex 1.0 - in file sb_celp.c line 218 change speex_decoder_ctl(...) to
speex_encoder_ctl(...):
void *sb_encoder_init(SpeexMode *m)
{
.
.
.
--> speex_decoder_ctl(st->st_low, SPEEX_GET_SAMPLING_RATE,
&st->sampling_rate); // Replace
<-- speex_encoder_ctl(st->st_low, SPEEX_GET_SAMPLING_RATE,
&st->sampling_rate);
st->sampling_rate*=2;
return st;
}
--
2004 Aug 06
1
SPEEX_GET_SAMPLING_RATE of encoder is wrong
Hi,
No, it only happens with speex_wb_mode.
But like I said, it is because in wideband mode, the function
sb_encoder_init
is called and this function initializes the sampling rate using
speex_*de*coder_ctl
instead of
speex_*en*coder_ctl
In narrowband mode, the sampling rate is just initialized to 8000
st->sampling_rate=8000;
BTW, I saw that my email was added to an existing thread instead of
2003 Nov 28
4
User must change password on next logon
I have been trying to create some administration guidline to adding users
and groups in a Samba 3.0 PDC. I have most of the task documented. The
problem I run into is where can I set the attribute for a user to change
their password on next logon.
Any help is appreciated.
Terrance Bey
2016 Jun 27
2
Patches for adding 120 ms encoding
Attached is the amended second patch. It now extends the multistream API as
well to 80/100/120 ms and incorporates changes based on Mark's comments.
Thanks,
Felicia
On Mon, Jun 13, 2016 at 4:21 PM Felicia Lim <flim at google.com> wrote:
> Hi Mark, Jean-Marc,
>
> Thanks for your comments.
>
> On Sun, Jun 12, 2016 at 6:34 AM Mark Harris <mark.hsj at gmail.com>
2010 Jun 21
4
Failing Routes in deployment
I have an app that has the following in the routes file:
namespace "admin" do
# ADMINISTRATIVE ROUTES ONLY
root :to => ''home#index''
resources :comments do
member do
get :approve
get :reject
end
end
resources :users do
member do
get :block
get :unblock
end
end
end
When browing to
2007 Jan 08
1
VAD in preprocessor
Hi all and Jean-Marc,
Firstly thanks a lot to you for helps, at last I accomplished to use
speex-1.2beta1 in my speech application. I try to understand speex source
code and improve speech quality. The problem in my application (like many
people in the list says) is noise. So I've added VAD in preprocessor as
following. VAD in preprocessor is very good, there is not noise outside
speech. I
2016 Jun 28
1
Patches for adding 120 ms encoding
Hi Ulrich, thanks for the suggestion. My concern is that one of the valid
inputs is "2.5", which would require conversion to an int, e.g. x10, but
doing something like this would start to affect the code readability.
On Mon, Jun 27, 2016 at 3:02 PM Ulrich Windl <
Ulrich.Windl at rz.uni-regensburg.de> wrote:
> Hi!
>
> A note on style: Looking at this chunk of the patch
2006 Sep 21
2
AEC in WB mode fixed yet ?
> Today's Topics:
>
> 1. AEC with WB mode (Jean-Christophe.Berge@etu.enseeiht.fr)
> 2. Multiple frame encode and decode (Reza Fatahillah)
> 3. cant link speex_echo.h (jesus)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 20 Sep 2006 08:46:03 +0200 (CEST)
> From:
2010 Jun 15
2
AEC init crashes
Hello,
I've just caught a strange crash in speex_echo_state_init routine. It
happened only on one WinXP machine, while on others using XP, Vista and
7 everything is fine.
Crash occures in mdf.c line 434: st->spec_average =
DIV32_16(SHL32(EXTEND32(st->frame_size), 15), st->sampling_rate);
Got any ideas or should I provide more information of the OS?
Thanks a lot!
2006 Jun 25
1
Sorting ferret results by column
I have the acts_as_ferret plugin installed. Everything searches great,
but I would like to limit the results (i.e. by ''end_date'') and sort them
(by ''end_date''). ''end_date'' is a valid column in my "posts" table.
Here''s the code I have already:
@posts = Post.find_by_contents(params[:query])
params[:query] comes from a form. I
2007 Feb 06
2
svn AGC
Hi Jean Marc,
I found that the AGC API and algorithm has changed in svn head trunk.
Is it safe to use it? Or is it for testing purpose only?
You also said that VAD in svn is broken in a previous post, is it
related to the AGC change?
or can we mix the old VAD algorithm with the new AGC safely?
kind regards,
fredo
2008 Nov 10
3
SPEEX on iPhone ?
Hello Ashhar,
thanks for your reply, but i'm a bit surprised.
1- Does it mean that it is possible to make a Real Time Encoding/Decoding
with SPEEX on iPhone ?
2- What parameters have been used (QUALITY, SAMPLING_RATE, BITRATE) ? and
what kind of CPU load do they measure for that ?
Thanks by advance,
Vincent
----- Original Message -----
From: "Ashhar Farhan" <farhan at
2004 Aug 06
5
Memory leak in denoiser + a few questions
Hello
The st->zeta pointer isn't freed in the speex_preprocess_state_destroy()
function of the preprocess.c file (alloced in line 167). It's in Speex 1.1.4
by the way.
I'm trying to make the denoiser work with my application and has got
reasonable noise reduction after applying the denoiser. I, however, haven't
been able to find any information of what the purpose of
2012 Mar 25
2
disable EDID for arcade monitor?
I cant make the nouveau work with an arcade monitor, problably because the
EDID.
I can make modeline work fine to reduce the horizontal to 15khz, tested in
a normal pc monitor (with ugly visual because the 15khz in horizontal).
But when i try in the arcade monitor, dont show any image after xorg start.
In official nvidia driver has an option NOEDID to force the driver to
ignore information from
2008 Nov 12
2
SPEEX on iPhone ?
ok, interesting !
Do you know how much CPU it takes for a real time encoding/decoding ? it's
more around 20% or 80% instead ?
Do you know if it works for 44100 Hz / 32kbps / Quality =8 ?
thanks again.
Vincent
----- Original Message -----
From: "Ashhar Farhan" <farhan at phonestack.com>
To: "Vincent Burel" <vincent.burel at vb-audio.com>
Cc: <speex-dev at
2003 Jun 20
2
Quality -1 default low-pass
I brought this up 12 months ago or more. I believe the low-pass filter defaults too high with quality -1 in Vorbis 1.0. Is this going to change in the future? I think it should at least cut off at 15khz not 16khz and perhaps even 14khz. I believe it's important when streaming. Removing some of the higher frequencies compared to removing more of the audible sound makes more sense to me.
2008 Nov 07
2
SPEEX on iPhone ?
hello,
i 've already used SPEEX in a protoype of voip application (on VC 6) and i
must says that it works well, the sound is good, and the object works well
with multi-instances.
But now i'm wondering if it's possible to port the SPEEX encoder (and
decoder process) on iPhone ? Does someone tried to do that ?
Do you think it is possible or completly over the capabilities of the ARM