Tagged Questions
5
votes
2answers
1k views
Extracting ID3 tags from MP3 over HTTP Live Streaming
I've been having quite a difficult time extracting ID3 information from an MP3 being streamed over Live HTTP Streaming (using the Wowza media server, if anyone is curious). I know that the tags (right ...
5
votes
3answers
3k views
Reading audio samples via AVAssetReader
How do you read audio samples via AVAssetReader? I've found examples of duplicating or mixing using AVAssetReader, but those loops are always controlled by the AVAssetWriter loop. Is it possible just ...
5
votes
4answers
4k views
AVFoundation, how to turn off the shutter sound when captureStillImageAsynchronouslyFromConnection?
I am trying to capture an image during a live preview from the camera, by AVFoundation captureStillImageAsynchronouslyFromConnection. So far the program works as expected. However, how can I mute the ...
5
votes
2answers
1k views
AVPlayerLayer - ReProgramming the Wheel?
I'm currently using an AVPlayer, along with an AVPlayerLayer to play back some video. While playing back the video, I've registered for time updates every 30th of a second during the video. This is ...
5
votes
2answers
3k views
AVCaptureVideoPreviewLayer: taking a snapshot
I'm trying to emulate the animation seen in the default camera app, where a snapshot of the cameras viewfinder is animated into the corner of the apps display.
The AVCaptureVideoPreviewLayer object ...
3
votes
1answer
211 views
Capture and play new media types with AVFoundation
I've got a very non-standard AVFoundation question and as a relative newbie to the iOS world I could really use some guidance from the experts out there -
I'm working on an app that lets the user ...
3
votes
2answers
683 views
Basic AVAssetReader problems reading video samples
I'm looking to read video samples via AVAssetReader and I'm running into all kinds of road blocks. Can some one post code that sets up an AVAsset from a video named 'Movie.m4v' from the application ...
3
votes
2answers
2k views
AVFoundation - Retiming CMSampleBufferRef Video Output
First time asking a question here. I'm hoping the post is clear and sample code is formatted correctly.
I'm experimenting with AVFoundation and time lapse photography.
My intent is to grab every Nth ...
3
votes
1answer
833 views
How can I use AVFoundation or AVAsset to create a Subtitle on top of my video?
I have a customized Player using compositions and some AVAssets. Everything works fine. Now I would like to to some Subtitle on top of my video. I've read in the documentation, that a mediaType ...
3
votes
1answer
1k views
AVAssetReader doesn't read whole file?
I am reading audio assets from the iPod library on iOS with an AVAssetReader and AVAssetReaderTrackOutput. However, when i read the data and put the chunks back together, the file isn't exactly the ...
3
votes
2answers
3k views
Reading samples via AVAssetReader
How do you read samples via AVAssetReader? I've found examples of duplicating or mixing using AVAssetReader, but those loops are always controlled by the AVAssetWriter loop. Is it possible just to ...
3
votes
1answer
540 views
AVAudioPlayer stop a sound and play it from the beginning
I used the AVAudioPlayer to play a 10 sec wav file and it works fine.
Now I what to stop the wav at the 4th sec and then play it again from the
very 1st sec.
Here is the code I tried:
NSString ...
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
500 views
How can I handle separate tracks of an AVURLAsset independently?
Here's my goal: I would like to load a .3gp movie file into an AVURLAsset. I would then like to take the video track and pump the output frames into an OpenGL ES texture. This will be the video ...
2
votes
1answer
1k views
OpenGL Texture from CALayer (AVPlayerLayer)
I have an AVPlayerLayer which I would like to create an OpenGL Texture out of. I'm comfortable with opengl textures, and even comfortable with converting a CGImageRef into an opengl texture. It seems ...
2
votes
1answer
541 views
how to control orientation of video assembled with AVMutableComposition
I am assembling a bunch of video clips filmed on the iPhone in portrait mode. To assemble them I am taking straightforward approach as follows:
AVURLAsset to get hold of the different videos then ...
2
votes
2answers
2k views
Problem in writing metadata to image
I am using AvFoundation to take still image and adding gps info to metadata and saving to a photo album using Asset library but gps info is not saving at all.
here is my code...
...
1
vote
0answers
145 views
requestMediaDataWhenReadyOnQueue:usingBlock: creates more than one block in parallel -> crashes
I am trying to append CGPixelBufferRefs to an AVAssetWriterInput to create a QuickTime movie.
I'm using the following code:
BOOL __block shouldContinue = YES;
[self.assetWriterInput ...
1
vote
0answers
231 views
Open camera roll on an exact photo
I'm developing a camera application where I'd like to put some functions that are already present in the stock app. My problem is replicating the little square in the bottom left corner (in portrait ...
1
vote
1answer
107 views
Playing song through MPMusicPlayerController and using AVCaptureSession at the same time
I have a problem where I have setup an AVCaptureSession with an audio and video input and a capture preview layer. All works great until I try to play a song using MPMusicPlayerController, this ...
1
vote
2answers
468 views
Detect a blow into the microphone
For a project of mine I need to detect when the user blows into the mic. I've following this tutorial: http://www.mobileorchard.com/tutorial-detecting-when-a-user-blows-into-the-mic/ and this ...
1
vote
1answer
212 views
Why is playing audio through AV Foundation blocking the UI on a slow connection?
I'm using AV Foundation to play an MP3 file loaded over the network, with code that is almost identical to the playback example here: Putting it all Together: Playing a Video File Using AVPlayerLayer, ...
1
vote
2answers
113 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
352 views
Using AVAudioRecorder and AVAudioPlayer at the same time (or alternative ways of listening for sound and playing sound)
Is there any reason why this wouldn't work?
I'm testing for sound in the microphone and playing a looping sound effect as I'm registering sound.
On the iPod touch this seems to work fine - on the ...
1
vote
2answers
1k views
AVAssetWriterInput
I am trying to take the camera input and write the data to disk using avassetwriter. From the delegate, it simply appears that avassetwriterinputpixelbufferadator is failing to append data. I'm not ...
1
vote
1answer
168 views
Cannot add category to AVAudioPlayer
I'm trying to add a category to AVAudioPlayer but I keep getting the error "Cannot find interface declaration for 'AVAudioPlayer'".
AVAudioPlayer+Fade.h
#import <AVFoundation/AVFoundation.h>
...
1
vote
1answer
2k views
Cross-fade within AVMutableVideoComposition
I have successfully composed an AVMutableComposition with multiple video clips and can view it and export it, and I would like to be able to transition between them using a cross-fade, so I want to ...
1
vote
0answers
253 views
How to export file with AVAssetExportPresetPassthough flag in the exportSession?
I want to use the AVAssetExportSession class to export the file from ipod library to application temp.
AVAssetExportSession *exporter = [[AVAssetExportSession alloc]
...
1
vote
1answer
2k views
Why don't the WWDC 2010 video capture samples work in the Simulator?
I downloaded the latest video capture samples from WWDC 2010 and am trying to run them in my simulator.
Samples in general are supposed to run without any tinkering so I just unzipped a bunch of them ...
1
vote
2answers
2k views
IOS4: AVFoundation: how to get raw footage from a movie
How can i access the raw footage from movies taken with my camera, so i can edit or transform the raw footage ( eg: make it black/white ).
I know that you can load a mov with AVAsset
make a ...
1
vote
1answer
3k views
Emulating the camera apps 'tap to focus'
I am trying hard to emulate the basic functionality of the built in camera app. Thus far I have become stuck on the 'tap to focus' feature.
I have a UIView from which I am collecting UITouch events ...
0
votes
0answers
6 views
audioSession.inputIsAvailable = NO in 2nd Generation iPod Touch 4.2.1
I'm trying to record the voice of the user using AVAudioRecorder class.
First of all I set the AudioSession
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
NSError *error;
if ...
0
votes
1answer
26 views
App compiling but not working in a 2nd generation iPod Touch (4.2.1)
I'm working on an app which works fine in an iPhone4. I'm trying to run it in a 2nd generation iPod Touch, but doesn't work, xCode shows a message of "Finished running appName on iPodTouch2" after ...
0
votes
1answer
57 views
having issue in playing video using AVFoundation framework
I am getting frame buffer one by one from video file using AVAssetReader and doing some operation on the frame and then saving new frame to temp file using AVAssetWritter.Now I have temp file path ...
0
votes
1answer
74 views
AVAssetReader samplerate
How do I calculate the samplerate of a song obtained from the iPod Library using AVAssetReader. I think I can pretty easily get the amount of samples, ( I am already successfully reading the samples ...
0
votes
1answer
63 views
Accessing your iPod library
I would like to access the file representing the song in your ipod library, so I can perform some calculations. Is there actually way of doing that as it seems I am not allowed to access the file when ...
0
votes
1answer
62 views
MediaPlayer or AVFoundation stop working eventually
I have a strange problem with MediaPlayer or AVFoundation. At some random point in the app, it stops working. With MPMoviePlayerViewController for instance it is automatically dismissed without ...
0
votes
0answers
132 views
Supported Audio Codecs on iPhone: MP4 and HE AAC?
I'm stumped as to why this file doesn't stream on iOS devices:
http://www.cosmicsoft.net/RB/song.mp4
Try opening it in Safari on your iOS device. You'll get a "File format not supported" error, or a ...
0
votes
2answers
183 views
Reopening AVCaptureSession
I have an application which takes some pictures.
My whole application is based on the AVCam sample code from WWDC 2010.
I've messed with it a lot and yet, up until now I can't figure out how to ...
0
votes
0answers
72 views
How can i record a video and lay some UILabel over it?
i want to record a Video the AVFoundation framework.
The Video and the Label is displayed correct, but i want to save the video with this label. How can i achieve this?
AVCaptureDeviceInput ...
0
votes
2answers
87 views
Obj-C, why should I use the Avfoundation?
I've got some problems IN MY APP, some people don't hear sound. I'm using mp3 files and the Audiotoolbox library.
Can someone if I should use the avfoundation or whether the audiotoolbox library is ...
0
votes
1answer
120 views
How to let AVPlayer play multiple items?
I'm trying to play multiple mp3's with AVPlayer. I fetch URLs of the mp3's and then let AVPlayerplays them one by one.
My first attempt is letting a single AVPlayerplays all the mp3's with ...
0
votes
1answer
117 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
0answers
128 views
AVFoundation: getting frame count
Say we have:
AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:url options:options];
[asset loadValuesAsynchronouslyForKeys:[NSArray arrayWithObject:@"tracks"] completionHandler:^{
...
0
votes
0answers
211 views
ERROR :exportAsynchronouslyWithCompletionHandler more than once. Resume exportation in avfoundation
Hi i'm developing an iphone application that creates an AVAssetExportSession object to save and create a video file. All is ok,(the file is created and correctly saved in the documents folder) except ...
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
71 views
Is there a way to distinguish between a live stream and an on-demand file stream with AVPlayer?
I'm trying to create a more generic media controller for several types of streaming media and want to adapt the UI to the type of stream;
When it's an on-demand file stream (i.e. a single MP3 file ...
0
votes
1answer
528 views
Get raw data stream from AVFoundation Capture Session
I need to get the data stream from an AVCaptureSession in a semi-live streaming type of way. In my experience with AVFoundation, I can only write the file to disk and then read it out.
Is there a ...
0
votes
1answer
209 views
What does AVErrorMediaServicesWereReset mean?
I'm currently writing a custom video player using AVPlayer. The video plays fine and works in 99% of cases. But when seeking, I occasionally run into an error. My AVPlayerItem's status changes to ...
0
votes
1answer
57 views
playing sound with reference of images
As mentioned in the question I have added few images and a sound file to the resource folder. Image navigation is working fine with next and previous button. Now I need to play sound that is ...