OpenSL ES™ is a royalty-free, cross-platform, hardware-accelerated audio API tuned for embedded systems.

learn more… | top users | synonyms

0
votes
1answer
38 views

Accurate POSIX thread timing using NDK

I'm writing a simple NDK OpenSL ES audio app that records the users touches on a virtual piano keyboard and then plays them back forever over a set loop. After much experimenting and reading, I've ...
0
votes
0answers
13 views

Reduce background voice while recording by OpenSL Android

In the Android NDK, the Native audio sample is having a feature of recording the sound and playing it back with the help of OpenSL. But while playing, it also contains a lot of background voice which ...
0
votes
0answers
14 views

Streaming multiple OGG simultaneously in Adnroid

I need to be able to play two or more (let's say, up to 5) short ogg files simultaneously. And by simultaneously I mean in perfect synchrony. I am able to load them to SoundPool and play, but this ...
0
votes
0answers
8 views

effects on recorded sound with OpenSL

I am new in Android NDK and I started with the sample NativeAudio provided with NDK. With this, I am able to record sound and play that sound. What I want to do is applying some effects(increasing or ...
0
votes
0answers
22 views

NDK OpenSL ES, seamless looping sounds using URI (non buffer) player

In an effort to get a seamless loop using OpenSL ES's URI player, I tried running the code, taken from this question (which queries the length of the audio): SLmillisecond msec; result = ...
3
votes
0answers
24 views

Android 2.3.4, OpenSL ES and huge log-spamming for unknown reason

One app that I created causes extensive log-spamming on a device of a customer: I use OpenSL in a NDK environment for realtime audio generation. Everytime I use the Enqueue() function of the ...
0
votes
0answers
39 views

Android - OpenSL ES high microphone gain

I am having a similar problem described in this link: RecorderObject in OpenSL does not implement the interface to set the volume or configure on Android The problem being that I can't set the ...
0
votes
0answers
29 views

OpenSL ES recording from bluetooth or wired heaset

I'm trying to create a VOIP client for Android that uses OpenSL ES to record and play back audio. It works fine with the phone's built-in mic and speaker, but when I tried using a wired headset (with ...
0
votes
0answers
80 views

OpenSL ES - stream audio file and apply STFT

I need, in my Android application, to read a file, apply STFT in real time to it, process each frame, send it back and apply inverse STFT, and send the result to the speaker. Now, I would like to ...
1
vote
1answer
146 views

Hook simple audio filter to music playing under android

Im trying to build an app that uses a digital filter to process audio playing from other (stock music player and spotify etc) apps. So far I've been able to create the filter for audio input from ...
1
vote
1answer
70 views

Supported AudioEffects

I'm trying to determine which OpenSL ES effects are supported by the running device. the AudioEffect class of the Andorid SDK provide a method to do so. public static Descriptor[] queryEffects () ...
8
votes
3answers
3k views

Low-latency audio playback on Android

I'm currently attempting to minimize audio latency for a simple application: I have a video on a PC, and I'm transmitting the video's audio through RTP to a mobile client. With a very similar ...
0
votes
0answers
91 views

OpenSLES with 3D audio

The OpenSLES specifications 1.0.1 demonstrates the implementation for 3D audio. My interest is in specifying locations for a 3D audio source. I tried implementing this in android 14 but it gave ...
1
vote
0answers
59 views

Android Encountered unknown AudioTrack event 5 for CAudioPlayer

I'm using OpenSL to play sounds on Android. I keep getting this Error : Encountered unknown AudioTrack event 5 for CAudioPlayer. According to android_AudioPlayer.cpp, this shouldn't happen, since the ...
1
vote
1answer
195 views

Android OpenSL ES AAC decoder

Is there any example source code how to decode AAC frames into PCM using Android OpenSL ES AAC decoder code? I need to decode AAC frame (with or without ADTS header) stored in memory buffer into PCM. ...
5
votes
2answers
431 views

Streaming MP3 audio via socket communication using OpenSL ES on Android

I'm trying to stream an MP3 from an Android phone to another Android phone using WiFi via an access point. The problem is that OpenSL ES appears to only support PCM audio buffers as the source (unless ...
0
votes
0answers
104 views

How do I access OpenAL or OpenSL from Mono for Android?

I am currently writing my application for Android with Mono for Android, and finally got to where I get to output sound. Initially I had thought OpenAL from OpenTK was available, and wrote my audio ...
1
vote
0answers
87 views

Where is the audio players buffer in opensl when streaming audio from an uri?

I'm trying to stream an audio file from an uri using opensl. I want to play it immediately, but also have access to the streamed data after the player has finished playing the file. I know the data ...
1
vote
1answer
156 views

can an audio player in opensl output to two data sinks?

Is there any way for and audio player to output to two data sinks? more specifically, i'm trying to stream an mp3 from the net using an audio player with the data source set as an uri, to a buffer ...
1
vote
1answer
772 views

play audio in real-time using opensl es and the android ndk

What I would like to do is record a voice, process it like adding some effect to the recorded audio, and then replay it as fast as possible using opensl. I'm having trouble finding information on the ...
0
votes
1answer
249 views

Android NDK, OpenSL ES - Knowning when a buffer got filled

If I enqueue a buffer for recording into the buffer queue - is there a way of knowing when that buffer was actually filled, so I can use it ? Likewise, is there a way of knowing when a buffer was ...
3
votes
0answers
234 views

Android AlertDialog freezes application some seconds after shown - cause seems OpenSL related

Ok I tried "everything" I could have found around and read everything I searched for, the question is quite simple yet I can't understand what the problem is. I am working with the NDK ( Native code ...
4
votes
2answers
309 views

OpenSL ES alternative on Android

I am building an app for android where it is nessessary, to play pcm data in a queue-player as float. As far as I can see that it is not possible. The description says: SL_DATAFORMAT_PCM does not ...
0
votes
2answers
75 views

Capturing SSL output using backticks Perl

I might be looking at this to simply and I am not sure what I want to do is possible but this hopefully will save a lot of time from having to read in and out to different files. I am trying to do is ...
1
vote
0answers
80 views

How to attach aux effects to global output mix?

How can I attach reverberation and envelopment reverberation effect to global output mix via OpenSL?
0
votes
1answer
237 views

OpenSL ES RegisterCallback causes crash

I have to use OpenSL for my project (tried Soundpool but it's not good at all). However, after playing the sound multiple times (around 35 continuous times), the app is shutdown (I guess maybe because ...
0
votes
0answers
347 views

Android - OpenSL ES - Callback when finish playing an audio file [closed]

I found an example of OpenSL here http://audioprograming.wordpress.com/2012/03/03/android-audio-streaming-with-opensl-es-and-the-ndk/ Following the code, there is a function that says // this ...
1
vote
1answer
159 views

How can I specify the input source for the AudioRecorder object?

I'm porting an audio capture loop from Java (using AudioRecord class) to a native library using OpenSL. The reason for this is that after profiling, the capture loop is consuming in our test phones ...
3
votes
1answer
390 views

OpenSL ES can not play audio on Android emulator

I decode amrnb to PCM, then put right pcm buffer to Enqueue buffer (I'm sure PCM data is right), but no sound is heard. And when feeding buffer, log outputs: /AudioTrack(14857): obtainBuffer timed ...
0
votes
0answers
75 views

how to get permission for using hardware with c programs

I made an music player in android, using JNI to call open SLES lib, and it worked, then I tried to run the native code separately and executed it in hardware but it does not executed, I know while ...
2
votes
1answer
909 views

What should be reasons to use OpenSL ES instead of AudioTrack in Android?

Currently I'm using AudioTrack passing to it audio data from native layer to play. It seems I can use OpenSL ES in the native layer instead of AudioTrack in Java. What are the supposed advantages ...
2
votes
1answer
122 views

Underrun notification in Android ndk

I am trying to create a streaming based audio application on Android using NDK (which inturn used open SLES). I have the basic streaming setup working. I need to know how underruns(or overruns) are ...
1
vote
1answer
676 views

Android NDK test app using OpenSL ES

I have developped a NDK applicaiton (which I am running from console) and running on a TI AM37x hardware using Android 4.0.3. This application is using OpenSL API's and I am trying to play the song ...
6
votes
1answer
567 views

RecorderObject in OpenSL does not implement the interface to set the volume or configure on Android

I tried to get the SLDeviceVolumeItf interface of the RecorderObject on Android but I got the error: SL_RESULT_FEATURE_UNSUPPORTED. I read that the Android implementation of OpenSL ES does not ...
5
votes
0answers
356 views

Is it possible to get a byte buffer directly from an audio asset in OpenSL ES (for Android)?

I would like to get a byte buffer from an audio asset using the OpenSL ES FileDescriptor object, so I can enqueue it repeatedly to a SimpleBufferQueue, instead of using SL interfaces to play/stop/seek ...
0
votes
1answer
500 views

Play several sound effects simultaneously using OpenSL ES Android

I'm using OpenSL ES for playing music and sounds in my project. I've used native-audio sample as start and it's fine for reproduce background music and a single sound but when I try to reproduce two ...
0
votes
2answers
801 views

OpenSL ES crashes randomly on Samsung Galaxy SII (GT-I9100)

I'm using OpenSL ES on android. It seems to work pretty well. However, after a while my app crashes on Samsung Galaxy SII (GT-I9100). Other phones (ZTE Blade, Galaxy Nexus, HTC evo 3D) don't seem to ...
1
vote
1answer
554 views

“No more track names available” when using OpenSL ES

I'm using OpenSL ES and my android app has need for multiple channels, so I create multiple player-objects (plus one player-object for each of mp3-files I need to play). This works fine for one ...
1
vote
1answer
555 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
459 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 ...
1
vote
0answers
248 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 ...
0
votes
1answer
311 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 ...
2
votes
1answer
1k 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 ...
2
votes
1answer
2k 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
649 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 ...
17
votes
4answers
8k 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 ...
2
votes
2answers
638 views

Does a finished buffer from an OpenSL ES audio player need to be freed?

Just for confirmation. When an audio player, created via OpenSL ES for Android, finishes playing a buffer, is that buffer automatically freed by the Garbage collector? Or do I need to free the buffer ...
2
votes
1answer
1k 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 ...