Tagged Questions

Speex is an open-source audio compression format designed for speech. It is based on CELP and is designed to compress voice at bitrates ranging from 2 to 44 kbps.

learn more… | top users | synonyms

8
votes
1answer
503 views

Speex-encoded SWF?

A project that I'm working on requires being able to dynamically create sound-asset SWF files (using DefineSound tags). Even though I've been able to successfully create DefineSound tags using raw ...
7
votes
1answer
2k views

Acoustic Echo Cancellation (AEC) with Speex and DirectSound

I am trying to perform Acoustic Echo Cancellation (AEC) with the Speex codec library. According to the Speex documentation, I need to perform two calls: speex_echo_playback(echo_state, echo_frame); ...
6
votes
1answer
465 views

Help with creating a Speex Voip server and client

Im trying to create a Speex Voip client and server. I have the basics down and its working OK on the local machine over UDP. I am using JSpeex for portability. Im looking for tips on creating the ...
5
votes
3answers
1k views

Acoustic Echo Cancellation in Flash/Flex using native libraries

I have to implement AEC in Flex video conferencing application. I know that it can not be done directly in Flash. I'm thinking to write a native application or library that will do AEC outside Flex. ...
4
votes
3answers
2k views

Speex for iphone

how to use "speex" for audio encoding/decoding in iphone? I am not getting the framework to add in project.
3
votes
2answers
185 views

Flash/Flex Speex audio decode, to play a speex file

I want to play *.spx files which encoded by Speex on the Web. But I have no knowledge of Flash/Flex or any Flash Audio codec. After Google search for a whole day, I got some solutions, that is: Do ...
3
votes
1answer
351 views

Example of a FLV file with Speex-encoded audio?

Can anyone point me to an example of a Flash video file with a Speex-encoded soundtrack, freely downloadable from somewhere on the web? Video can be in any codec (ideally none.) I am trying to ...
2
votes
1answer
162 views

Annoying tick with speex [closed]

I am making an application in which I use Speex, OpenAL and linsndfile. The problem is that when i write a sample buffer in the file (raw pcm unsigned 16) using libsndfile everything is right.But if ...
2
votes
0answers
400 views

how to encode/decode speex with AudioQueue in ios

If anyone have some experience that encode/decode speex audio format with AudioQueue? I have tried to implement it by editing the SpeakHere sample. But not success! From the apple API document, ...
2
votes
2answers
638 views

speex decoding going wrong

I'm using speex to encode some audio data and send it over UDP, and decode it on the other side. I ran a few tests with speex, and noticed that if I decode a packet straight after I encoded it, the ...
2
votes
4answers
974 views

Adobe flash : Playing Speex Audio from a file

I have tried really hard to find an example showing how to play speex encoded audio in flash. I tried the following code - var connect_nc:NetConnection = new NetConnection(); ...
1
vote
2answers
55 views

Convert void *(void * const mAudioData) to Short * using Objective c?

i have AudioQueueBuffer's Audio Data which has void * const format. i want short array (short *) Audio data for my codec. How to Convert void * const to Short * in Objective c??? type cast from ...
1
vote
0answers
149 views

Python Voice Communication

Hello I am trying to figure out some code which is suppose to send voice over the network. I am having problems with the audio it sends but its just a series of loud beeps and not the audio I input ...
1
vote
2answers
93 views

Does Speex have a hard upper limit of 32kHz sample rate?

The Speex docs say that it's 'mainly' designed for 8/16/32kHz sampling rates. Most PC inputs seem to report sampling rates of 8kHz, 16kHz and 44.1kHz. Does this mean I'm out of luck if I want to use ...
1
vote
2answers
491 views

Microphone playback with SPEEX codec in Flex

I'm working on a project where the user have to record his/her voice, and submit it to server. But before submitting the user might need to play the recorded sound. The application has a recording ...
1
vote
2answers
436 views

How can I extract audio from FLV?

I need to extract the audio from a FLV file recorded using FMS. I used the SPEEX coded in my flash application that streams the audio and video to FMS. I have tried using FFMPEG, with no luck. This ...
1
vote
0answers
131 views

Linking c library error. COMDAT symbol '.exc$T' does not match section name '.rdata'

I compiled the speex library for symbian using carbide C++. The compile completes with zero errors/warnings. I use the compiled library in my QT application. Compiling the QT application gives the ...
1
vote
1answer
1k views

API for Speex codec in Flash/Flex

With AIR 2 allowing access to mic data, it's possible to save/process audio locally. Adobe provides a WAVWriter example but is there any API access to the Speex codec?
1
vote
2answers
312 views

Python ctypes & libspeex.dll/libspeex.so; what are the equivilents to #define, typedef, and structs?

I have a reference of the dll file here: http://speex.org/docs/api/speex-api-reference/group__Codec.html What I'm wondering is, in that list, there are a lot of defines. What is the python ...
1
vote
2answers
1k views

How to use JSpeex in java

I want to transmit audio data over network using java program. I got that JSpeex is an external jar which can help me for encoding audio data. But I donot know how to use Speex. Thanks Sunil Kumar ...
1
vote
3answers
1k views

Java Speech Example: Encode, Stream, Decode, Play

I have been trying to find an example of this that I could use for a couple years, I'm ashamed to admit. I would like to see a working, compileable example (most that I find online don't compile or ...
0
votes
1answer
51 views

Adobe flash record compressed samples from microphone

I want to capture audio samples from the microphone in my adobe AIR application and then save them to an flv file. I have the following code: mic.setSilenceLevel(0, DELAY_LENGTH); ...
0
votes
0answers
49 views

Error installing ffmpeg on Ubuntu 8.04 JeOS with Speex

I'm having an issue installing ffmpeg with Speex support on Ubuntu 8.04 JeOS. After some wandering around in dependency hell I managed to secure the proper libspeex and ffmpeg versions, and it ...
0
votes
0answers
58 views

(Scala Implementation) JSpeex encoding wrong duration; garbled

I am currently attempting to take a raw wav file and convert it into Ogg Speex format using JSpeex and the Scala programming language. However, the encoded file's duration ends up being not only the ...
0
votes
1answer
62 views

#error You now need to define either FIXED_POINT or FLOATING_POINT

I am trying to compile ioauek3 on our IBM PowerPC machine that is running with a Linux environment. I got this error: #error You now need to define either FIXED_POINT or FLOATING_POINT After ...
0
votes
0answers
84 views

Python Audio over Network Problems

Hello I am having problems with audio being sent over the network. On my local system with no distance there is no problems but whenever I test on a remote system there is audio but its not the voice ...
0
votes
1answer
61 views

Wrapping Speex format in an Ogg container..HowTo?

I'm looking for examples on how to wrap the speex format with the ogg format. I stumbled upon the "fish" example (kfish) but it would be nice if someone could point me in the direction of a "cut to ...
0
votes
1answer
205 views

Speex jitterbuffers on mobile devices

I am using an application that is using the speex jitterbuffer. What happens is that the jitterbuffers appears to grow large when there is heavy variations in the connectivity, and the result is then ...
0
votes
1answer
770 views

Flash SPEEX codec coversion for Google Speech API - a challenge

People have figured out how to use the Google Speech API (Speech-To-Text). I'm trying to get it working with Flash Speex codec, and I just can't figure it out. I've tried inserting frame size byte ...
0
votes
1answer
73 views

Speex voice chat: EXC_BAD_ACCESS crash when trying to decode

I'm developing a voice chat and I used speex to compress the data that is being transmitted. But I encountered a crash when I try to decode the received data. I compress the data using this code: ...
0
votes
1answer
93 views

parse ogg file in java without decoding

I have a .spx file (an Ogg file with Speex-encoded audio). I would like to use Java to pull the Speex-encoded bytes out of the Ogg container. The problem is, it seems all of the Java libraries I can ...
0
votes
1answer
179 views

Wrap Raw Speex in OGG Container

are there any libraries that allow one to pack raw speex into an ogg container? I know Jspeex, but - as far as I can see - this library only handles Ogg/Speex and PCM. But I already have a Speex ...
0
votes
1answer
131 views

Speex for Windows Phone 7

Try as I might I can't find a Speex implementation for Windows Phone 7. I'd rather not attempt to port it to C# myself if it's already been done. Can anyone point me toward a WP7 implementation of ...
0
votes
0answers
240 views

Converting raw pcm to speex?

For latency issues, I would like to send speex encoded audio frame data to a server instead of the raw PCM like I'm sending right now. The problem is that I'm doing this in flash, and I want to use a ...
0
votes
0answers
96 views

JSpeex alternative

Folks, I have tried using JSpeex for transcoding of live streaming Speex audio into PCM. Unfortunately, the latest JSpeex codebase does not really work with the latest Flash player (the source of my ...
0
votes
0answers
177 views

Using voice activity detection in speex

I need in my application "voice detection" to use it on my audio files. I search a lot on google and found "speex" that contain voice activity detection. I called it like this: ...
0
votes
1answer
236 views

Process Flex/Flash SPEEX Audio Data on the Server Side

I'm implementing a very simple audio-only RTMP server. I have my client code like this: // get the default mic var mic:Microphone= Microphone.getMicrophone(); // best quality (picks up all sounds, ...
0
votes
1answer
173 views

How can i adapt speex echo canceller to process a float samples?

Good day! how сan i use float samples for echo cancellation processing? I tried to change interface and body of central function: from void speex_echo_cancellation(SpeexEchoState *st, const ...
0
votes
1answer
545 views

Add new codec to ffmpeg (Speex)

I want to use ffmpeg to convert a flv file to mpeg/avi and it seems my flv file has Speex codecs for Audio. Regarding ffmpeg documents, Speex is a external library so I want to know how can I use ...
0
votes
1answer
567 views

How to play speex encoded audio in Flash player?

I am able to record sound from microphone, encode it using SPEEX and write into ByteArray. I want to play it back. If I try using Sound object the audio is messed up. Speex uses 16kHz for encoding ...
0
votes
3answers
303 views

C code problem..Can anyone help?

I want to decode a speex file and convert into a PCM wave..I am trying to compile the speex sample code they have given..It's not giving any compilation error. but it does nothing when i run it.. ...
0
votes
1answer
299 views

Predicting voice packets (speex/ilbc c++)

For some time I've been using gsm codec for network audio chat. Now I'd like to implement smth like speex or iLBC due to "voice prediction". As far as I understand i need timestamps for packets. Also ...
0
votes
1answer
408 views

Add SPEEX code support to FFMPEG

How can I add SPEEX support to my FFMPEG installation? I need to extract the audio from a FLV created by FMS. I just installed it using: app-get install ffmpeg. ffmpeg -version FFmpeg version ...
0
votes
1answer
59 views

compiling libspeex for symbian

I want to use libspeex library in my nokia Qt application. How do I compile speex for this purpose, and how do i add it to my qt project?
0
votes
1answer
599 views

Combining multiple sound streams in Java

I have a number of voice sound streams encoded in PCM (PCM_SIGNED 8000.0 Hz, 16 bit, mono, 2 bytes/frame, little-endian) which I want to send over the network. To save bandwidth I currently encode the ...
0
votes
1answer
183 views

voice communication for python help!

I'm currently trying to write a voicechat program in python. All tips/trick is welcome to do this. So far I found pyAudio to be a wrapper of PortAudio. So I played around with that and got an input ...
0
votes
1answer
328 views

Speex in Python

How can I use Speex to encode/decode from within python? Are there any wrappers? I found an old project pySpeex but it is obsolete now (requires Python 2.2).
0
votes
1answer
687 views

Adding JSpeex Jar file to Blackberry Project

I am trying to add JSpeex's jar file to Blackberry project. Compilation fails if I add it. Also, if I add source files to the project, compilation fails as JSpeex is pure Java and classes are not ...
0
votes
1answer
299 views

Speex for Blackberry

How do I use speex for Blackberry application ? Is there any sample code available to refer? Thanks in advance.
0
votes
3answers
1k views

in flex, is it possible to embed speex files?

Flash 10 supposedly has support for the Speex audio format. I'd like to embed some Speex files in my SWF: [Embed(source='assets/test.spx',mimeType='audio/x-speex')] private static const ...

1 2