如何在不保存的情况下在屏幕上显示从iPhone相机拍摄的视频?

时间:2013-08-27 14:57:31

标签: iphone ios video avfoundation

我是iOS和多媒体开发的新手,我正试图从iPhone的相机中捕捉视频,并将其显示在屏幕上而不将其保存在内存中。

到目前为止,我已经借助我上网的示例代码编写了以下代码:

标题文件:

//  ViewController.h

#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
@class AVCamCaptureManager, AVCamPreviewView, AVCaptureVideoPreviewLayer;
@interface ViewController : UIViewController <UIImagePickerControllerDelegate>

@property (weak, nonatomic) IBOutlet UIView *previewView;

- (IBAction)StartCapture:(id)sender;
- (void)setCaptureSession;
@end

实施文件

//  ViewController.m

#import "ViewController.h"

@interface ViewController ()

@property (nonatomic, strong) AVCaptureSession *captureSession;
@property (nonatomic, strong) AVCaptureMovieFileOutput *captureOutput;
@property (nonatomic, weak) AVCaptureDeviceInput *activeVideoInput;
@property (nonatomic, strong) AVCaptureVideoPreviewLayer *previewLayer;

@end

@implementation ViewController 

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning 
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
- (IBAction)StartCapture:(id)sender
{
if ([sender isSelected])
{
    [sender setSelected:NO];
    [self.captureOutput stopRecording];

}
else
{
[sender setSelected:YES];

if (!self.captureOutput)
    {
    self.captureOutput = [[AVCaptureMovieFileOutput alloc] init];
    [self.captureSession addOutput:self.captureOutput];
}
    [self.captureSession startRunning];
}
}

- (void)setCaptureSession
{
self.captureSession = [[AVCaptureSession alloc] init];
NSError *error;

// Set up hardware devices
AVCaptureDevice *videoDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
if (videoDevice)
{
    AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:videoDevice error:&error];
    if (input)
    {
        [self.captureSession addInput:input];
        self.activeVideoInput = input;
    }
}
AVCaptureDevice *audioDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeAudio];
if (audioDevice) {
    AVCaptureDeviceInput *audioInput = [AVCaptureDeviceInput deviceInputWithDevice:audioDevice error:&error];
    if (audioInput) {
        [self.captureSession addInput:audioInput];
    }
}

// Start running session so preview is available
[self.captureSession startRunning];

// Set up preview layer
dispatch_async(dispatch_get_main_queue(), ^{
    self.previewLayer = [AVCaptureVideoPreviewLayer layerWithSession:self.captureSession];
    self.previewLayer.frame = self.previewView.bounds;
    self.previewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;

    //[[self.previewLayer connection] setVideoOrientation:[self currentVideoOrientation]];
    [self.previewView.layer addSublayer:self.previewLayer];
});
}

// Re-enable capture session if not running currently 
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
if (![self.captureSession isRunning])
{
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        [self.captureSession startRunning];
    });
}
}

// Stop running capture session when this view disappears
- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
if ([self.captureSession isRunning])
{
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        [self.captureSession stopRunning];
    });
}
}
@end

请告诉我我应该在IBAction方法中写什么(按下捕获视频按钮时会调用它)以及如何使用AVCaptureVideoPreviewLayer使捕获的视频显示在屏幕上。

感谢。

2 个答案:

答案 0 :(得分:3)

我找到了我所缺少的东西。这样做对我来说真是太愚蠢了。我根本没有调用函数setCapture。因此,屏幕上看不到任何内容。

我刚刚在viewDidLoad函数中调用setCapture并解决了问题。

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    [self setCaptureSession];
}

当手机的方向改变时,视频仍然存在问题,我将不得不处理,但现在屏幕上可以看到相机拍摄的任何内容。

答案 1 :(得分:0)

你想要一个AVCapturePreviewLayer。

https://developer.apple.com/library/ios/documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/04_MediaCapture.html#//apple_ref/doc/uid/TP40010188-CH5-SW22

至于在IBAction方法中写什么,这取决于你希望你的应用程序如何表现。如果您希望它与捕获会话和预览运行一起加载,您实际上并不需要按钮。如果您通过按钮开始捕获会话,只需将PreviewLayer代码放在相同的方法中(在您进行捕获会话之后)。