OpenAL : The Open Audio Library
0
votes
0answers
7 views
How to detect ringer switch state in iOS?
I configured my audio session for kAudioSessionCategory_AmbientSound for an app which plays music with AVAudioPlayer. But problem is app also plays effects with OpenAL. I want music to play always ...
0
votes
1answer
12 views
OpenAL and Audio Unit clashing
I have an audio unit with a callback from the mix input. This works correctly and records fine. The moment I open another view that uses ObjectAL (OpenAL), going back to the ViewController that ...
0
votes
0answers
27 views
OpenAL error with Java Executable Jar File
I am programming a game in eclipse using OpenAL for sound, and when I play it within the IDE it runs smoothly.
As soon as I export it as an executable jar file and try to run it from the system, the ...
-1
votes
0answers
8 views
Which OpeaAL implementation to use on windows? [closed]
The Creative Labs site on OpenAL is quite outdated, so which implementation do you recommend for Windows7 32/64 bit?
0
votes
0answers
19 views
Once alSourceStop() or alSourceRewind() is called, sound cannot be played again
I am having trouble replaying a sound once it is stopped or rewinded.
I load and play them fine with this:
[loadRequests addObject:[[CDBufferLoadRequest alloc] init:handle filePath:file]];
//Once it ...
3
votes
0answers
19 views
Is it possible in OpenAL to directly choose a recording device?
I have never worked with OpenAL before, and have been looking at some example code. However, before I start testing code in my program, I want to know if there's a way to select a specific recording ...
0
votes
0answers
27 views
In Common Lisp's CL-OpenAL I can play a wav file with the following function but how do I make it stop when I press a keyboard key?
This is the function:
(defun alut-waveform ()
(alut:with-init
(al:with-source (source)
(let ((buffer (alut:create-buffer-from-file "E:\\My Music\\test.wav" )))
(al:source source :buffer ...
2
votes
0answers
75 views
How do I use CL-OPENAL in a CL-OPENGL program and make CL-OPENAL function play a wav file I create
I have cl-openal installed correctly so that this function plays "hello world" through my speakers:
(in-package #:cl-openal-examples)
(export 'alut-hello-world)
(defun alut-hello-world ()
...
0
votes
0answers
66 views
OpenAL Capture Device Selection (Speaker Output)
I'm wanting to capture the speaker output and echo it for testing. The following code produces exactly that, but instead of the speaker output, it chooses my microphone input. I'm new to OpenAL so I'm ...
0
votes
0answers
29 views
How do I stream audio into OpenAL Sources?
I've just began working with OpenAL.
I've successfully loaded in WAV files into it, and played them successfully. It was easy enough.
Now, I need to be able to stream music into OpenAL rather than ...
-1
votes
1answer
23 views
Where can I download the Java binding for OpenAL? [closed]
I went to the JOAL website and there are no download links, just tutorials, documentation, etc. Does anyone know where I can download the actual library?
0
votes
0answers
65 views
Setup Android NDK with OpenAL, libFLAC, libdumb, libvorbis, FreeType and PhysFS?
I have the newest SDK and NDK already installed (as of April 17th 2013, android-ndk-r8e-linux-x86.tar.bz2 and adt-bundle-linux-x86-2013219.zip) and Ubuntu (a nightly build) in a virtual machine. On ...
2
votes
0answers
62 views
OpenAL and Audio Playback - C++
I am trying to create a webcam chat program in c++, and while I have been able to get the images to be captured sent and played, I am having trouble with doing the same with the audio. I found this ...
0
votes
0answers
75 views
Play FFMPEG Sound Sample with OpenAL
i am using FFMPEG to load Audio Video from File...with the video its working but i don't know how to play audio samples coming ... here is my routine that is getting audio samples...
m_AdotimeBase = ...
0
votes
0answers
44 views
OpenAL/SFML get pitch value
I've been googling for a while to see if there is any way to retrieve the frequency/pitch of some sound buffer. I know there is alSourcef in OpenAL that changes the pitch of some sound. Basically, I ...
1
vote
0answers
118 views
2
votes
1answer
24 views
Cannot delete OpenAL bufer
I'm using XCode 4.5 for iPhone and OpenAL. The problem is that I cannot delete sound buffers, after i play sound: alSourcePlay(). If i dont play source - buffers are deleted and nemory is released ...
1
vote
1answer
76 views
I must use OpenAl for ogg files
I can use openAl for .wav files in Android developing.I can set Position for .wav files.But unfortunately I think openAl does not support .ogg or .mp3 files.Only supported .wav files. What can I do ?
0
votes
3answers
60 views
How to approach audio project
I want to create an iOS app that records or takes audio from a file, gives the use the choice to apply a filter and plays said audio back with the filter applied.
I'm however completely unsure about ...
1
vote
0answers
35 views
Is it possible to 'duck' an AudioSession whilst using OpenAL?
Does anybody know if this is possible?
I have my audio session and OpenAL set-up like so:
// Allow their music to play in the background
AudioSessionInitialize(NULL, NULL, ...
2
votes
2answers
151 views
CoreAudio/OpenAL: How to get the outgoing audio signal
I'm currently trying to get the outgoing audio signal of my iOS app to be able to send it to Audiobus. I need the AudioBufferLists which are outgoing to be able to route them. I'm using OpenAL for ...
2
votes
2answers
273 views
How to compile OpenAL program with g++ (Ubuntu)?
I am trying to find a way of getting OpenAL to work on my computer:
Ubuntu 12.10 (running on 2010 intel i7 Macbook Pro)
I installed the OpenAL library from the terminal:
$ sudo apt-get install ...
1
vote
0answers
47 views
Some basic questions about OpenAL buffers
I just started working with OpenAL and everything seems fine so far, i've tried some tutorials, managed to load and play some sounds, but before i start implementing something more complex, i'd like ...
1
vote
1answer
45 views
Can java use openAL renderer?
Is there a way to use the openal renderer with java? I have heard that the OpenAL.dll (dynamic linked library) is from c++. So how would you go about doing that? Thanks.
0
votes
1answer
54 views
CocosDenshion: why isPlaying always false (I can hear the music)?
I have this:
-(ALuint)ID
{ return self.soundSource->_sourceId; }
-(void)play
{
[self.engine playSound:self.soundSource.soundId
sourceGroupId:0
...
0
votes
0answers
28 views
OpenAL playback of a stereo signal
I'm trying to play a stereo signal, which data is available only on the right channel.
Fill the buffer data: they alternate with zeros and the data from the right channel.
Expect that in the left ...
0
votes
1answer
162 views
Play stream in OpenAL library
I need to play stream in OpenAL. But i dont understand what i need to do with buffers and source. My pseudocode:
FirstTime = true;
while (true)
{
if (!FirstTime)
...
0
votes
0answers
66 views
Clicks in queue buffers OpenAL
My program isn't working right. I need to play sound which i take from network with boost::asio. That sound is right, because if I give that to file, i have sound file. But in speakers I listen ...
0
votes
0answers
55 views
Using OpenAL to output sound to a specific channel to a 7.1
all.
I have a project where I need to interface with a A/V receiver via an X-Fi sound blaster card. The A/V receiver is connected to a 7.1 speaker system. I would like to know the start to finish way ...
0
votes
0answers
81 views
Getting data from the rotation matrix of the MPU6050 Triple Axis Gyro Sensor
I'm using an OpenAL library with Processing (it's SoundSystem/Paulscode) but basically what I'm trying to achieve is to use data from the MPU6050 to determine the listener's orientation.
So for ...
0
votes
1answer
35 views
playing audio in openTK
What's the easiest way to play audio (WAV, MP3, OGG, doesn't matter) in an OpenTK application? I need to be able to play it, stop it, and get the current position in seconds at any time. I've used ...
1
vote
3answers
172 views
Play sound with OpenAL(Stream)
I need to play sound which I take from network. Every 10ms, a take 882 bytes of sound(mono, 16 bits, 44100 Hz). And doing this:
while (!ExitKey)
{
boost::system::error_code error;
...
0
votes
0answers
126 views
Play stream sound OpenAL
I need to play stream sound with OpenAL. This is my code, but it's not working. What i need to do?
device = alcOpenDevice(NULL);
//
ofstream file;
file.open("TESTSPEAKER", ...
0
votes
0answers
68 views
Issue : Sound mixing using OpenAL
These days I'm working with sound generation application using OpenAL. In this application I used set of sound sources and each sound node assign different sound file. All are fine without one thing. ...
0
votes
0answers
16 views
Alut fails to link
I'm trying to make freealut library work for TDM GCC in Code::Blocks on Windows for a day now. I have using the same methods to link it as with openal32 and the latter works fine but alut isn't ...
0
votes
1answer
82 views
Reverb with stereo source in iOS
iOS 5.0 and higher supports reverb in OpenAL and I use it very much. However many users ask for stereo sound in my app. After some tests I found that reverb does not work with stereo sounds. Comments ...
0
votes
1answer
48 views
iOS - Open AL - Multiple sources or Multiple Buffers
I'm new to Open AL.
In my iOS application, I've to play multiple audio files (parallel) which are basically animal/bird sounds of duration 2 to 3 seconds only.
In my view, I've different animal ...
0
votes
1answer
72 views
OpenAL output sound 5.1
In my project I'm using OpenAl, the 3d effect works fine, but only with the left/right speakers..
my pc have a 5.1 system, so 2 rear speakers, 2 front, 1 head and 1 subwoofer.
in windows is right ...
0
votes
1answer
105 views
Play sound with OpenAL
I don't understand how I can play sound with OpenAL library. I write program for VoIP. I'm getting every 10ms sound buffer.
size_t len = socket.read_some(boost::asio::buffer(buf),error);
buf is
...
0
votes
1answer
149 views
Playing multiple audio files using OpenAL
I have more than 20 small (around 3 seconds duration) audio files related to animals & birds. I want to play those audio files continuously at regular interval. For example, audio 1 has to loop ...
0
votes
0answers
88 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 ...
2
votes
1answer
433 views
Streaming Audio with OpenAL and FFMPEG
Alright, basically I'm working on a simple video player and I'll probably be asking another question about lagging video\syncing to audio later, but for now I'm having a problem with audio. What I've ...
1
vote
6answers
240 views
Which framework should I use to play an audio file (WAV, MP3, AIFF) in iOS with low latency?
iOS has various audio frameworks from the higher-level that lets you simply play a specified file, to the lower level that lets you get at the raw PCM data, and everything in between. For our app, we ...
0
votes
1answer
16 views
OALSimple Audio Channeling
I am using OALSimpleAudio and I have a group of sounds that play in my app and I am trying to group this set of sounds into a "channel" then affect the groups pitch through that specific channel.
...
2
votes
1answer
85 views
Weird syntax error in Xcode based on file type
I have a C header with this function:
OSStatus MyGetDataFromExtAudioRef(ExtAudioFileRef ext_file_ref, const AudioStreamBasicDescription* restrict output_format, ALsizei max_buffer_size, void** ...
0
votes
0answers
120 views
OpenAL play mp3 stream, it gets stuck every some seconds
I play mp3 stream with OpenAL, now I download the data into the buffer, during download data, at the certain time, I get limited data from the buffer and convert it to PCM data ,after this, I take it ...
1
vote
0answers
98 views
How to save audiofiles manipulated by OpenAL?
In my current project, I need to be able to manipulate Wave - Files. They consist of a recorded voice, which is to be anonymized. My first idea was to change the pitch and the speed, but it seems that ...
0
votes
1answer
238 views
How I can recording sound with OpenAL
I need to record sound with MMSYSTEM, for this I'm using OpenAL library. After recording I will send the sound buffer to the network(VoIP). To begin with, I wrote some code to record sound and write ...
0
votes
1answer
102 views
Openal - alGetError() always returns AL_INVALID_OPERATION
i'm running ubuntu 12.04 off a pendrive. I've installed openAL and alut
my main is:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <iostream>
#include ...
0
votes
0answers
117 views
Handling interruptions while playing audio using OpenAL, RemoteIO and AVPlayer simultaneously
I am developing an app that requires playing audio using OpenAL, RemoteIO and AVPlayer simultaneously. I am also handling interruptions the way it is mentioned according to Apple's guidelines here: ...








