The audiotoolbox tag has no wiki summary.
0
votes
1answer
27 views
Digital Audio Workstation Architecture on iOS
I am developing an architecture for digital audio workstation that works on iOS (mainly, but trying to support OS X too). I'm going slowly through miles of documentation by Apple and references of ...
0
votes
0answers
28 views
set audio input gain in iOS6
I'm developing a simple recording app for an iPhone4 running on iOS6.1.3.
I am aware of how to set the mic input gain: How to control hardware mic input gain/level on iPhone?
However, the ...
2
votes
1answer
58 views
How to increase volume of a sound and remove background noise in objective c
I have recorded a sound using AVFoundation Framework. It plays well but it contains a lot of surrounding noise.
I need to remove this noise and also amplify the sound to increase the volume.
Can ...
0
votes
0answers
40 views
AUGraph with sampler causing a memory leak
I'm not able to initialize and unitialize an audio graph with sampler without a memory leak. I tried to reduce the amount of code in my example, so the following example doesn't even start/stop the ...
2
votes
1answer
101 views
How to generate audio wave form programatically while recording Voice in iOS?
How to generate audio wave form programmatically while recording Voice in iOS?
m working on voice modulation audio frequency in iOS... everything is working fine ...just need some best simple way ...
0
votes
0answers
22 views
Playing short sound without stop music
facing a new problem on my new app,
i wanted to add short sound to this app without stopping the user's music,
so i decided to use AudioToolBox instead of AVAudioPlayer instances.
i use :
...
0
votes
0answers
35 views
Real-time Audio Queue in iOS
I'm beginner student of university. I'm making an application related to sound. I'm using a AudioQueue(AudioQInputQueue & AudioOutputQueue)
Here are typical structs of many apps
[Recording]
MIC ...
0
votes
0answers
18 views
How to quickly add a song audio effects In the background(without playing it)?
Now, I have a song, I hope I do not play it to quickly add effects to it. For example, I now have such a program
{limiter = "1.2";
Pitch = 20 ";
reverb = {
decaytimeat0hz = 1.3;
...
0
votes
0answers
28 views
How to fix MP3AudioStream error?
I'm getting the following error randomly (and sometimes consistently on launch). It can happen when there are background threads and when there aren't and it seems to be a problem with the library so ...
0
votes
0answers
15 views
Normilize audio buffer read with AudioToolbox?
I have an implementation of reading, trimming audio files using AudioToolbox (only Linear PCM for now). Reading the file with AudioFileReadPackets, reading properties with AudioFileGetProperty.
As I ...
0
votes
0answers
70 views
How to play raw pcm 16 bit data using audio toolbox in iphone
I am trying to play raw pcm data in iPhone using Audio ToolBox framework. I have tried to manage the callback system but the final output is not correct.
So, I am looking for some sample or example ...
0
votes
1answer
53 views
Xcode - AudioToolbox/AudioToolbox.h file not found
I'm getting started with Xcode and a i'm studying the way to play sound. I have implemented a small project that play a sound using AudioToolbox framework. Everything was fine: i could Build and run ...
0
votes
0answers
60 views
iOS Audio Converting : How to set the correct arguments for Audio Toolbox Convert File
I try to develop an iOS app which encode a standard *.caf audio file to some other audio formats natively supported by the iOS SDK.
Since I just got started with iOS development and have no relevant ...
0
votes
3answers
120 views
Use of undeclared identifier
I'm trying to use this project which is a synthesizer for Objective-C for an iPhone application I'm building. However, I'm having trouble with the MHAudioBufferPlayer class.
In the ...
0
votes
0answers
27 views
iOS SystemSound irregular volume behaviour
I'm using this code to play small sounds on iOS
AudioServicesCreateSystemSoundID ((CFURLRef)[NSURL fileURLWithPath:[[NSBundle mainBundle]pathForResource:@"bigaif" ofType:@"caf"]], ...
0
votes
0answers
45 views
Low Volume When Using AudioToolbox in iOS
I have used AV Foundation before but my latest project require AudioToolbox, I changed my code and now the audio playback is extremely low, specially over the headphone jack, regardless of the device ...
0
votes
0answers
150 views
Realtime audio compression with AudioConverterFillComplexBuffer in iOS
I am trying to do realtime encoding of buffer that is coming from recording callback, but I seem not to really understand how to do this, and how it works. In fact I spent hours reading Apple's ...
3
votes
1answer
131 views
Using AudioToolbox for short sound effects volume control not working on iPad/iPod touch models
Everything works fine on the iPhone Models, using the volume buttons on the phone raise and lower the games audio. On iPad and iPod touch models volume buttons don't effect the games sound effects.
...
0
votes
0answers
63 views
CoreMIDI: Adding an ID to MIDINoteMessage
I'm currently using a MusicPlayer to play back a MusicSequence and send the MidiPackets to a MidiReadProc.
I'm adding MIDINoteMessages to my MusicSequence.
The MidiReadProc shows 3 bytes per ...
2
votes
3answers
159 views
ExtAudioFileOpenURL leak
I am opening an audio file to read it and I get an abandoned malloc block from this caller each time.
In a loop I set data like this (which is marked as the memory usage in instruments as 99.7%) data ...
3
votes
1answer
71 views
How can I stop AudioToolbox sound?
I have two different button press sound actions. When I press one button it should play one sound, when I press the other, it should stop the first sound and play the other, How can I do this?
...
0
votes
0answers
61 views
audioqueueservices or audiotoolbox framework to play audio with synchronization capabilities access packets of incoming audio
Is there any good example or tutorial for synchronizing mp3 file with its visuals using audioqueueservices or audiotoolbox framework.
As audioqueueservices and audiotoolbox framework can be used to ...
0
votes
2answers
69 views
Play 2 sounds one after the other using AudioToolbox
I have this sound playing after pressing one button using AudioToolbox.
-(void) onButtonPressSound {
NSString *soundPath = [[NSBundle mainBundle] pathForResource:@"sound" ofType:@"m4a"];
...
1
vote
1answer
140 views
(OSStatus) error = -1500 in AudioToolbox Framework
I am unable to play sound using AudioToolbox Framework.
My line of code :
SystemSoundID soundID;
CFURLRef soundFileURLRef;
OSStatus error = AudioServicesCreateSystemSoundID((__bridge ...
0
votes
1answer
87 views
AVFoundation not playing sound
I have always used audio toolbox to play my sounds, but users have saying there is no sound, this is because when you are on silent it doesnt play. I have tried many times to swap instead to av ...
1
vote
0answers
226 views
Switching between headphone & speaker on iPhone
I am trying to set up the audio routing for an iPhone app outputting. I am using a route change listener to detect when the audio route has changed. The listener detects the changes, such as when the ...
0
votes
0answers
83 views
Select Audio Output in iOS Application
Is it possible to programmatically select the Audio Output for an iOS Application.
What I want to achieve is to have all audio output through the iPads internal speaker even though an HDMI cable is ...
0
votes
0answers
63 views
Cannot play AudioToolbox sounds on actual device
In my iPad app I ran it on my device fully successful. Inside the iPad 6.1 simulator my AudioToolbox sounds play fine, but when trying on actual iPad, it does not play. The buttons are clickable, but ...
1
vote
2answers
76 views
How to play a row of numbers on an iPhone as audio?
I'm looking at an output of an electroencephalogram sensor. This data is displayed on screen in raw form at about 200Hz. I read that in the old times, it was possible to hook up such output to a ...
0
votes
1answer
275 views
Errors while trying to play sounds with AudioToolbox in Xcode 4.6
This is an issue I have been trying to fix for a while. I get an error in my header file with an app I am trying to make for iOS using the AudioToolbox framework. Here is the code:
#import ...
0
votes
2answers
407 views
AudioServicesPlaySystemSound sound not audible when called from IBAction method
I'm having a problem with AudioServicesPlaySystemSound in my iOS app.
I have a method defined to play a system sound. When I call the method from viewDidLoad, I can hear the sound play, but when I ...
2
votes
2answers
274 views
Speex encode/decode causing hissing noise (Objective-c)
When I bypass the speex encode/decode steps the raw audio output is correct. What I'd like is for the entire buffer captured from my recording callback to be encoded, decoded, and sent back to the ...
0
votes
0answers
44 views
xcode AudioToolsbox song queue and random song
i am working on a song project for homework, if i have 10 songs, when i press the "Play All" button, how can it play all song? i only know how to play 1 song at time, and another question is how can ...
-1
votes
1answer
217 views
Create SystemSoundID failed iOS - OSStatus = 0 [closed]
I got a very similar problem like here: link
In ViewController.h file I added this:
#import <UIKit/UIKit.h>
#include <AudioToolbox/AudioToolbox.h>
@interface ViewController : ...
0
votes
2answers
458 views
Play a .wav with Audio Toolbox
I am trying to play a .wav file using Audio Toolbox. I have this so far:
However my file will not play. The If condition is triggered right, however it doesn't play.
It will print the error message if ...
0
votes
1answer
175 views
How to cancel a playing sound started with AudioServicesPlaySystemSound?
Is there a way to cancel, pause or stop a sound that started playing through a call to AudioServicesPlaySystemSound()?
1
vote
1answer
370 views
AUSampler Audio Drop-out
I am developing an iPad application that uses the AUSampler AudioUnit, in conjunction with other AudioUnits, to play audio. The AUSampler loads a preset from a SoundFont2 file.
When too many notes ...
2
votes
1answer
176 views
is possible to increase audio volume on system sound?
I am making piano application on iPad . I am using AudioServicesPlaySystemSound(toneSSID) for play sound of keys.But there also functionality to increase volume. But i not find how to increase ...
2
votes
1answer
174 views
Using AudioToolBox to save Wave file to NSFileWrapper
I've used ExtAudioFileCreateWithURL and ExtAudioFileWrite from the AudioToolBox framework to save my samples to a file. But now I need to save it to an NSFileWrapper since I'm now using NSDocument:
...
0
votes
1answer
216 views
Cant play wav audio file on IPhone or Mac
Im developing an IPhone app and am including a sound file to play. I want to convert it to a CAF file. I know about the afconvert tool, but my problem is any of the MAC audio tools like afplay just ...
1
vote
1answer
441 views
MonoTouch Play System Sound
I would like to play a beep sound, when my alert dialog appears. How do I play the sound when a push notification appears? The code I need is similar to these links:
...
-1
votes
1answer
46 views
Is there any way to work with Audiotoolbox while receiving phone calls in iphone
Is there anyway to turn - on speakers from our iphone application while receiving the phone call so that user can continue the conversation through the out speaker , will our iphone application work ...
0
votes
1answer
92 views
how do I get artwork of mp3 using AudioToolbox framework?
I'm trying to get artwork of the mp3 file using these lines of code.
CFDataRef AlbumPic= nil;
UInt32 picDataSize = sizeof(picDataSize);
err ...
2
votes
2answers
295 views
Audio Playback Not Working (AudioToolbox/AudioServices) - iPad 3
I have a short method which plays an audio notification using the AudioToolbox/AudioServices library (i've removed most of the functional code for brevity):
- (IBAction)thatWasEasy:(id)sender {
...
0
votes
1answer
101 views
How can I write an array of normalized float values to AIFF using coreAudio?
I've tried the following code, but on executing it gives the 'fmt?' error which tells me that 'the data format is not supported by this file type'. Unfortunately, I can't find a reference anywhere ...
1
vote
2answers
184 views
Joining multiple ALAC files.
I am able to join multiple CAF files with encoded PCM audio inside. First I read data format from one of CAF files.
UInt32 size = sizeof(srcFormatDescription);
status = ...
0
votes
0answers
64 views
Audio Session Related Crash
Can anyone suggest what might be causing this intermittent crash?
0 libsystem_kernel.dylib 0x35fda004 mach_msg_trap + 20
1 libsystem_kernel.dylib 0x35fda1fa mach_msg + 50
2 ...
2
votes
1answer
696 views
2 errors when calling AudioServicesPlaySystemSound?
I'm making an app which vibrates once a timer reaches a certain limit.
However, when calling
AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
Xcode comes up with two errors:
Undefined ...
0
votes
0answers
92 views
how to decrease ipod music volume when call AudioServicesPlaySystemSound?(Like native sms app)
I use AudioServicesPlaySystemSound play a short sound file, if ipod music is playing the sound can't heard.
But I use AudioServicesPlayAlertSound play ipod volume can fade out.
CFURLRef ...
0
votes
0answers
111 views
audio recording MAC OS X : header file contains 4Ko of nul value
I use AudioTookbox.framework on MAC OS X Snow Leopard (not iOS, not Lion) and DCAudioFileRecorder sample code to develop my own audio recorder. I don't have the AVFoundation framework on my host.
I ...

