Tagged Questions
5
votes
1answer
4k views
How do you use AVCaptureStillImageOutput, captureStillImageAsynchronouslyFromConnection in particular?
How do you setup the completion handler for:
captureStillImageAsynchronouslyFromConnection:completionHandler:
for AVCaptureStillImageOutput?
(void)captureDelegate:(CMSampleBufferRef)buffer ...
4
votes
2answers
2k views
Playing many different videos on iphone using AVPlayer
I'm working on a custom video player for iOS using AVFoundation. The idea is to be able to switch to a different video with a gesture (tap, swipe, whatever). Right now the player is working flawlessly ...
4
votes
1answer
2k views
AVCapture appendSampleBuffer
I am going insane with this one - have looked everywhere and tried anything and everything I can thinks of.
Am making an iPhone app that uses AVFoundation - specifically AVCapture to capture video ...
3
votes
1answer
945 views
iOS SDK4.0 AVFoundation !
I've added AVFoundation.framework
I've written "#import " at the top of the file.
I've used the class AVCaptureSession AVCaptureDevice AVCaptureDeviceInput... in my code.
But when I build it,Xcode ...
2
votes
2answers
722 views
Handle streaming events with AVPlayer
I'm building an app wich plays an audio stream (from a webradio).
I'm using AVPlayer for it.
1) I'd like to know how you would handle AVPlayer's "buffering" when the connection is slow or when the ...
2
votes
1answer
588 views
Play multiple Audio Files with AVPlayer
I'm trying to play multiple sounds at the same time.
The approach initially I've taken was to create several players , but it seems wrong one.
What's the best way to play several audio files at the ...
1
vote
1answer
56 views
It's possible to play sound from main bundle with AVPlayer?
It's possible to play sound from main bundle with AVPlayer ? It's working with URL adress from internet or ipod library but from main bundle no :( Why ?
1
vote
0answers
149 views
exif data in NSData image representation
I'm trying to create a PhoneGap plugin which uses AFFoundation to capture photos and return the image as base64 encoded string. This all works fine but the exif data seems to be missing from the ...
1
vote
0answers
230 views
Displaying converted frame from AVCaptureOutput
I am using avfoundation and would like to display a hsv version of each frame. I am also required to use opencv for object detection so i am current stage where i have converted the colour model of ...
1
vote
4answers
6k views
Xcode iPhone - Adding framework works a little bit
No biggie, but when I add the AVFoundation framework for the iPhone, it turns red for some reason I'm unable to figure out why. The project will not compile unless I add this framework, and if I do, ...
0
votes
3answers
79 views
Xcode iOS: How to reset a sound once it has played using AVFoundation
So I made a soundboard for the hospital I work for, it plays different respitory sounds for the RT's to listen too for furthering education and for trainees. I can stop and start the sounds fine. ...
0
votes
1answer
47 views
Animation doesn't begin when using AVSynchronizedLayer
I've set up a project as a test using AVSyncronizedLayer to move a red line (CALayer) across the screen as a movie plays.
When doing this I referenced the answer given here and have included that ...
0
votes
1answer
155 views
Playing wav sound file with AVFoundation
I am using AVFoundation to play wav files. But i could not make it play. Also no errors or warnings showed up.
XCode is 4.2 and device is iOS 5.
- (IBAction) playSelectedAlarm:(id)sender {
...
0
votes
1answer
185 views
AVFoundation AVPlayer seekToTime completionHandler syntax
Probably a simple question for iOS5
They have changed the seekToTime method of AVFoundation to look like this:
[avPlayer seekToTime:startTime toleranceBefore:kCMTimeZero toleranceAfter:kCMTimeZero ...
0
votes
0answers
74 views
AVFoundation AudioPlayer
I'm trying to use the AudioPlayer class that's included in Apple's AVFoundation framework. The problem is xcode for some reason won't properly import the AVFoundation framework. I can't use the ...
0
votes
1answer
40 views
Adjusting the size the volume, using the same uislider but for multiple sounds
I have 10 sounds in a view. And one uislider
This is the code for 1 of the sounds.
- (IBAction)oneSound:(id)sender; {
SystemSoundID soundID;
NSString *path = [[NSBundle mainBundle] ...
0
votes
1answer
55 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
156 views
AVMutableAudioMix simple question
just want to understand , what exactly I can do with this AVMutableAudioMix class, once I will insert PlayerItems (Assets) in to the AudioMix, can I play them one at the time or some of them at the ...
0
votes
1answer
352 views
AVAssetTrack totalSampleDataLength is 0
I'm programming an iPhone app which uses an AVAssetReader to read samples from an AVAssetTrack, I need to allocate some memory which depends on the number of samples in the AVAssetTrack, but for some ...
0
votes
1answer
107 views
Why am I getting an error?
The following line of code compiles with the following warning:
Code:
[[[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error] play];
Warning:
...
0
votes
1answer
646 views
Recording and then Playing Audio using AVAudioRecorder and AVAudioPLayer
I have an AVAudioRecorder that captures the sound. What I want is to be able to Play(AVAudioPlayer) the recorded(AVAudioRecorder) sound as it is being recorded.
I have set up the AVAudioSession ...
-1
votes
1answer
97 views
stop music IMMEDIATELY
Hi i have an app where you have to hold down a button and blow into the phone and it makes a sound, here is the code:
#import "AirInstrumentViewController.h"
@implementation ...