1
vote
0answers
7 views

Performance issues with AVAssetWriterInput (audio) and single-core devices

I'm having a strange performance issue with AVAssetWriterInput on single-core devices like the iPhone 3GS and iPhone 4. Basically, I have an AVAssetWriter with two AVAssetWriterInputs, one for video ...
0
votes
0answers
12 views

How to get the sound of frame using Avfoundation ios

How to get the sound of frame using Avfoundation ios .Iam geting frame by frame image using the delegate - (void)captureOutput:(AVCaptureOutput *)captureOutput ...
0
votes
0answers
15 views

Record Sound when video camera started in ios and upload to server frame by frame

Iam using Avfoundation to capture frames as images i want to record sound also with it and send frames and sound to server how to accomplish this . Thanks in advance
0
votes
1answer
19 views

How to play sound through earpiece on iPhone

I've tried using audiotoolbox framework, messing around with AudioSessionInitialize AudioSessionSetProperty and found nothing. just want to know is it possible? and if possible a bit of code to ...
-1
votes
0answers
12 views

Audio Thread Bad Access [closed]

I have a problem with my project. When I run my project, the console terminates, and it stops because of this thread: Audio Stream Basic Description: 2 ch, 44100 Hz, 'lpcm' (0x00000029) 32-bit ...
-1
votes
1answer
38 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
0answers
37 views

What is AVAudioPlayer's averagePowerForChannel averaging?

The docs for AVAudioPlayer say averagePowerForChannel: "Returns the average power for a given channel, in decibels, for the sound being played." But it doesn't say what "average" means, or how/if that ...
0
votes
0answers
45 views

Adding AVMediaTypeAudio to pre-rendered video using AVAssetExportSession can't be added to camera roll

I'm mixing an audio track into a previously rendered video file, and it appears to have stopped working - it fails at the NSAssert(UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(outputPath), nil) ...
0
votes
1answer
24 views

Checking whether the audio has ended playing in iOS

I would like to check whether the audio has ended playing. If so, I need to change the button to a play button instead of a pause button. How do i do it in iOS? My code looks like this: ...
0
votes
1answer
71 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 ...
0
votes
0answers
164 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
2answers
65 views

How do I run a looped sound file one time, each time the App runs?

I'm trying to play a looped sound file one time, each time the app is opened. I'm doing this because I currently have the code in the viewDidLoad of my initial viewController. The problem was that ...
0
votes
1answer
69 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 ...
2
votes
1answer
160 views

iOS process audio stream while playing video

I am trying to create a video player for iOS, but with some additional audio track reading. I have been checking out MPVideoPlayerController, and also AVPlayer in the AV Foundation, but it's all kinda ...
0
votes
2answers
70 views

Load audio in DOCUMENTS when UITableView “cell” is pressed

I have a UITableView displaying a llist f files in the Documents Directory... and I want it to play the audio file in the Documents directory when pressed... It runs with no errores but doesn't play ...
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 ...
0
votes
0answers
88 views

AVAsset loading causes the playing sound to stop for a moment

I'm using AVFoundation's AVURLAsset to load and play some music from the iPod library. My problem is this: I have a currently playing sound and while it's playing, I load the next song. This, for most ...
1
vote
1answer
91 views

why will this sound loop not stop?

I made a sound loop in my app that I want to stop when the user presses the 'ok' button on a UIAlertView that comes up. I have 2 problems though: First When I have breakpoints on and I set a ...
0
votes
0answers
47 views

iphone - Put together AVAudioPlayers into one audio file

I want to combine an audiofile with 6 other but put these six so they start playing at different start times. This is how I do in the "song editor" of my application: if (self.audioPlayer.currentTime ...
1
vote
0answers
219 views

iOS AVFoundation Export Session is missing audio

I'm am using the iOS AVFoundation framework and I am able to successfully merge video tracks, with image overlays, and text overlays. However, my output file doesn't keep the audio intact from my ...
1
vote
1answer
232 views

iPhone audio frequency [duplicate]

Possible Duplicate: How to detect sound frequency for particular sound in iphone? I am seeking a way to find the frequency of mic input. I can record my voice or a sin noise in a temporary ...
0
votes
0answers
109 views

Why is AVMutableAudioMixInputParameters setVolume not working?

This works: [audioInputParams setVolume:volume atTime:[self timeFromString:@"0s"]]; This also works: [audioInputParams setVolumeRampFromStartVolume:1.0 toEndVolume:0.0 ...
2
votes
1answer
697 views

How to play m3u audio stream in iOS app

I'm trying to create an iOS/iPhone radio app using Xcode 4.5.2. I wanted to stream @"http://xx.xxxxxxx.com/8111/radio.m3u" with play, pause, volume control and able to play on background ...
0
votes
0answers
39 views

How do I set the gain of an input device using AV Foundation on OS X?

I am migrating our audio-input sub-system from Core Audio to AV Foundation. The sticking point is setting the input device's gain. It would appear that this should be a property of ...
0
votes
0answers
107 views

CELP audio encoding in Quicktime movie

I am trying to produce a quicktime movie with H264 video and CELP (code-excited-linear-prediction) encoding of the audio under iOS 6.0 (iPad3). The basic setup routine looks like that: NSURL * url ...
3
votes
1answer
280 views

Adding audio to a video using Obj-C plugin and AVAssetWriterInput

I'm trying to take a video created using the iVidCap plugin and add audio to it. Basically the exact same thing as in this question: Writing video + generated audio to AVAssetWriterInput, audio ...
0
votes
0answers
105 views

Audio in Background and Buffering

In my viewDidLoad I have: AVPlayerItem* playerItem = [AVPlayerItem playerItemWithURL:[NSURL URLWithString:@"http://s4.voscast.com:8080/"]]; [playerItem addObserver:self forKeyPath:@"timedMetadata" ...
0
votes
0answers
93 views

Audio level metering of video playback in iOS

In iOS, is it possible to monitor the audio level during playback of VIDEO? Audio level monitoring during playback of audio is easy as AVAudioPlayer supports metering using the meteringEnabled and ...
0
votes
1answer
474 views

AVFoundation - iOS can't hear sound

I'm trying to play a mp3 file using AVFoundation framework. It can't detect the file and has the following error: Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: ...
0
votes
1answer
254 views

MPMoviePlayerController freezes if background audio is active

In a view controller I have a video playing and also some background music. If the background music is playing, the video freezes when it goes to loop. If the background music is not playing the video ...
0
votes
2answers
297 views

iPhone sound level low after recording sound using AVFoundation

I have an app that I'm working on that one of its functions is to record a sound through the iPhone mic and be able to play it back to me. Problem: After I record lets say, me talking for example, ...
1
vote
0answers
111 views

Objective C: How to play a record file

good day sir/maam! i am new at objective c and application development.. i just want to ask how im going to play a recorded file that is triggered by high level of threshold? and stop the recording in ...
1
vote
1answer
165 views

Objective C: Detecting a Voice

Good day! i just want to ask if what value should i need to input in my code and inside the condition in order to detect a regular voice of a user, in such that after i detected the voice, i will ...
3
votes
1answer
551 views

Merge audio with video perfectly

I've been trying to merge audio with video using AVMutableComposition and AVExportSession. Everything works perfectly except that the audio and video sources don't have the same duration. So the ...
0
votes
1answer
112 views

How to play two audio files from the iPod library simultaneously?

I know that the MediaPickerConroller can be used to access the iPod library, however I'm not sure that it can play two songs at the same time. AVFoundation would allow this, but then how do you get ...
0
votes
2answers
408 views

Export 2 audio tracks (running at the same time) to one file m4a)

I'm developing an ios audio app on xcode and I'm trying to use 2 audio files I have recorded - which are playing at the same time and export it to one audio file. All I have managed to do is merge 2 ...
1
vote
0answers
174 views

how to convert audio output data into frames using AVFoundation in iphone sdk

I am trying to capture the video and audio using AVCaptureSession and I done with videocapturing and converted into pixel buffer and I played the output captured video at server side using ffmpeg n ...
0
votes
1answer
176 views

Audio Framework Confusion

I've read quite a bit both here (Audio Framework in iPhone) and abroad but am still confused as to which Audio Framework to use. I'm able to get some easier things done, like recording and playing ...
2
votes
0answers
178 views

How can I make a audio file from a video? on iOS

I'm looking for the way that make a audio file like wav, alf or etc.. from a video. Simply, I want to get only audio from the video. How can I make it? I tried to AVAssetExportSession without ...
0
votes
0answers
122 views

How to get Raw video/audio data from AVFoundation

I need to get the raw data of video/audio and to send that raw data buffer to the server. I done unto getting the raw data into AVCaptureVideoOutput and AVCaptureAudioOutput. And I donna how to ...
0
votes
0answers
92 views

Individually adjusting the quality of inputs to AVCaptureSession

I'm a novice and trying to record audio and video using AVCaptureSession. Therefore, I used AVCaptureDevice and AVCaptureDeviceInput to capture the device and added to the session. Until here I have ...
0
votes
1answer
592 views

Recording audio samples on iOS using AVFoundation

Choosing the audio format in which AVFoundation audio samples are captured. I am familiar with processing of video frames coming from the iPhone camera. There, the AVCaptureVideoDataOutput's ...
0
votes
1answer
351 views

Audio not playing on all iOS devices

I have an xcode (4.3.2) project where I am trying to play audio. I have two iPad2 devices to test on. Both are running iOS 5.1 (9B176), though one is a 3G and one is not. The sound plays in the ...
3
votes
0answers
740 views

AVAssetReader playing MPMediaItem in low quality?

I've managed to get the raw data from a MPMediaItem using an AVAssetReader after combining the answers of a couple of SO questions like this one and this one and a nice blog post. I'm also able to ...
0
votes
2answers
178 views

AVAudioPlayer is releasing before playing?

I'm making a soundboard app and I use this code to play mp3 files: -(IBAction)playSound { NSString *path = [[NSBundle mainBundle] pathForResource:@"mysound" ofType:@"mp3"]; AVAudioPlayer* ...
10
votes
1answer
479 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. ...
2
votes
1answer
2k 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 ...
1
vote
0answers
600 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 ...
4
votes
2answers
1k 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 ...
7
votes
3answers
4k 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 ...

1 2