Tagged Questions

9
votes
4answers
5k views

iOS 4: Remote controls for background audio

I'm currently attempting to set up background audio for an app I'm developing for iOS 4. The app doesn't have a dedicated music player viewController, however, unlike other background audio apps such ...
6
votes
0answers
140 views

Using AVFoundation / CoreMedia / Other Frameworks to Detect Beats / Onsets

(Preface: This is my first audio-related question on Stack Overflow, so I'll try to word this as best as I possibly can. Edits welcome.) I'm creating an application that'll allow users to loop music. ...
6
votes
3answers
984 views

What's the difference between all these audio frameworks?

In the documentation I see several frameworks for audio. All of them seem to be targeted at playing and recording audio. So I wonder what the big differences are between these? Audio Toolbox, Audio ...
4
votes
1answer
516 views

How to add audio file contents in movie using AVFoundation on iOS4?

I am using AVFoundation to create a movie file (mp4) using images and sound files. I have successfully created movie file using AVAssetWriterInputPixelBufferAdaptor which appends CVPixelBufferRef ...
3
votes
1answer
1k views

AVAssetExportSession does not export audio tracks

I have an application that allows to append multiple video assets and add one or multiple audio tracks to a composition. All seems to work, I can play the resulting composition using AVPlayer ...
3
votes
4answers
4k views

iPhone (SDK 2.2): adusting playback volume while NOT actively playing music w/ AVFoundation?

So I have an app which plays many short sound clips. I need to know when the sounds are finished playing, and I need to use mp3s, so I'm using AVFoundation for the sound playback. When a sound is ...
2
votes
1answer
239 views

iOS 5.0 crash when reading data from an AVAssetReaderOutput

I have this snippet of code used to read data from an AVAssetReaderOutput, the method works fine in iOS 4.0, however in 5.0 it crashes towards the end with bad access, not sure why, anyone have any ...
2
votes
1answer
252 views

AVAudioPlayer: Sounds overlaping!

i made a simple app where i can record myself and then sample what i've recorded. Since i like spamming buttons, i tried it with my own app. The result was, about 20 the same sounds of myself talking ...
2
votes
1answer
315 views

Using AVMutableAudioMix to adjust volumes for tracks within asset

I'm applying an AVMutableAudioMix to a asset I've created, the asset generally consists of 3-5 audio tracks (no video). The goal is to add several volume commands throughout the play time, ie I'd like ...
2
votes
1answer
670 views

AVMutableCompositionTrack - insertTimeRange - insertEmptyTimeRange issue

I have a strange problem: I want to generate a new sound file out of two soundfiles and silence. sound1: 2 seconds long + silence: 2 seconds silence + sound2: 2 seconds long When I try the code ...
1
vote
2answers
274 views

How can I do audio noise reduction programmatically?

I'm developing an iPhone 4 (iOS 4) application that show an level meter. This app measures human voice. But it has a problem. When there is a lot of noise, it doesn't work. It measures also ...
1
vote
0answers
325 views

iPhone Detect Volume Keys press.

I need to detect when the user presses the hardware volume keys, (App Store safe approach) I have tried a number of things with no luck. Do you know how to implement such functionality? At present I ...
1
vote
0answers
139 views

MPMusicPlayer inaccurate currentPlaybackTime for VBR audio

When I seek to a position in a non-vbr mp3 by setting MPMusicPlayer's currentPlaybackTime property, I'm able to seek accurately. When I seek to the same position with a VBR mp3, it seeks to a further ...
1
vote
2answers
212 views

Best way for looping and using background sounds in iphone?

Lets say I am dragging my finger on screen and I have 1 second .caf sound file in my bundle. So what is the best way to play my sound file in a loop till i am dragging my fingers. And it should stop ...
1
vote
1answer
362 views

AVAssetExportSession SLOW

I am using AVAssetExportSession to export audio files. It is working, though in a speed that is practical for use. I am setting up my exporter, getting my AVAsset, and starting the export. Here is the ...
1
vote
2answers
116 views

Differences in audio frameworks on iPhone 3G, 3GS and 4

I'm building an app that measures sound volume. I understand that audio hardware in the iPhone is not as accurate as professional hardware, which is OK, but I need to know if there are any differences ...
1
vote
1answer
2k views

AVAssetExportSession - AVMutableCompositionTrack - exported output file is empty

I try to add a .mp3-file to an AVMutableCompositionTrack and after that I want to export the new file. The Problem is: The generated file exists after exporting but it is empty and can not be played. ...
1
vote
1answer
348 views

How can i compare two audio files on the basis of certain parameter say maximum decibel?

I am trying to compare two .caf files on the basis of some parameter, say maximum decibels or duration of files. I have recorded these two files using the AVAudioRecorder class using the following ...
1
vote
0answers
45 views

Load audio file ASAsset

How can I load a file on an ASAsset, add metadata to it and export it? Also, how may I crop it?
1
vote
2answers
2k views

What's the SIMPLEST way to play a sound clip in an iPhone app?

I want to be able to play a sound clip in an iPhone OS app. I've seen info on both NSSound as well as AVFoundation as being means for getting sound clips played on an iPhone OS device, but I'm still ...
0
votes
1answer
59 views

AVAudioPlayer audioPlayerDidFinishPlaying:successfully: not called

I am facing a weird issue with the AVAudioPlayer class with the audioPlayerDidFinishPlaying:successfully: callback not being called sometimes. A stripped down version of the code that starts the ...
0
votes
0answers
74 views

Record Audio/Video with AVCaptureSession and Playback Audio simultaneously?

I'm trying to create an iOS app which can record audio and video while simultaneously outputting audio to the speakers. To do the recording and preview, I'm using AVCaptureSession, an ...
0
votes
0answers
43 views

tries to play PCM Streaming with AVplayer. Successfully Compiled but no sound

I am new to this.. and trying to play the sound from a server... Somehow it passed the compiling but never actually have sound... I wonder whats wrong with it... the audio source is Linear PCM ...
0
votes
2answers
177 views

AVAudioPlayer not playing any sound

I'm working on an iOS application that needs to play some sounds using the AVFoundation framework. The workspace structure in Xcode 4 contains two projects: Workspace The application itself (main ...
0
votes
1answer
74 views

Whither AVCaptureAudioFileOutput on iOS?

The Internets don't seem to have an answer to this question. In this reference page for AVCaptureFileOutput, they state that: The concrete subclasses of AVCaptureFileOutput are ...
0
votes
1answer
121 views

Unable to play sound (wav) on event

I need to play a short sound. This is the code I wrote In my header I have: #import <AVFoundation/AVFoundation.h> @interface AddItemController : UIViewController < ... , ...
0
votes
1answer
142 views

iPhone SDK: How do you reverse the playback of AVAudioPlayer?

Basically in my app I record a sound, and play it back, I would like to reverse the playback of this audio. I've checked around on the net and I can't seem to find the answer. Any help would be great. ...
0
votes
1answer
292 views

Can I Play an audio while recording a video on iPhone 4?

I'm trying to record a video while the iPhone playback an audio track. as far as i tried, whenever I simulataniously record and play - the camera get stuck. I went over the AVFoundation PG But I could ...
0
votes
0answers
253 views

iOS Extracting Audio from .mov file

I've been trying to extract audio from a .mov file for a while now and I just can't seem to get it working. Specifically, I need to extract the audio and save it as an .aif or .aiff file . I've tried ...
0
votes
0answers
333 views

AVAssetReaderTrackOutput from iPod Library

I'm working on something that plays songs from the audio library and outputs them using RemoteIO. I can't use AVPlayer because I need to do some processing on the audio data. Now I'm not exactly sure ...
0
votes
1answer
62 views

Saving and accessing audio recordings

Ok so im kind of new to objective-c. I set up an audio recorder using AVAudioRecorder. It works great. but.... i dont know how to access the saved files, heck i dont even know if they get saved. The ...
0
votes
1answer
81 views

iphone avaudiofoundation sound completion in loop

Is it possible to force an audio file to finish playing before proceeding with code? In the below example, I'd like an audio file to play for as many times as I have items in the array. current it ...
0
votes
1answer
654 views

Merging *.mp3 with *.mov file using AVAssetReader and AVAssetWriter

I was able to create a *.mov file using the AVAssetWriter. I used screenshot images and audio CMSampleBuffer i got from using AVCaptureSession and passed it to the inputs for the AVAssetWriter and it ...
0
votes
2answers
701 views

Merge audio and video/image to create a movie file

I want to merge an Audion CAF file and a video/image UIImage to create a movie file (in .mov format). Say that my audio is 30 seconds long and I have a UIImage; I want to create a .mov file such that ...
0
votes
1answer
98 views

iPhone merger UIImage and CAF Audio to AV file

I want to merger an image file and an audio file. I have UIImage object in which I have my image. I have also CAF audio recording of 4-5 seconds. Now, I would like to create a movie file with image ...
0
votes
1answer
364 views

change sound pitch (not in realtime)

i alway had this question in my mind, but wherever i asked, i could never get an answer or a suggestion that would be helpful: How can i pitch a sound (not realtime) ? Im using AVFoundation ...
0
votes
2answers
454 views

another question about recording, modifying and playing audio on iphone

EDIT: In the end I used exactly as I explained below, AVRecorder for recording the speech and openAL for the pitch shift and playback. It worked out quite well :) But for his detailed answer that I ...
0
votes
0answers
105 views

what's the most efficient format for recording audio on the iphone?

I've read all of the other posts here, and the hardware sample rate looks to be 44.1khz for the 3gs and beyond. I am recording audio with a video in real time, and want the most efficient method. ...
0
votes
1answer
1k views

Synchronizing audio and video with AVCaptureSession and AVAssetWriter

I'm hoping some of the old hats will help with this one. AVAssetWriter is new in 4.1, but I hope those familiar with any AVFoundation or Quicktime / QTKit API can chime in. I am trying to record ...
0
votes
1answer
225 views

Specify software-based codec for AVAssetReaderAudioMixOutput?

On an ios device, can AVAssetReaderOutput be told to only use software-based decoders (i.e. kAppleSoftwareAudioCodecManufacturer rather than kAppleHardwareAudioCodecManufacturer)? I see that this is ...
0
votes
2answers
711 views

Available options for playing a stream or a remote mp3 file on iOS 4

I am trying to make an application for listening to podcasts. Each podcast is an mp3 file, around 50MB in size. After reviewing the Using Audio chapter of the Multimedia Programming Guide, I decided ...
0
votes
1answer
424 views

iphone piano app doesnt play notes as expected

Im making a piano test app, all the keyboard is sounding now playing notes that I've recorded using garage band, but I have some problems: -the notes are 5 seconds long (minimum time of garage band), ...
0
votes
1answer
1k views

AVMutableComposition - are 2 parallel audio tracks possible?

I mixed successfully a video and an audio track together and exported it to a new .m4v file. My problem is now, that I want to mix the same video file and 2 audio files, which are two AVAssetTrack ...
0
votes
1answer
245 views

iphone audio foundation & stream with HTTP

hi i want read one << mp3 url >> minus 30 sec with button in iphone can i work this with audio foundation this is my code but its not work NSString *str = "my url"; NSURL *file =[[NSURL ...
0
votes
1answer
2k views

iPhone Mic volume

Is there any way to poll the mic input volume with AVFoundation? I have seen the CoreAudio examples like SpeakHere but I really only need the current value. Is CA my only option?
-1
votes
1answer
120 views

Cocoa Touch - AVAudioPlayer [closed]

I put my avfoundation into frameworks by adding existing frameworks and importing it into my viewcontroller like this #import <AVFoundation/AVAudioPlayer.h> I then called it in my IBAction so ...