Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
969 views

Tutorials for OpenSL ES for Android

I've been trying to look into using the OpenSL ES library that is available for doing native audio with android 2.3, but it appears that the header files and the 600 page pdf of the spec are the only ...
1
vote
0answers
68 views

About data size filled in the buffer

I need low-latency audio in my project, and Android 2.3 supports OpenSL ES. I have read documents and sample code and decide to use Android simple buffer queue to do the play and record. Now, I try ...
1
vote
1answer
269 views

Sound effect mixing with OpenSL on Android

I'm currently implementing a sound effect mixing on Android via OpenSL. I have an initial implementation going, but I've encountered some issues. My implementation is as follows: 1) For each sound ...
1
vote
1answer
430 views

Supported OpenSL ES Features in Android

Android is supposed to support 3D audio via the OpenSL es API which is accesible via the NDK. That more or less works, I managed it to play sound via a created player and an output mix. But when I try ...
0
votes
1answer
113 views

OpenSL Tutorial ES for PC (Not Android)

I'm looking to start learning the basics of OpenSL ES without getting into the whole Android business. Is there no tutorials describing the process of setting up OpenSL, as there are for OpenAL? I ...
0
votes
0answers
75 views

Recording with OpenSL ES in emulator

I am developing an app using OpenSLES for audio recording and playing. At this point, the app is similar to JNI sample native-audio app. One problem is that when program tries to record, it's getting ...
0
votes
1answer
64 views

Can not create volume interface for an Output Mix object

I am having a problem with the volume interface in OpenSL on Android. When I attempt to create an Output Mix object with the volume interface like this: const SLInterfaceID ...
0
votes
1answer
331 views

Audio Library for Windows, Mac & iOS? OpenAL/OpenSL

I write an Desktop/iOS Game with OpenGL and want to play audio files (mp3 or wav). I've worked already with CoreAudio and AudioQueues, but now I need something that works also with Windows (and maybe ...
0
votes
2answers
246 views

audio capturing/rendering in native code on android

I am looking into clearing up my confusion on how to capture and render audio using native code on the Android platform. What I've heard is that theres an API for audio called OpenSL. Is there any ...