jspeex

Packing Speex with Ogg on iOS

老子叫甜甜 提交于 2019-12-04 15:46:06
问题 I'm using libogg and libogg, I've succeeded to add those libraries to my iPhone xCode project and encode my voice with Speex. The problem is that I cannot figure out how to pack those audio packet with ogg. Does someone know how a packet of that kind should look like or have a reference code I can use. I know in Java it's pretty simple (you have a dedicated function for that) but not on iOS. Please help. 回答1: UPD 10.09.2013: Please, see the demo project, which basically takes pcm audiodata

Packing Speex with Ogg on iOS

风格不统一 提交于 2019-12-03 10:01:10
I'm using libogg and libogg, I've succeeded to add those libraries to my iPhone xCode project and encode my voice with Speex. The problem is that I cannot figure out how to pack those audio packet with ogg. Does someone know how a packet of that kind should look like or have a reference code I can use. I know in Java it's pretty simple (you have a dedicated function for that) but not on iOS. Please help. UPD 10.09.2013: Please, see the demo project , which basically takes pcm audiodata from wave container, encodes it with speex codec and pack everything into ogg container. Maybe later I'll

speex support in android

☆樱花仙子☆ 提交于 2019-12-03 04:30:44
问题 Can anybody help me on how to use speex or jspeex in android? I have searched a lot but could not able to find anywhere.There are many issues regarding this in code.google.com/android but none have answered it. Here also this question did not got a good response as my another question regarding this is Decoding speex encoded byte array in Android. So If you know something about this then Please provide me information regarding this. I need to encode and decode bytearray of audio file using

speex support in android

半城伤御伤魂 提交于 2019-12-02 17:42:12
Can anybody help me on how to use speex or jspeex in android? I have searched a lot but could not able to find anywhere.There are many issues regarding this in code.google.com/android but none have answered it. Here also this question did not got a good response as my another question regarding this is Decoding speex encoded byte array in Android . So If you know something about this then Please provide me information regarding this. I need to encode and decode bytearray of audio file using this codec. I have tried Android-ndk and got encoding done, but getting a problem in decoding the byte

Combining multiple sound streams in Java

假装没事ソ 提交于 2019-12-01 13:53:48
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 streams using JSpeex. However to save even more bandwidth I would like to (if possible) combine these multiple streams into a single stream before encoding with JSpeex. My DSP knowledge is severely lacking & I am wondering how to go about combining the streams in Java? I combine multiple audio streams with this MixingAudioInputStream . The mentioned AudioConcat example uses the same class and it

Combining multiple sound streams in Java

喜夏-厌秋 提交于 2019-12-01 12:53:13
问题 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 streams using JSpeex. However to save even more bandwidth I would like to (if possible) combine these multiple streams into a single stream before encoding with JSpeex. My DSP knowledge is severely lacking & I am wondering how to go about combining the streams in Java? 回答1: I combine multiple