This is the blurb accompanying the Audio Services function AudioServicesSetProperty. Its a bit over my head. Can someone give me an example of how to actually use this. Thanks.
AudioServicesSetProperty ... |
I see that the IPhone core audio does not include audioDevice objects to render audio input directly into RAM. I hear people talking about using files to do this(like speak ... |
I'd like to include an MP3 with my app and play it on demand. Unfortunately I am not sure how to get started. I keep reading about .caf files, ... |
Some MP3 files can't be opened by CoreAudio in OS X and iPhone OS 3.x. This was a bug that I submitted to Apple and has been fixed in 10.6.2. Unfortunately, ... |
So, I'm finishing up an iPhone App.
I have the following code in place to play the file:
while(![player isPlaying]) {
totalSoundDuration = soundDuration + 0.5; //Gives a half second break between ...
|
Currently I am working on iPad. I would like to retrieve system audio files by default in iPad (I think it is the same in iPhone). Does anyone know how to ... |
My real objective is to be able to use 1 audio file and create X amount of different pitches and then playing them in the app using some code to handle ... |
|
Ok, I'm wondering if there are any iphone application templates that can send the mic input of the iphone wirelessly (wifi) to the computer. And then on the computer, there is ... |
I want to play several audiofiles (*.wav) by touching the appropriate UImageViews. Each touching an UIImageView changes an "triggernumber" - wich view is selected. The audiofile names are stored in an ... |
I have some UIImageViews (Animals) and by touching them a specific soundloop starts to play.
But if the user touches twice or more on the same View, the apropriate soundloop starts over ... |
when ever i try to play audio this error appears
2010-08-27 09:13:40.466 VoiceRecorder[3127:207] Failed with reason: The operation couldn’t be completed. (OSStatus error -43.)
what does it mean
I am physically storing ... |
i want to let my app play sound every 20 min even when the app is on background or the iphone is in sleep mode ... i used: [NSTimer ...
|
Hey all, I've got a method of recording that writes the notes that a user plays to an array in real time. The only problem is that there is a slight ... |
CFStringRef state;
UInt32 propertySize = sizeof(CFStringRef);
// AudioSessionInitialize(NULL, NULL, NULL, NULL);
AudioSessionGetProperty(kAudioSessionProperty_AudioRoute, &propertySize, &state);
if(CFStringGetLength(state) ...
|
#import "VTM_AViPodReaderViewController.h"
#import <AudioToolbox/AudioToolbox.h> // for the core audio constants
#define EXPORT_NAME @"exported.caf"
@implementation VTM_AViPodReaderViewController
@synthesize songLabel;
@synthesize artistLabel;
@synthesize sizeLabel;
@synthesize coverArtView;
@synthesize conversionProgress;
#pragma mark init/dealloc
- (void)dealloc {
[super dealloc];
}
#pragma mark vc lifecycle
-(void) viewDidAppear:(BOOL)animated {
...
|
How to play streaming audio file in iphone?
I am trying to make an app which can play audio file from web server with Play Pause and stop functionality....
can any one ... |
I was wondering where to start if I want to implement scratching features in my app. The user selects a sound file, and can see a LP spinning. I want the ... |
How can I play an audio file in the background?
This is my code:
NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:@"Alarm" ofType:@"caf"];
NSData *sampleData = [[NSData alloc] ...
|
I am trying to making a Music App Integrated with In-App Purchase where User can buy audio File?
Is In-App-Purchase Allow user to buy Audio File ????
|
how to create a customized audio player.like the pic tagged below...in genral if i am to play an audio..i get the default audio player..
|
I need some guidance on how to make a audio stream app for multiple audio files, so the app user can choose from the list and listen to the item.Do you ... |
i am new with programming i want to create an iphone apps of sound recording and for the audio timer i want to create something like alarm clock apps a clock ... |
We need to get constantly- audio pure frequencies to the iPhone audio jack mic input, and recognize specific frequency.
i have read about 2 ways of FFT(/fourier transform) : AurioTouch , or ... |
Hi
I am trying to get audio input signal and measure its width (a pulse).
I do that now with AVAudioRecorder , and i can see that the minimum pulse time it can ... |
Hi
After reading so much on the speak here apple's example, i couldnt understand what parts of it i need .
I only need to always get the audio data from mic , ... |
I'm trying to use some files in a new Xcode project that involves Core-Audio. When I compile I get strange errors such as these in my controlViewer:
 |
So, I have read that if you want to make an audio sound play and loop, mp3 doesn't work well because it has a gap. Are there any file types that ... |