Questions tagged [avcapturemoviefileoutput]
70 questions
0
votes
1 answer
Rotating videos in SDAVAssetExportSession
I currently use SDAVAssetExportSession to join videos together and apply fades between the transitions.
However, when I record a video with the front-facing camera, SDAVAssetExportSession does not take the rotation (180 degrees) of the front-facing…

skeg0
- 95
- 2
- 10
0
votes
1 answer
AVPlayer won't play MovieFile
I use AVCaptureMovieFileOutput to capture a video file.
- (void)takeVideoAction:(id)sender {
NSString *outputPath = [NSTemporaryDirectory() stringByAppendingPathComponent:@"output.mp4"];
NSFileManager *manager = [[NSFileManager alloc]…

Peter
- 1,053
- 13
- 29
0
votes
3 answers
View Controller Doesn't Conform To Protocol AVCaptureFileOutputRecordingDelegate
I'm trying to make a camera that can record video, and I need AVCaptureFileOutputRecordingDelegate to make it work but for somer reason it's saying...
Type 'ViewController' does not conform to protocol 'AVCaptureFileOutputRecordingDelegate'.
I…

John Doe
- 1,609
- 2
- 13
- 22
0
votes
1 answer
I am unable to save an AVFoundation video to a local url
I'm a new to programming and Objective-C (~6 weeks) and now I'm working with AVFoundation for the first time. My goal is a stretch for my level, but shouldn't be too difficult for someone familiar with the framework.
My goal is to create a…

John McClelland
- 62
- 1
- 8
0
votes
1 answer
SampleBufferDelegate is not Working
For some odd reason AVCaptureVideoDataOutputSampleBufferDelegate isn't triggering. I've added the delegate and everything, i'm not sure why it isn't being ran in my code. Can anybody help me figure out why?
Delegates in my .h
@class AVPlayer;
@class…

Markinson
- 857
- 1
- 7
- 13
0
votes
1 answer
Video recording fails on iPhone, but works on iPod Touch and iPad
Here's the scenario: If I perform both video recording and video editing operations simultaneously (asynchronously), one of the two operations fail. The same piece of code works flawlessly on an iPod Touch, but fails on iPhone.
// Method that starts…

Mustafa
- 20,504
- 42
- 146
- 209
0
votes
1 answer
Pause/Resume Video Recording like Instagram
I try to get some help. I would like to Pause/Resume a video recording on iOS. But it's very complicated. My goal is to get something like in the app of Instagram App (when you press it 's recording).
I find the "CapturePause" app example but it's…

xeonarno
- 426
- 6
- 17
0
votes
1 answer
How to save a movie from AVCapture
I've been trying to figure out AVCapture the last couple of days and am struggling to save a video. My understanding is that you call [movieFileOutput startRecordingToOutputFileURL:outputURL recordingDelegate:self]; and then at a later time you can…

Chase Roberts
- 9,082
- 13
- 73
- 131
0
votes
1 answer
Difference in time recorded using AVCaptureMovieFileOutput
I have recorded a movie file using AVCaptureMovieFileOutput by setting maximum duration limit.
For e.g.: If I want to record 10 seconds video, I had set the max duration and other properties for the movie file like below...
Float64…

Newbee
- 3,231
- 7
- 42
- 74
-1
votes
2 answers
Set the Video Codec to H.264 when using an AVCaptureMovieFileOutput instance? Xamarin
Need help setting the video codec to H.264 when using an AVCaptureMovieFileOutput instance.
Looking at the Apple Docs I see that they support a struct of type AVVideoCodecType, however, I'm not seeing this in the Xamarin.iOS Docs.
Help would be much…

KING
- 938
- 8
- 26