similar to: Problem in encoding/decoding speech in Win CE

Displaying 20 results from an estimated 1000 matches similar to: "Problem in encoding/decoding speech in Win CE"

2007 Nov 04
2
WaveIn/WaveOut and Speex
Thank you for such a quick response. The only reason I started with Char buffers is because WaveIn and WaveOut on Windows XP accept/emit WAVEHDR structures, which store audio data in LPSTR, which is Char*. typedef struct { LPSTR lpData; DWORD dwBufferLength; ... } WAVEHDR; When I was going from Char to float and back looked very wrong to me as well, but I was just not
2001 Sep 20
4
DirectSound ?? WaveIn ?? MM ??
well i discoverd, HL uses waveIn, which is a part of the DirectSound ... so ... is there a Wine binding for waveIN ? - -moritz angermann
2013 Mar 06
3
Plotting time data for various countries in same graph
Hi, I've the following kind of data Time Country Values 2010Q1 India 5 2010Q2 India 7 2010Q3 India 5 2010Q4 India 9 2010Q1 China 10 2010Q2
2007 Nov 05
2
WaveIn/WaveOut and Speex
Evgueni, Don't listen to this guy. The last thing someone confused about types should use is a union. Listen, whatever types you're using, you're just dealing with data in memory. For an array, it's just a big block of data in memory. You need to know how that data is stored in memory. For audio data, WAVEFORMATEX tells you that with its contents. Don't let types
2007 Nov 04
3
WaveIn/WaveOut and Speex
Hello, I know my question has been asked before because I spent the last week searching the web for how to use Speex in combination with WaveIn/WaveOut and I ran into a few posts, but none of them answer the question. There is still a lot of confusion how to use WaveIn/WaveOut and Speex by junior developers such as myself. Even after examining code for SpeexDec and SpeexEnc, I cannot get clear
2007 Nov 05
2
WaveIn/WaveOut and Speex
Again, thank you for helping me. I know this might seem like a trivial matter to you and other experts in the field, but believe me, there are a lot of programmers, whose posts I saw on the web, who tried to use WaveIn/WaveOut and Speex and failed. As I understand it, WaveIn just buffers audio data according to the bit rate specified. So, if we use waveFormat.wBitsPerSample = 8, then each Char of
2008 Sep 12
1
Echo Cancellation not working on WinCE
Hello Friends, I am trying to use speex-1.2beta3 version for echo cancelling. On my WinCE board I am using WaveIn/WaveOut functions to record and playback audio. I am receiving audio data on udp socket, then playing it on speaker using WaveOutWrite function. I registered callback to capture microphone data, then data chunk came from socket ( which I played on speaker) and data captured from
2008 Dec 10
1
No Sound in Wine - disable / remove pulseaudio
>Hello, > >PulseAudio is not a problem. You can use the OSS Emulation of PA, it works perfectly. (I saw a test with Dragon NaturallySpeaking, and it seems imply that it's good, isn't it ?) > >I used padsp for a while when a beautiful project was born : WinePulse. I'm actually testing it with the main (and only) developer of this PulseAudio backend for Wine and recently
2007 Dec 05
1
AEC diagnistics generated files
Hi Guys, I am trying to incorporate the speex AEC into my RTP stack. Trying to diagnose why the echo is not being cancelled I enabled DUMP_ECHO_CANCEL_DATA as per the docs. The problem is that the dump files the AEC generates are of different size. As I understand this and looking at echo_diagnostic.m, the files are supposed to be of same size. Can someone give me a hint as to why this could
2006 Jun 22
2
How to get audio data from microphone on pocketPC ?
Hi, My name is Patrick, i am french, and i am developping a softphone for pocket PC using speex. Sorry in advance for my bad english. So i have make an GUI in C# that use the speex functions through dll write in C++. And the encoding and the decoding using speex seems to work not too badly.(i test with a wave file) My problem is that i need to get audio data from the microphone. In order to do
2007 Dec 05
1
AEC diagnistics generated files
Sorry for not being accurate in the original question. My testing environment is set to 20ms frames (PCM 16 8 1 to be precise). I have verified that all the frames that I feed to the AEC have the fixed size of 320 bytes. So this is why I am presuming that the the dumped files should be of equal size. The output signal is good and not distorted. It has echo, though. In a try to diagnose that I
2007 Nov 05
0
Fw: RE: WaveIn/WaveOut and Speex
Begin forwarded message: Date: Mon, 5 Nov 2007 07:27:21 -0500 From: "Evgueni Tsygankov" <eugenet@rusmex.com> To: "Jean-Marc Valin" <jean-marc.valin@usherbrooke.ca> Cc: speex-dev@xiph.org Subject: RE: [Speex-dev] WaveIn/WaveOut and Speex Again, thank you for helping me. I know this might seem like a trivial matter to you and other experts in the field, but believe
2010 Jun 28
1
ACE does not work for me at all.
Hello, all. 1) ACE does not work for me I am in a voip project using Speex, failed to have hte Speex ACE work. here is how I initialize it: /** * Configurations : * #define BITS_PER_SAMPLE (16) * #define SAMPLE_RATE (8000) * #define CHANNEL_NB (1) * #define DURATION (20) * SPEEX_MODEID_NB */ _eco_state = speex_echo_state_init(_encframe_size, 10*_encframe_size); speex_echo_ctl(_eco_state,
2012 Jan 20
2
No sound in Wine 1.3.37 (tried known solutions already)
Note to admins: Please, read through my whole post this time before deleting it. You will be surprised to find out that I have already tried all solutions detailed in the stickies. If you still think that this topic should be deleted, please be kind enough to notify me why, so that I would know how to proceed about getting help with my problem. Thank you. I have 64-bit OpenSUSE 12.1 and I have
2007 Nov 04
0
WaveIn/WaveOut and Speex
> When I was going from Char to float and back looked very wrong to me it not only *looked* wrong! > as well, but I was just not sure (and still am) how to translate the > Char* audio stream generated by WaveIn to a format that can be > understood by Speex. Would using speex_decode_int and > speex_encode_int instead of speex_decode and speex_encode be the > answer? Using
2012 Oct 14
1
Unable to work with Rattle
Hello, I have installed R version 2.15.1 and I am trying to work with rattle package. I have got an error stating as below; Error in loadTooltips() : could not find function "xmlTreeParse" In addition: Warning messages: 1: package ‘XML’ is not available (for R version 2.15.1) 2: In library(package, lib.loc = lib.loc, character.only = TRUE, logical.return = TRUE, : there
2007 Nov 04
0
WaveIn/WaveOut and Speex
I'm not sure what input/output format you're trying to use, but it looks wrong. You're using the float functions that take +-32767 values and you're feeding (or converting) chars. Unless your machine has very special chars (which I doubt), a +-32767 value just isn't going to fit in. This has nothing to do with Speex BTW, it's just handling the audio data properly.
2007 Nov 05
0
WaveIn/WaveOut and Speex
Evgueni Tsygankov wrote: > Again, thank you for helping me. I know this might seem like a > trivial matter to you and other experts in the field, Sorry, Jean Marc and many others, including me, care very little about an crappy OS produced by that company in the US which has been convicted of (but not punished for) anti-competitive behaviour. > but believe me, there are a lot of
2016 Apr 27
1
Approximate taylor series
Hi All, Say I have the values of function f(x1,x2,x3,x4) for each values of x1,x2,x3,x4 but not complete. But the functional form is not known. Techniques like regression, etc. are not able to give me satisfactory results and msy be more complex than we thought. I wanted to use Taylor's approximation to continuous function, to approximate a functional form using the given data. But failed
2020 Jan 25
0
yum update / kernal update failed - remove or repair
On 23/1/20 12:44 am, Gary Stainburn wrote: > ... > As I will probably only have one chance to fix this (without having to get the ISP's help again) I was wondering if there are any clear instructions on how to remove a failed kernel RPM update, returning the server to the state it was in prior to the YUM update? > ... If you do not want to involve the ISP ever again when a kernel