search for: speec

Displaying 4 results from an estimated 4 matches for "speec".

Did you mean: speex
2010 Jun 07
0
No subject
preprocess.c: /* FIXME: This VAD is a kludge */ st->speech_prob =3D Pframe; if (st->vad_enabled) { if (st->speech_prob > st->speech_prob_start || (st->was_speech && st->speec= h_prob > st->speech_prob_continue)) { st->was_speech=3D1; return 1; } else { st->was_speech=3D0; return 0; } } else { return 1; } AND case SP...
2010 Jun 07
0
No subject
preprocess.c: /* FIXME: This VAD is a kludge */ st->speech_prob =3D Pframe; if (st->vad_enabled) { if (st->speech_prob > st->speech_prob_start || (st->was_speech && st->speec= h_prob > st->speech_prob_continue)) { st->was_speech=3D1; return 1; } else { st->was_speech=3D0; return 0; } } else { return 1; } AND case SP...
2006 Aug 10
2
[Bug 1217] scp does not limit bandwidth
...o: copying files with -l option from: OpenSSH_3.7.1p2, SSH protocols 1.5/2.0, OpenSSL 0.9.6 24 Sep 2000 to: OpenSSH_4.3p2, OpenSSL 0.9.8b 04 May 2006 is very slow (below a specified limit). The same with copying files over Internet (both ssh: 4.3p2) - with "-l 1200" is really copied with speec about 60KB/s. I'm not sure, but in previous version (probably 4.3p1 or 4.2) speed was limited correctly (I offen use scp with speed limit). I have attached debug from running: scp -l 48000 -vv root at 192.168.16.111:/backup/test ./ 1>scp_limit.txt 2>&1 scp -vv root at 192.168.16.111...
2004 Aug 06
3
What is the format of the PCM/WAV data for speex_encode & speex_decode?
I'm confused about the format of the PCM/WAV data for speex_encode & speex_decode speex_encode(enc_state, input_frame, &bits); In the manual, it says "input_frame is a (float *) pointing to the beginning of a speech frame" (for encode) But I've found that in speexenc.c and testenc.c, short* is used instead of float* So, isn't it signed 16 bit samples(if 16bit) or float? For vorbis, I have to convert signed 16bit to float before encoding, how's about speex? <p><p>--- &...