OpenAL : The Open Audio Library

learn more… | top users | synonyms

22
votes
4answers
25k views

Converting audio to CAF format for playback on iPhone using OpenAL

I am using the SoundEngine sample code from Apple in the CrashLanding sample to play back multiple audio files. Using the sample caf files included with CrashLanding everything works fine but when I ...
12
votes
5answers
5k views

How to program a real-time accurate audio sequencer on the iphone?

I want to program a simple audio sequencer on the iphone but I can't get accurate timing. The last days I tried all possible audio techniques on the iphone, starting from AudioServicesPlaySystemSound ...
9
votes
2answers
1k views

OpenAL - determine maximum sources

Is there an API that allows you to define the maximum number of OpenAL "sources" allowed by the underlying sound hardware? Searching the internet, I found 2 recommendations : keep generating OpenAL ...
8
votes
2answers
3k views

iOS: Audio Units vs OpenAL vs Core Audio

Could someone explain to me how OpenAL fits in with the schema of sound on the iPhone? There seem to be APIs at different levels for handling sound. The higher level ones are easy enough to ...
8
votes
6answers
4k views

Open Source sound engine

When I started using SoundEngine (from CrashLanding and TouchFighter), I had read about a few people recommending not to use it, for it was, according to them, not stable enough. Still it was the only ...
7
votes
2answers
1k views

iphone low pass filter

I'm trying to implement a low-pass filter for an iphone app where I record a sound and then it gets played back slightly muffled; like the voice is coming from another room. I've looked into the ...
7
votes
2answers
456 views

Weird popping noise when playing different sounds with different volumes set through OpenAL on the iPhone

I'm using OpenAL sound framework on the iPhone, and I'm setting different volumes on individual sounds. I'm running into a problem where I'm hearing an initial popping/clicking noise when switching ...
7
votes
4answers
5k views

Android OpenAL?

Has anyone built OpenAL for the Android, or found the shared library for it on the system? This seems like an obvious need for a game of any kind, yet there's no resources out there for it. It seems ...
7
votes
7answers
2k views

Game Development Sound Frameworks

I'm working with a team that's building an engine for a variety of 2D and eventually 3D mini-games. The problem we're facing is a solid, cross-platform, sound API. Obviously, DirectX is out of the ...
6
votes
5answers
844 views

What kind of routes could I get back from kAudioSessionProperty_AudioRoute property?

Apple guy tried to be funny and wrote in the docs: ("Headphone," "Speaker," etc.) What kind of return values are possible in reality?
5
votes
1answer
192 views

OpenAL source continues playing after stopped and deleted

Our ipad application plays a bunch of OpenAL sources in parallel, one for each ongoing touch. The sources are created and started on touchesMoved, and stopped on touchesEnded or touchesCancelled. ...
5
votes
3answers
1k views

OpenAL Real Time Audio Processing from Microphone

I would like to write a cross-platform application that can process and play back microphone data in real time. Imagine as a proof of concept a chat room where people can talk to each other and apply ...
4
votes
1answer
199 views

OpenAL: How to use linear attenuation?

I want to control the way how the sound source volume fades out by distance, how can i do this? Edit: I would also like to know how to scale the sound coordinate system accordingly: i dont want to ...
4
votes
1answer
2k views

MP3 streaming on iOS

I want to use OpenAL to play music in an iOS game. The music files are stored in mp3 format and I want to stream them using a buffer queue. I load audio data into the buffers using ...
4
votes
2answers
3k views

Recording Audio with OpenAL

I've been comparing various audio libraries available in C++. I was wondering, I'm kind of stuck starting with OpenAL. Can someone point out an example program how to record from a mic using OpenAL in ...
4
votes
1answer
312 views

OpenAL device, buffer and context relationship

I'm trying to create an object oriented model to wrap OpenAL and have a little problem understanding the devices, buffers and contexts. From what I can see in the Programmer's Guide, there are ...
4
votes
1answer
560 views

OpenAL tone generation on iPhone

So I have been looking around for some time now on a way to produce a variable tone on the iPhone using OpenAL, the issue being the Apple has deprecated the ALUT part of OpenAL that has the ...
4
votes
3answers
2k views

How do you completely remove and release memory of an OpenAL sound file?

I have a small level based iPhone app. I need to load and release sound files for each level. Everything works fine with my openAL SoundManager except releasing sounds. At first, when I remove a ...
4
votes
2answers
1k views

Polyphonic sound playback

I need audio playback with these features: good performance (for game), pitch control, and ability to layer the same sample multiple times at the same time (polyphony). What would be a quick way to ...
3
votes
1answer
185 views

How to play a sound instantly after another sound ended?

I cant ensure this by checking if the sound has stopped in my program because the sounds are handled in different thread, isnt that right? So the problem comes when i want to be 100% sure that once a ...
3
votes
1answer
509 views

OpenAL: how to play multiple sounds at the same time and mix them?

I have used SDL_Mixer before, and it does this job correctly: when i play one sound with one single function call 10 times in sequence, all the sounds will get mixed together. But in OpenAL when i ...
3
votes
3answers
443 views

Real-Time Audio Loop Switching for iPhone

I'm trying to find the best way to play a seamless loop of audio, that the user can switch out for another at the shortest possible notice, with a decent number (30-150) of very short loops being ...
3
votes
1answer
782 views

Play Multiple iPod Library Songs On iPhone At The Same Time With Pitch Bending & Other Effects

I have been going at this for the past two weeks and it is driving me crazy. I asked this question a couple of days ago (Extract iPod Library raw PCM samples and play with sound effects) and whilst ...
3
votes
1answer
402 views

Does OpenAL support 5.1 output on Mac OS X?

I'm in the process of porting an application from Windows to Mac OS X. It is using OpenAL for handling the sound, but I'm getting a strange behavior in the initialization of the sound engine on Mac OS ...
3
votes
1answer
894 views

openal pitch shift

Can anyone tell me why the volume becomes lower when I make the pitch higher in openal? The higher the pitch, the lower the volume..... alSourcef(source, AL_PITCH, 1.2f); alSourcef(source, AL_GAIN, ...
3
votes
2answers
701 views

Hardware accelerated audio decoding with OpenAL

Is it possible to use the iPhone's hardware accelerated decoding of mp3s and AAC when using the OpenAL library? I suppose there are two possible approaches if this is possible. iPhone specific OpenAL ...
3
votes
2answers
530 views

OpenAL and Vista: Device is always 'Generic Software'

I'm writing the audio part of a game, and I'm using OpenAL. I want to use some extensions, but the tests always fail: TRACE: AudioManager - Sound device: 'Generic Software' TRACE: AudioManager - ...
3
votes
3answers
1k views

Sounds effects in iPhone game

I'm making an opengl game for iPhone. And I'm about to start adding sound effects to the app. I wonder what's the best framework for this purpose. Is AV foundation my best option? Any others I'm ...
3
votes
3answers
844 views

Making a real-time audio application with software synthesizers

I'm looking into making some software that makes the keyboard function like a piano (e.g., the user presses the 'W' key and the speakers play a D note). I'll probably be using OpenAL. I understand the ...
3
votes
1answer
1k views

iPhone app using openAL works in simulator, but not on device

I added the openAL framework to my app and I am using the sound engine that is in the demo CrashLanding. It works just fine on the simulator, but when I build it for my device, I get errors. It ...
2
votes
1answer
49 views
+50

How to adjust the Head-related transfer function (HRTF) in OpenAL or Core Audio?

OpenAL makes use of HRTF algorithms to fake surround sound with stereo headphones. However, there is an important dependency between HRTF and the shape of the users head and ears. Simplified, this ...
2
votes
1answer
70 views

wavetable synth for iOS

I need to implement a wavetable player in my app. For different notes (polyphony) a note on and note off feature is needed (including looping for relevant sounds). The samples are available or can be ...
2
votes
1answer
56 views

Clarification on OpenAL Listener Orientation

What is the purpose of the first vector in the listener orientation? The tutorials say that the two vectors are 'at' and 'up', but shouldn't setting the position already determine where 'at' is? I'm ...
2
votes
2answers
164 views

OpenAL buffer update in real-time

I'm working in iOS and have a simple OpenAL project running. The difference to most openAL projects i've seen is that im not loading in a sound file. Instead I load an array of raw data into the ...
2
votes
4answers
477 views

AudioToolbox/OpenAL ExtAudioFile to play compressed audio

I'm currently using OpenAL to play game music. It works fine, except that it doesn't work with anything except for raw WAV files. This means that I end up with a ~9mb soundtrack. I'm new to OpenAL, ...
2
votes
2answers
335 views

Press a button it makes a sound. Hit button fast and sound playback pops and clicks

I have 6 buttons that each play an audio sample from a .caf file. If I press a button the sound plays fine, if I wait for it to end and press it again it plays fine but if I press the button fast ...
2
votes
2answers
160 views

Virtual Instrument App Recording Functionality With RemoteIO

I'm developing a virtual instrument app for iOS and am trying to implement a recording function so that the app can record and playback the music the user makes with the instrument. I'm currently ...
2
votes
2answers
251 views

How to export sound from timeline of sounds on iOS with OpenAL

I'm not sure if it's possible to achieve what I want, but basically I have a NSDictionary which represents a recording. It's a timeline of what sound id was played at what point in time. I have it ...
2
votes
1answer
453 views

OpenAL and Popping Artifacts

I am using OpenAL for a music app for iPad. It has worked fine before, but now, after updating my device to iOS 4.3, there are popping/crackling noises on playback. They become apparent when multiple ...
2
votes
1answer
188 views

Play mp3 file smoothly upon dragging a scroll using AVToolbox or openAL

I have been facing this since so many days but I have not reach to any conclusion. My problem is : I want to play an mp3 file but not simply by clicking on a play button. It is this way I want to ...
2
votes
1answer
163 views

Random noise when playing Audio with OpenAL on Mac

I am porting a game from iPad to Mac. Every time I start the game, certain set of sounds when they are being played, have an irritating noise at the end of playback, much like a short duration of ...
2
votes
1answer
200 views

OpenAL synchronization

I'm new to audio programming so excuse me if I'm not using the right terms... I have two streaming buffers that I want to have playing simultaneously completely synchronized. I want to control ratio ...
2
votes
1answer
366 views

iPhone: 'endInterruption' is not being called for an <AVAudioSessionDelegate> Class

I have a sound manager class that implements the AVAudioSessionDelegate protocol, i.e. the beginInterruption and endInterruption methods. However, when I ring the phone and go back to the app, ...
2
votes
1answer
1k views

How to record live audio into file from microphone with openAL? (C++ code inside)

I have such code for doing echo of microphone with openAL on windows. I want to create some CapturedAudioData file to write all audio data captured during the loop. So its going to be like ...
2
votes
1answer
319 views

maximum number of OpenAL sound buffers on iPhone

I'm writing a sound library, for the iPhone, that uses OpenAL. The app generates a unique buffer id for each sound, during startup. The problem that I'm having is that OpenAL is unable to generate ...
2
votes
1answer
567 views

Ball rolling sound effect

I am working on a Labyrinth style app for iPhone using Chipmunk and openAL. I got everything working except the ball rolling sound. What I have tried is playing a small sound for each update in the ...
2
votes
1answer
1k views

Loop streaming .ogg audio - OpenAL

I have problem looping a streamed ogg vorbis file. This is the code : fslStream_OGG::fslStream_OGG() { className = "fslSound"; iMemSize = 0; iLength = 0; bSourceRelative = false; bIsLooping = ...
2
votes
1answer
544 views

OpenAL doesn't work when using AVAudioRecorder and AVAudioPlayer

i have been troubled about audio problem for several days. i don't think OpenAL get along with AVAudio functions. i have my own OpenAL class. ( wrapped the MyOpenAL class ) my app start to record ...
2
votes
1answer
127 views

Can I play any Buffer only once at a given time?

From the OpenAL documentation: The basic OpenAL objects are a Listener, a Source, and a Buffer. There can be a large number of Buffers, which contain audio data. Each buffer can be ...
2
votes
1answer
953 views

OpenAl pitch values for particular musical notes in an octave

I have an OpenAl sound engine on my iPhone app. When I play a sound that I have loaded, I can control it's pitch. In OpenAl a pitch set to 1.0 has no effect. If you double it to 2.0, it plays the ...

1 2 3 4 5