Tagged Questions
0
votes
0answers
37 views
Label updating during audio processing
I'm very new to ios programming and I'm facing a problem regarding the update of labels during audio processing tasks.
I use a classic RecordingCallback -> ProcessAudio method. In ProcessAudio I ...
-4
votes
0answers
47 views
IOS - save resources on iphone
I have created an application that play back audios offline. I would like to download the audios first.
How could I download the audio file from the server and store it on my device (similar SDCard) ...
0
votes
1answer
16 views
Create generic audio path for iOS app
Analogous to what UIImage imageNamed does to replace the filesystem path for my image files, I am looking for a method to create a generic path from my absolute audio path on my filesystem.
Can ...
0
votes
1answer
25 views
Is it possible to show all songs in ios without showing MPMediaPickerController
I'm trying to access songs in ios device. From my searches, i found out i need to use MPMediaPickerController. So i'm creating media picker and choosing songs.
Is there a shortcut to get all songs ...
0
votes
2answers
60 views
How to play sound in iOS?
I have found so many solutions here on stackoverflow, but for some reason all of them failed to produce any sound what so ever.
Here is my current code:
PRE: I've added AudioToolbox.framework and ...
0
votes
0answers
14 views
Bluetooth speaker issue
I've created a Mac OS X app using Cocoa and Objective-C. The app plays system sounds with a frequency given by the user. The problem is that when Bluetooth speakers are in use, the sounds play ...
-1
votes
1answer
37 views
AVfoundation AudioPlayer not working
I am trying to play a sound on button click using the AVFoundation framework. Previously, i used audio toolbox however when i use the audioplayer nothing comes out. What is weird is that when i test ...
1
vote
2answers
54 views
high performance buffers in objective-c
I'm wondering what the most applicable kind of buffer implementation is for audio data in objective-c. I'm working with audio data on the iPhone, where I do some direct data manipulation/DSP of the ...
6
votes
2answers
114 views
AVAudioPlayer and Random Slowness
This question may be too vague to pass StackOverflow's standards, but I have to try posting it because I am running out of options... :/
Long story short: I have an app that experiences random ...
1
vote
1answer
74 views
App plays background audio not working
Want to have this option of App plays audio in background mode even when app is closed by pressing the home button.
With the below code only able to handle remote control events when home button is ...
1
vote
1answer
28 views
Sound Clip used to work but not anymore! what could be wrong?
I have a sound clip that plays when ViewDidLoad and it used to work on the simulator. However, when I tried it on my device it stopped working at all!! not even the the simulator.
here is my code:
...
5
votes
1answer
131 views
Output audio settings when append one AAC file to another
My app records two audio files one by one using AVAudioRecorder with audio parameters:
NSDictionary *outputSettings = [NSDictionary dictionaryWithObjectsAndKeys:
...
0
votes
1answer
64 views
iOS: 44k audio file should play at 22k sample rate
In my audio app I need to be able to change the format of an audio file (AIFF), more specifically the sample rate. The audio session is running at 22050 Hz, and the audio file itself is created in ...
2
votes
2answers
97 views
Hooking C functions
I want to hook a C function on Mac OS X. It's AudioUnitInitialize, so I can create a callback and save the audio to a file. I got the Mobile Substrate framework with the tutorial from this page. Here ...
0
votes
0answers
100 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 ...
1
vote
0answers
73 views
iPhone - Playing sound when device locked/silent mode but allow apple alarm to sound
I have an app called Light Alarm that plays different sounds as the alarm approaches. I have always used the following code:
UInt32 category = kAudioSessionCategory_MediaPlayback;
...
0
votes
0answers
31 views
1 button, plays 10 sounds?
1 button, plays 10 sounds?
How can I get a button to play some sounds in on order?
How can I add an extra sound to this action?
-(IBAction)sound1 {
CFBundleRef mainBundle = CFBundleGetMainBundle();
...
0
votes
1answer
37 views
Identical Functions, both get executed, no Sound in one
I'v googled the problem but couldn't find a similar case.
I've used this tutorial to play the testSound.mp3 - File when hitting a button on the iPad-Simulator:
...
0
votes
0answers
36 views
How do I check if the running application on Mac is providing audio output?
I am new to question here, even though I've seen tons of answers and got helped.
I am now coding a program to catch specific audio output among running applications in Obj C.
However, I've never ...
2
votes
2answers
58 views
How come my .aif short sound file will only play on iOS simulator and not on device?
I'm looking to play a sound on my iPhone (iOS 6.1) depending on pressed buttons.
After converting to aif, caf, wav and compressed formats, I could not get sound on the device. Sound volumes have been ...
1
vote
1answer
80 views
Encoding recording from AudioUnit for sending over NSOutputStream in iOs
I am trying to stream some recording from the mic in my iPhone in real-time over NSSocket.
I have callbacks for recording and playback. I am trying to read directly from the buffer using following ...
0
votes
1answer
80 views
Opening Siri stops AVAudioPlayer
I am currently using an AVAudioPlayer to play looped music in the background of my app. However, when siri is opened in my application it turns it off. I am farly experienced with objective c but I ...
0
votes
0answers
140 views
Playing audio from SWF Flash Player in Objective C
I'm currently making an iOS application where you can search a song. You will then be given a list of songs which you can choose from and then stream from the app. It uses a combination of the ...
1
vote
2answers
134 views
Passing Sound (wav) file to javascript from objective c
I am recording a sound file ( wav format) in objective C. I want to pass this back to Javascript using Objective C stringByEvaluatingJavaScriptFromString. I am thinking that I will have to convert ...
7
votes
1answer
160 views
How to detect when sound effect finish playing?
I'm using SimpleAudioEngine and I'm trying to detect if a sound effect is finish playing before continuing.
I'm looking for any method, but the one I'm trying to implement doesn't work!
...
0
votes
0answers
68 views
How to downsample audio file in objective c
I have recorded audio in linear PCM format using audio queue service. Its recorded with the sample rate of 22050Hz which is the required sampling rate of file in my project. Now I want to downsample ...
0
votes
0answers
115 views
Core Audio sine wave, strange overtones
I'm trying to generate a sine wave using Core Audio with the code below. The AIFF-file generates just fine, however, the signal is not a pure sine-wave. When played back, and frequency analyzed, ...
0
votes
1answer
56 views
Will an NSLocalNotification Sound Play When the Phone is set to Silent?
Is it possible for an NSLocalNotification to play an audio file when the ringer switch is set to OFF?
0
votes
0answers
15 views
MixerHostAudio Bluetooth
I'm using MixerHostAudio to listen to what I'm saying, at the same moment I'm talking.
Than I can even use it with my Apple TV and it works.
My question is, can I speak and at the same moment hear ...
0
votes
0answers
117 views
how to upload the audio songs into server using ios?
I am beginner iOS apps developer .I have tried following link codes.It's playing good but I need selected audio file path and how to upload to server in selected audio,kindly help out.Audio code ...
0
votes
1answer
78 views
System Sound plays very quietly over speakers - C, Objective-C
I'm using AudioServicesPlaySystemSound in Objective-C to play my sound effects. They play perfectly loud on simulator and on my iPad's speakers, but when I plug an audio cord from my iPad into a ...
0
votes
1answer
112 views
How to get Current Volume Level [duplicate]
I am working on 10.8
This is the code to get the current Volume of Speaker,
-(float)getVolume{
float volume = 0.0;
UInt32 thePropSize = sizeof(volume);
AudioDeviceID devId = [self ...
0
votes
0answers
64 views
Achieve smoothness/Performance while dragging along with audio/screen video recording
Need to have performance/Smoothness while dragging UIImageView. While using MoveMe sample app of Apple, I am getting smoothness but when i implement same in my code then performance degrades.
I am ...
1
vote
0answers
43 views
Play audio when iPhone is muted [duplicate]
I am currently developing an app that needs to play a short audio even when the phone is muted. The following code does play the audio when the phone is not muted, but it does NOT play the audio when ...
0
votes
1answer
75 views
First seekToTime, then fade in with setVolumeRampFromStartVolume
I'm programming a music player app that allows users to prelisten to tracks before adding them to the queue (I use AVQueuePlayer for this).
If the user selects a song he wants to prelisten, the ...
0
votes
1answer
66 views
AVPlayer playback rate for AVComposition
I am using an AVPlayer to handle playback of multiple assets by putting them all in an AVMutableComposition. Everything works for normal playback, i.e. [player play], but when I try something like ...
0
votes
0answers
27 views
When do AudioSession properties get activated?
I noticed that if I use AudioSessionSetProperty and immediately poll the property using AudioSessionGetProperty, I will not get the expected result (it will still show whatever default value existed ...
0
votes
0answers
97 views
Titanium/Obj-C - Start playing audio from background and continue playing in foreground
We've been developing an audio tour guide app where locally saved audio files (mp3) are played based on geolocation. Everything works perfectly, when app is in foreground and user enters into a ...
1
vote
3answers
161 views
Easy and straight-forward FFT of MP3 file
I have a MP3 file and need to constantly detect and show Hz value of this playing MP3 file. A bit of googling shows that I have 2 opportunities: use FFT or use Apple Accelerate framework. ...
0
votes
1answer
234 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 ...
2
votes
0answers
149 views
PCM to AAC conversion take too much time in devices
I need to convert a linear PCM recorded audio file to AAC format and its working fine too. But in simulator it takes less than 2 Sec but in iPhone4 it is 33Sec and in iPhone 4S it is 51 sec. Its a 6 ...
1
vote
0answers
172 views
How to play an ogg audio file from an arbitrary position (on iPhone)?
I want make sound loops with .ogg audio files (in objective-C for iPhone ios6.1). They feature quite repetitive music, alike game music, so additionally, I would like to make them more interesting ...
1
vote
0answers
265 views
STFT overlap add method - What am i doing wrong?
i am trying to implement a short time fourier transform of an audio signal to do some filtering (subtract another stft signal using spectral subtraction). I am using a hamming window function with 50% ...
2
votes
1answer
102 views
Sound effect for rolling ball Cocos2D
I am trying to get some way of creating a sound effect for a ball that is continually rolling in my game. At the moment I am simply using SimpleAudioEngine to loop a sound effect of a ball rolling, ...
1
vote
0answers
115 views
AUGraph variSpeed didn't accept StreamFormat on iOS 5.x
I have a AUGraph to Play and Record Audio with this Setup:
RemoteIO -> -> RemoteIO
Mulichannel Mixer -> variSpeed
Read Callback -> ...
1
vote
0answers
40 views
Is it possible to get information like Tempo from a .CAF file in iOS
I am developing an Audio Application.
I have a set of .caf files of Apple logic Pro.
I would want to extract in information like tempo and if possible other audio data.
I am very less experienced in ...
-1
votes
1answer
31 views
I am getting the error, “assigning to 'id avaudioplayerdelegate ' from incompatible type ”gameViewController“” [closed]
-(void)playSound: (NSString*)sound
{
NSString *path = [[NSBundle mainBundle] pathForResource:sound ofType:@"mp3"];
AVAudioPlayer* theAudio = [[AVAudioPlayer alloc] ...
1
vote
2answers
104 views
Normalize Audio File obj-c
Is there a library function to normalize a sound file? I have searched around but could not find any.
I would like to be able to normalize a sound file and setting that into the sound file so it only ...
0
votes
0answers
59 views
How do I create a QTKit movie object from raw audio data?
In my program that I'm writing, PlayerPRO Cocoa, I'm getting raw audio data and I want to export the data as an audio file. I've decided to use QTKit. How do I make it so that I can create a QTKit ...
1
vote
2answers
198 views
iOS sound plays while muted
I am making a learn-the-alphabet app for toddlers and I have encountered a problem with the sound output. Every sound the app plays when testing on my ipad has the same volume whether the device's ...






