-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathVideoCameraInputManager.m
More file actions
598 lines (487 loc) · 20.4 KB
/
VideoCameraInputManager.m
File metadata and controls
598 lines (487 loc) · 20.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
//
// Copyright (c) 2013 Carson McDonald
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
// documentation files (the "Software"), to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
// and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or substantial portions
// of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
// TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
// CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
#import "VideoCameraInputManager.h"
#import "AVAssetStitcher.h"
#import <MobileCoreServices/UTCoreTypes.h>
@interface VideoCameraInputManager ()
@property (nonatomic, strong) NSMutableDictionary *segmentFileDict;
- (void)startNotificationObservers;
- (void)endNotificationObservers;
- (AVCaptureDevice *) cameraWithPosition:(AVCaptureDevicePosition) position;
- (AVCaptureDevice *) audioDevice;
- (AVCaptureConnection *)connectionWithMediaType:(NSString *)mediaType fromConnections:(NSArray *)connections;
- (NSString *)constructCurrentTemporaryFilename;
- (void)cleanTemporaryFiles;
@end
@implementation VideoCameraInputManager
{
bool setupComplete;
AVCaptureDeviceInput *videoInput;
AVCaptureDeviceInput *audioInput;
AVCaptureMovieFileOutput *movieFileOutput;
AVCaptureVideoOrientation orientation;
id deviceConnectedObserver;
id deviceDisconnectedObserver;
id deviceOrientationDidChangeObserver;
NSMutableArray *temporaryFileURLs;
long uniqueTimestamp;
int currentRecordingSegment;
CMTime currentFinalDurration;
int inFlightWrites;
}
- (id)init
{
self = [super init];
if (self != nil)
{
setupComplete = NO;
temporaryFileURLs = [[NSMutableArray alloc] init];
currentRecordingSegment = 0;
_isPaused = NO;
_maxDuration = 0;
inFlightWrites = 0;
movieFileOutput = [[AVCaptureMovieFileOutput alloc] init];
self.segmentFileDict = [[NSMutableDictionary alloc] init];
[self startNotificationObservers];
}
return self;
}
- (void)dealloc
{
NSLog(@"Video Camera Input Manager dealloc");
[_captureSession removeOutput:movieFileOutput];
[self endNotificationObservers];
}
- (void)setupSessionWithPreset:(NSString *)preset withCaptureDevice:(AVCaptureDevicePosition)cd withTorchMode:(AVCaptureTorchMode)tm withError:(NSError **)error
{
[self cleanTemporaryFiles];
if(setupComplete)
{
*error = [NSError errorWithDomain:@"Setup session already complete." code:102 userInfo:nil];
return;
}
setupComplete = YES;
AVCaptureDevice *captureDevice = [self cameraWithPosition:cd];
if ([captureDevice hasTorch])
{
if ([captureDevice lockForConfiguration:nil])
{
if ([captureDevice isTorchModeSupported:tm])
{
[captureDevice setTorchMode:AVCaptureTorchModeOff];
}
[captureDevice unlockForConfiguration];
}
}
_captureSession = [[AVCaptureSession alloc] init];
_captureSession.sessionPreset = preset;
videoInput = [[AVCaptureDeviceInput alloc] initWithDevice:captureDevice error:nil];
if([_captureSession canAddInput:videoInput])
{
[_captureSession addInput:videoInput];
}
else
{
*error = [NSError errorWithDomain:@"Error setting video input." code:101 userInfo:nil];
return;
}
audioInput = [[AVCaptureDeviceInput alloc] initWithDevice:[self audioDevice] error:nil];
if([_captureSession canAddInput:audioInput])
{
[_captureSession addInput:audioInput];
}
else
{
*error = [NSError errorWithDomain:@"Error setting audio input." code:101 userInfo:nil];
return;
}
if([_captureSession canAddOutput:movieFileOutput])
{
[_captureSession addOutput:movieFileOutput];
}
else
{
*error = [NSError errorWithDomain:@"Error setting file output." code:101 userInfo:nil];
return;
}
}
- (void)startRecording
{
uniqueTimestamp = [[NSDate date] timeIntervalSince1970];
currentRecordingSegment = 0;
_isPaused = NO;
currentFinalDurration = kCMTimeZero;
AVCaptureConnection *videoConnection = [self connectionWithMediaType:AVMediaTypeVideo fromConnections:movieFileOutput.connections];
if ([videoConnection isVideoOrientationSupported])
{
videoConnection.videoOrientation = orientation;
}
NSString *filePath = [self constructCurrentTemporaryFilename];
[self.segmentFileDict setObject:@(0) forKey:filePath];
movieFileOutput.maxRecordedDuration = (_maxDuration > 0) ? CMTimeMakeWithSeconds(_maxDuration, 600) : kCMTimeInvalid;
[movieFileOutput startRecordingToOutputFileURL:[NSURL fileURLWithPath:filePath] recordingDelegate:self];
}
- (void)pauseRecording
{
_isPaused = YES;
[movieFileOutput stopRecording];
currentFinalDurration = CMTimeAdd(currentFinalDurration, movieFileOutput.recordedDuration);
}
- (void)resumeRecording
{
_isPaused = NO;
currentRecordingSegment++;
NSString *filePath = [self constructCurrentTemporaryFilename];
[self.segmentFileDict setObject:@(0) forKey:filePath];
movieFileOutput.maxRecordedDuration = (_maxDuration > 0) ? CMTimeSubtract(CMTimeMakeWithSeconds(_maxDuration, 600), currentFinalDurration) : kCMTimeInvalid;
[movieFileOutput startRecordingToOutputFileURL:[NSURL fileURLWithPath:filePath] recordingDelegate:self];
}
- (void)reset
{
[self pauseRecording];
_isPaused = NO;
[_captureSession stopRunning];
}
- (void)reverseCamera {
NSArray *inputs = self.captureSession.inputs;
for ( AVCaptureDeviceInput *input in inputs ) {
AVCaptureDevice *device = input.device;
if ([device hasMediaType:AVMediaTypeVideo]) {
AVCaptureDevicePosition position = device.position;
AVCaptureDevice *newCamera = nil;
AVCaptureDeviceInput *newInput = nil;
if (position == AVCaptureDevicePositionFront) {
newCamera = [self cameraWithPosition:AVCaptureDevicePositionBack];
}
else {
newCamera = [self cameraWithPosition:AVCaptureDevicePositionFront];
}
newInput = [AVCaptureDeviceInput deviceInputWithDevice:newCamera error:nil];
// beginConfiguration ensures that pending changes are not applied immediately
[self.captureSession beginConfiguration];
[self.captureSession removeInput:input];
[self.captureSession addInput:newInput];
// Changes take effect once the outermost commitConfiguration is invoked.
[self.captureSession commitConfiguration];
break;
}
}
}
- (void)finalizeRecordingToFile:(NSURL *)finalVideoLocationURL withVideoSize:(CGSize)videoSize withPreset:(NSString *)preset withCompletionHandler:(void (^)(NSError *error))completionHandler
{
[self reset];
NSError *error;
if([finalVideoLocationURL checkResourceIsReachableAndReturnError:&error])
{
[[NSFileManager defaultManager] removeItemAtURL:finalVideoLocationURL error:nil];
}
//----------filter the failed files---------
[temporaryFileURLs removeAllObjects];
NSArray *keys = [self.segmentFileDict allKeys];
NSArray *sortedArray = [keys sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2) {
return [obj1 compare:obj2 options:NSNumericSearch];
}];
for (NSString *filePath in sortedArray) {
NSInteger fileValue = [self.segmentFileDict[filePath] integerValue];
if (fileValue == 0) {
NSLog(@"[0]not start and stop! filePath=%@", filePath);
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) {
[[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
}
}
else if (fileValue == 1) {
NSLog(@"[1]started but not stop! filePath=%@", filePath);
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) {
[[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
}
}
else if (fileValue == 2) {
NSLog(@"[2]stoped but not start! filePath=%@", filePath);
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) {
[[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
}
}
else if (fileValue == 3) {
NSLog(@"[3]OK start and stop success!!! filePath=%@", filePath);
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) {
CGFloat fileSize = [self getFileSize:filePath];//KB
if (fileSize <= 10.0f) {
[[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
}
else {
[temporaryFileURLs addObject:[NSURL fileURLWithPath:filePath]];
}
}
}
else {
NSLog(@"[%d]other error! filepath=%@", fileValue, filePath);
if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) {
[[NSFileManager defaultManager] removeItemAtPath:filePath error:nil];
}
}
}
//------------------------------------------
if ([temporaryFileURLs count] == 0) {
NSError *error1 = [NSError errorWithDomain:@"have no files!" code:108 userInfo:nil];
completionHandler(error1);
return;
}
AVAssetStitcher *stitcher = [[AVAssetStitcher alloc] initWithOutputSize:videoSize];
__block NSError *stitcherError;
[temporaryFileURLs enumerateObjectsWithOptions:NSEnumerationReverse usingBlock:^(NSURL *outputFileURL, NSUInteger idx, BOOL *stop) {
[stitcher addAsset:[AVURLAsset assetWithURL:outputFileURL] withTransform:^CGAffineTransform(AVAssetTrack *videoTrack) {
//
// The following transform is applied to each video track. It changes the size of the
// video so it fits within the output size and stays at the correct aspect ratio.
//
CGFloat ratioW = videoSize.width / videoTrack.naturalSize.width;
CGFloat ratioH = videoSize.height / videoTrack.naturalSize.height;
if(ratioW < ratioH)
{
// When the ratios are larger than one, we must flip the translation.
float neg = (ratioH > 1.0) ? 1.0 : -1.0;
CGFloat diffH = videoTrack.naturalSize.height - (videoTrack.naturalSize.height * ratioH);
return CGAffineTransformConcat( CGAffineTransformMakeTranslation(0, neg*diffH/2.0), CGAffineTransformMakeScale(ratioH, ratioH) );
}
else
{
// When the ratios are larger than one, we must flip the translation.
float neg = (ratioW > 1.0) ? 1.0 : -1.0;
CGFloat diffW = videoTrack.naturalSize.width - (videoTrack.naturalSize.width * ratioW);
return CGAffineTransformConcat( CGAffineTransformMakeTranslation(neg*diffW/2.0, 0), CGAffineTransformMakeScale(ratioW, ratioW) );
}
} withErrorHandler:^(NSError *error) {
stitcherError = error;
}];
}];
if(stitcherError)
{
completionHandler(stitcherError);
return;
}
[stitcher exportTo:finalVideoLocationURL withPreset:preset withCompletionHandler:^(NSError *error) {
if(error)
{
completionHandler(error);
}
else
{
completionHandler(nil);
}
[self cleanTemporaryFiles];
}];
}
- (CGFloat)getFileSize:(NSString *)filePath{
if ( ! [[NSFileManager defaultManager] fileExistsAtPath:filePath]) {
return 0;
}
NSError *error=nil;
NSDictionary * fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:filePath error:&error];
if (fileAttributes == nil || error!=nil) {
return 0;
}
long long fileSizeByte = [fileAttributes fileSize];
return fileSizeByte / 1024.0f;
}
- (CMTime)totalRecordingDuration
{
if(CMTimeCompare(kCMTimeZero, currentFinalDurration) == 0)
{
return movieFileOutput.recordedDuration;
}
else
{
CMTime returnTime = CMTimeAdd(currentFinalDurration, movieFileOutput.recordedDuration);
return CMTIME_IS_INVALID(returnTime) ? currentFinalDurration : returnTime;
}
}
#pragma mark - AVCaptureFileOutputRecordingDelegate implementation
- (void)captureOutput:(AVCaptureFileOutput *)captureOutput didStartRecordingToOutputFileAtURL:(NSURL *)fileURL fromConnections:(NSArray *)connections
{
NSInteger value = [[self.segmentFileDict objectForKey:[fileURL path]] integerValue];
value += 1;
self.segmentFileDict[[fileURL path]] = @(value);
}
- (void)captureOutput:(AVCaptureFileOutput *)captureOutput didFinishRecordingToOutputFileAtURL:(NSURL *)fileURL fromConnections:(NSArray *)connections error:(NSError *)error
{
NSInteger value = [[self.segmentFileDict objectForKey:[fileURL path]] integerValue];
value += 2;
self.segmentFileDict[[fileURL path]] = @(value);
if(error)
{
if(self.asyncErrorHandler)
{
self.asyncErrorHandler(error);
}
else
{
NSLog(@"Error capturing output: %@", error);
}
}
}
#pragma mark - Observer start and stop
- (void)startNotificationObservers
{
NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
//
// Reconnect to a device that was previously being used
//
deviceConnectedObserver = [notificationCenter addObserverForName:AVCaptureDeviceWasConnectedNotification object:nil queue:nil usingBlock:^(NSNotification *notification) {
AVCaptureDevice *device = [notification object];
NSString *deviceMediaType = nil;
if ([device hasMediaType:AVMediaTypeAudio])
{
deviceMediaType = AVMediaTypeAudio;
}
else if ([device hasMediaType:AVMediaTypeVideo])
{
deviceMediaType = AVMediaTypeVideo;
}
if (deviceMediaType != nil)
{
[_captureSession.inputs enumerateObjectsUsingBlock:^(AVCaptureDeviceInput *input, NSUInteger idx, BOOL *stop) {
if ([input.device hasMediaType:deviceMediaType])
{
NSError *error;
AVCaptureDeviceInput *deviceInput = [AVCaptureDeviceInput deviceInputWithDevice:device error:&error];
if ([_captureSession canAddInput:deviceInput])
{
[_captureSession addInput:deviceInput];
}
if(error)
{
if(self.asyncErrorHandler)
{
self.asyncErrorHandler(error);
}
else
{
NSLog(@"Error reconnecting device input: %@", error);
}
}
*stop = YES;
}
}];
}
}];
//
// Disable inputs from removed devices that are being used
//
deviceDisconnectedObserver = [notificationCenter addObserverForName:AVCaptureDeviceWasDisconnectedNotification object:nil queue:nil usingBlock:^(NSNotification *notification) {
AVCaptureDevice *device = [notification object];
if ([device hasMediaType:AVMediaTypeAudio])
{
[_captureSession removeInput:audioInput];
audioInput = nil;
}
else if ([device hasMediaType:AVMediaTypeVideo])
{
[_captureSession removeInput:videoInput];
videoInput = nil;
}
}];
//
// Track orientation changes. Note: This are pushed into the Quicktime video data and needs
// to be used at decoding time to transform the video into the correct orientation.
//
orientation = AVCaptureVideoOrientationPortrait;
deviceOrientationDidChangeObserver = [notificationCenter addObserverForName:UIDeviceOrientationDidChangeNotification object:nil queue:nil usingBlock:^(NSNotification *note) {
switch ([[UIDevice currentDevice] orientation])
{
case UIDeviceOrientationPortrait:
orientation = AVCaptureVideoOrientationPortrait;
break;
case UIDeviceOrientationPortraitUpsideDown:
orientation = AVCaptureVideoOrientationPortraitUpsideDown;
break;
case UIDeviceOrientationLandscapeLeft:
orientation = AVCaptureVideoOrientationLandscapeRight;
break;
case UIDeviceOrientationLandscapeRight:
orientation = AVCaptureVideoOrientationLandscapeLeft;
break;
default:
orientation = AVCaptureVideoOrientationPortrait;
break;
}
}];
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
}
- (void)endNotificationObservers
{
[[UIDevice currentDevice] endGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] removeObserver:deviceConnectedObserver];
[[NSNotificationCenter defaultCenter] removeObserver:deviceDisconnectedObserver];
[[NSNotificationCenter defaultCenter] removeObserver:deviceOrientationDidChangeObserver];
}
#pragma mark - Device finding methods
- (AVCaptureDevice *)cameraWithPosition:(AVCaptureDevicePosition) position
{
__block AVCaptureDevice *foundDevice = nil;
[[AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo] enumerateObjectsUsingBlock:^(AVCaptureDevice *device, NSUInteger idx, BOOL *stop) {
if (device.position == position)
{
foundDevice = device;
*stop = YES;
}
}];
return foundDevice;
}
- (AVCaptureDevice *)audioDevice
{
NSArray *devices = [AVCaptureDevice devicesWithMediaType:AVMediaTypeAudio];
if (devices.count > 0)
{
return devices[0];
}
return nil;
}
#pragma mark - Connection finding method
- (AVCaptureConnection *)connectionWithMediaType:(NSString *)mediaType fromConnections:(NSArray *)connections
{
__block AVCaptureConnection *foundConnection = nil;
[connections enumerateObjectsUsingBlock:^(AVCaptureConnection *connection, NSUInteger idx, BOOL *connectionStop) {
[connection.inputPorts enumerateObjectsUsingBlock:^(AVCaptureInputPort *port, NSUInteger idx, BOOL *portStop) {
if( [port.mediaType isEqual:mediaType] )
{
foundConnection = connection;
*connectionStop = YES;
*portStop = YES;
}
}];
}];
return foundConnection;
}
#pragma mark - Temporary file handling functions
- (NSString *)constructCurrentTemporaryFilename
{
NSString *tempFolderPath = [NSString stringWithFormat:@"%@temprecordfiles",NSTemporaryDirectory()];
if ( ! [[NSFileManager defaultManager] fileExistsAtPath:tempFolderPath]) {
[[NSFileManager defaultManager] createDirectoryAtPath:tempFolderPath withIntermediateDirectories:YES attributes:nil error:NULL];
}
return [NSString stringWithFormat:@"%@/%@-%ld-%d.mov", tempFolderPath, @"recordingsegment", uniqueTimestamp, currentRecordingSegment];
}
- (void)cleanTemporaryFiles
{
NSString *tempFolderPath = [NSString stringWithFormat:@"%@temprecordfiles",NSTemporaryDirectory()];
if ([[NSFileManager defaultManager] fileExistsAtPath:tempFolderPath]) {
[[NSFileManager defaultManager] removeItemAtPath:tempFolderPath error:nil];
}
[temporaryFileURLs removeAllObjects];
}
@end