Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
464 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 ...
1
vote
1answer
385 views

Audio compression in android

I want to send some speech file over internet to my server. My server will do the same. But some speech file or audio files are large in size. My aim is to compress that audio data to server. I found ...
1
vote
1answer
65 views

jspeex decoder not producing the correct output

I am using JSpeex api for decoding rtmp audio stream into wave file and using the same stream to save speex encoded audio to flv file. I found that there are differences in both the audio. Time ...
1
vote
1answer
704 views

WAV to Speex conversion taking a lot of time

I am using the JSpeex API to convert a .wav file into .spx file. Everything goes perfect when tested on desktop; it took only 2 seconds. Android developer used the same code but it took around 3 ...
1
vote
1answer
810 views

Speex encoding in Java

I have a .wav file and I am using JSpeex (latest version, i.e., 0.9.7) to encode it, but the encoding is not happening properly if anybody has worked on the file.
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
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
1answer
245 views

Can we play speex file from java?

Is it possible to play a speex file from java. I have encoded a wav file to speex file and i can even decode it back to wave file again and play the audio. But i dont want to decode and play the file ...
0
votes
1answer
598 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 ...