简体   繁体   English

前置摄像头录像iPhone 4?

[英]Front Camera Video Recording iPhone 4?

i am trying to record a video from front camera of iPhone 4 using AVFoundation Framework with the help of WWDC samples i got from iPhone developer program. 我试图使用AVFoundation Framework从iPhone 4前置摄像头录制视频,借助我从iPhone开发人员计划获得的WWDC示例。 But i still cant get it to work..the video does not get recorded or mayb saved in my iPhone library...here's the code i am trying to use...it would b really helpful if someone culd help me with the problem i am having?? 但我仍然无法让它工作..视频没有被记录或mayb保存在我的iPhone库...这里是我试图使用的代码...如果有人帮助我解决这个问题会非常有用我有??

-(void)recordVideo
{

AVCaptureDeviceInput *videoInput = [[AVCaptureDeviceInput alloc] initWithDevice:[self backFacingCamera] error:nil];

AVCaptureMovieFileOutput *movieFileOutput = [[AVCaptureMovieFileOutput alloc] init];

AVCaptureSession *session = [[AVCaptureSession alloc] init];

[session addInput:videoInput];

[session addOutput:movieFileOutput];

[movieFileOutput release];  


if (![session isRunning])
 {
 [self performSelector:@selector(startRecording) withObject:nil afterDelay:1.0];
 [session startRunning];

 }

}

- (void) startRecording
{
    NSLog(@"start recording");


AVCaptureConnection *videoConnection = [playVideo connectionWithMediaType:AVMediaTypeVideo fromConnections:[[self movieFileOutput] connections]];
if ([videoConnection isVideoOrientationSupported]) {
    [videoConnection setVideoOrientation:[self orientation]]; 
}

[[self movieFileOutput] startRecordingToOutputFileURL:[self tempFileURL]
                                    recordingDelegate:self];
}
- (void) stopRecording
{
    NSLog(@"stop recording");

    [[self movieFileOutput] stopRecording];
}
- (NSURL *) tempFileURL
{
    NSLog(@"temp file url");
    NSString *outputPath = [[NSString alloc] initWithFormat:@"%@%@", NSTemporaryDirectory(), @"output.mov"];
    NSURL *outputURL = [[NSURL alloc] initFileURLWithPath:outputPath];
    NSFileManager *fileManager = [NSFileManager defaultManager];
    if ([fileManager fileExistsAtPath:outputPath]) {
    NSLog(@"exists");
    }
    [outputPath release];
    return [outputURL autorelease];
}
- (void) setConnectionWithMediaType:(NSString *)mediaType enabled:(BOOL)enabled;
{

    [[playVideo connectionWithMediaType:AVMediaTypeVideo fromConnections:[[self movieFileOutput] connections]] setEnabled:enabled];
}

+ (AVCaptureConnection *)connectionWithMediaType:(NSString *)mediaType fromConnections:(NSArray *)connections;
{
    NSLog(@"connection with media type");
    for ( AVCaptureConnection *connection in connections ) {
        for ( AVCaptureInputPort *port in [connection inputPorts] ) {
            if ( [[port mediaType] isEqual:mediaType] ) {
                return [[connection retain] autorelease];
            }
        }
    }
    return nil;
}
@implementation recordVideo (Internal)

- (AVCaptureDevice *) cameraWithPosition:(AVCaptureDevicePosition) position
{
    NSArray *devices = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo];
    for (AVCaptureDevice *device in devices) {
        if ([device position] == position) {
            return device;
        }
    }
    return nil;
}
- (AVCaptureDevice *) backFacingCamera
{
    NSLog(@"back");
    return [self cameraWithPosition:AVCaptureDevicePositionBack];
}
- (AVCaptureDevice *) frontFacingCamera
{
    NSLog(@"front ");
    return [self cameraWithPosition:AVCaptureDevicePositionFront];
}

@end
@implementation recordVideo (AVCaptureFileOutputRecordingDelegate)

- (void)             captureOutput:(AVCaptureFileOutput *)captureOutput
didStartRecordingToOutputFileAtURL:(NSURL *)fileURL
                   fromConnections:(NSArray *)connections
{
    NSLog(@"did start recording");

}

- (void)              captureOutput:(AVCaptureFileOutput *)captureOutput
didFinishRecordingToOutputFileAtURL:(NSURL *)outputFileURL
                    fromConnections:(NSArray *)connections
                              error:(NSError *)error
{
    NSLog(@"did finish recording output file");


    ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];

    if ([library videoAtPathIsCompatibleWithSavedPhotosAlbum:outputFileURL])
    {
        [library writeVideoAtPathToSavedPhotosAlbum:outputFileURL
                                    completionBlock:^(NSURL *assetURL, NSError *error){
                                        if (error && [delegate respondsToSelector:@selector(assetLibraryError:forURL:)]) {
                                            [delegate assetLibraryError:error forURL:assetURL];
                                        }
                                    }];
    } 
    else {

        }

    [library release];    


}
@end
  1. You are throwing away the errors - how can you debug if you do that? 你丢掉了错误 - 如果你这样做,你怎么调试?

  2. You need to be more specific in what is / is not happening. 您需要更具体地了解/未发生的事情。 Which methods are called? 叫哪种方法? What errors are reported by the SDK (if any)? SDK报告了哪些错误(如果有的话)? etc... 等等...

you have released reference to movieFileOutput in -(void)recordVideo; 你已经发布了对movieFileOutput的引用 - (void)recordVideo; and you are still using released movieFileOutput in - (void) startRecording as well as other functions.You better not release object that you are using. 并且您仍然在 - (void)startRecording以及其他函数中使用已发布的movieFileOutput。您最好不要释放您正在使用的对象。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM