Tôi đã cài đặt ứng dụng của mình để quay video từ máy ảnh bằng AVCaptureSession, tuy nhiên, không có âm thanh với nó. Tôi cần phải làm gì để ghi lại âm thanh và sau đó thêm nó vào videoOutput cho tệp? Đây là mã của tôi để quay video:AVCaptureSession Ghi lại Video Với Âm thanh
AVCaptureSession *session = [[AVCaptureSession alloc] init];
[session beginConfiguration];
session.sessionPreset = AVCaptureSessionPresetMedium;
CALayer *viewLayer = self.vImagePreview.layer;
NSLog(@"viewLayer = %@", viewLayer);
AVCaptureVideoPreviewLayer *captureVideoPreviewLayer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:session];
captureVideoPreviewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;
captureVideoPreviewLayer.frame = self.vImagePreview.bounds;
[self.vImagePreview.layer addSublayer:captureVideoPreviewLayer];
AVCaptureDevice *device = [self frontFacingCameraIfAvailable];
NSError *error = nil;
AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device error:&error];
if (!input) {
// Handle the error appropriately.
NSLog(@"ERROR: trying to open camera: %@", error);
}
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectoryPath = [paths objectAtIndex:0];
AVCaptureMovieFileOutput *movieFileOutput = [[AVCaptureMovieFileOutput alloc] init];
NSString *archives = [documentsDirectoryPath stringByAppendingPathComponent:@"archives"];
NSString *outputpathofmovie = [[archives stringByAppendingPathComponent:@"Test"] stringByAppendingString:@".mp4"];
NSURL *outputURL = [[NSURL alloc] initFileURLWithPath:outputpathofmovie];
[session addInput:input];
[session addOutput:movieFileOutput];
[session commitConfiguration];
[session startRunning];
[movieFileOutput startRecordingToOutputFileURL:outputURL recordingDelegate:self];
Tôi đã thêm đầu vào khác cho âm thanh, nhưng nó sẽ không hoạt động với mpmovieplayercontroller ở chế độ nền. Có bất kỳ suy nghĩ nào về một thứ có thể phát một video và đồng thời ghi lại âm thanh và video từ máy ảnh không?
@MDT vì vậy những gì tôi phải làm gì? Nếu bạn định dành thời gian để đăng một liên kết, tại sao không làm cho nó một liên kết đến những gì bạn nghĩ sẽ giúp tôi? – user717452
Xem thêm đoạn cuối để chỉnh sửa – user717452