此篇文章將要引見IOS從零開端學習直播之2.采集的相關引見,詳細實例請看下文
直播的采集由采集的設備(攝像頭、話筒)不同分為視頻采集和音頻采集,本篇文章會辨別引見。
1.采集步驟1.創立捕獲會話(AVCaptureSession),IOS調用相機和話筒之前都需求創立捕獲對話,把輸出輸入設備添加進對話中。 2.往會話中添加視頻輸出對象(AVCaptureDeviceInput)。 3.往會話中添加音頻輸出對象(AVCaptureDeviceInput)。 4.往會話中添加視頻輸入對象(AVCaptureVideoDataOutput)。 5.往會話中添加音頻輸入對象(AVCaptureAudioDataOutput)。 6.添加視屏預覽圖層(AVCaptureVideoPreviewLayer)。 7.開啟會話。 8.推流(當前講)。
2.效果圖// 采集
- (void)setupCaputureVideo {
// 1.創立捕捉對話,必需要強援用,否則會釋放
_captureSession = [[AVCaptureSession alloc] init];
// 2.捕捉攝像頭設備,默許前置攝像頭
AVCaptureDevice *videoDevice = [self getVideoDevice:AVCaptureDevicePositionFront];
// 3.獲取聲響設備
AVCaptureDevice *audioDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeAudio];
// 4.創立對應視頻設備輸出對象
_currentVideoDeviceInput = [AVCaptureDeviceInput deviceInputWithDevice:videoDevice error:nil];
// 5.創立對應音頻設備輸出對象
AVCaptureDeviceInput *audioDeviceInput = [AVCaptureDeviceInput deviceInputWithDevice:audioDevice error:nil];
// 6.添加到會話中 留意:最好要判別能否能添加輸出,會話不能添加空的
// 6.1 添加視頻
if ([_captureSession canAddInput:_currentVideoDeviceInput]) {
[_captureSession addInput:_currentVideoDeviceInput];
}
// 6.2 添加音頻
if ([_captureSession canAddInput:audioDeviceInput]) {
[_captureSession addInput:audioDeviceInput];
}
// 7.捕捉視頻數據輸入設備
AVCaptureVideoDataOutput *videoOutput = [[AVCaptureVideoDataOutput alloc] init];
//7.1 設置代理, 捕捉視頻樣品數據
dispatch_queue_t videoQueue = dispatch_queue_create("Video Capure Queue", DISPATCH_QUEUE_SERIAL);
[videoOutput setSampleBufferDelegate: self queue:videoQueue];
// 8.設置音頻數據輸入設備
AVCaptureAudioDataOutput *audioOutput = [[AVCaptureAudioDataOutput alloc] init];
// 8.1 設置代理,捕捉音頻樣品數據 留意:必需是串行隊列才干捕捉到數據,而且不能為空
dispatch_queue_t audioQueue = dispatch_queue_create("Audio Capure Queue", DISPATCH_QUEUE_SERIAL);
[audioOutput setSampleBufferDelegate:self queue:audioQueue];
// 9.添加到會話中 留意:最好要判別能否能添加輸出,會話不能添加空的
if ([_captureSession canAddOutput:videoOutput]) {
[_captureSession addOutput:videoOutput];
}
if ([_captureSession canAddOutput:audioOutput]) {
[_captureSession addOutput:audioOutput];
}
// 10.獲取視屏輸出與輸入銜接,用於分辨音視頻數據
_videoConnection = [videoOutput connectionWithMediaType:AVMediaTypeVideo];
// 11.添加視屏預覽圖層
_previewdLayer = [AVCaptureVideoPreviewLayer layerWithSession:_captureSession];
_previewdLayer.frame = [UIScreen mainScreen].bounds;
[self.view.layer insertSublayer:_previewdLayer atIndex:0];
// 12.開啟會話
[_captureSession startRunning];
}
// 依據攝像頭方向獲取攝像頭
- (AVCaptureDevice *)getVideoDevice: (AVCaptureDevicePosition)position {
NSArray *devices = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo];
for (AVCaptureDevice *device in devices) {
if (device.position == position) {
return device;
}
}
return nil;
}
剖析: (1)攝像頭:每個手機都有且僅有兩個攝像頭,前置攝像頭和後置攝像頭,包括iPhone 7 Plus,它前面的兩個攝像頭統稱為後置攝像頭。所以獲取的是攝像頭數組,我們依據攝像頭的方向獲取指定的攝像頭。對話裡只能有一個攝像頭設備。 (2)攝像頭方向(AVCaptureDevicePosition):是一個枚舉,有三個值可選擇。不過假如選擇AVCaptureDevicePositionUnspecified,那麼是不能調用攝像頭的。
typedef NS_ENUM(NSInteger, AVCaptureDevicePosition) {
AVCaptureDevicePositionUnspecified = 0, // 不指定
AVCaptureDevicePositionBack = 1, //後置
AVCaptureDevicePositionFront = 2 // 前置
}
(3)代理:AVCaptureVideoDataOutputSampleBufferDelegate, AVCaptureAudioDataOutputSampleBufferDelegate,辨別為視頻和音頻輸入設備對象的代理,兩個代理都有上面的辦法:
// 獲取輸入設備數據,有能夠是音頻,有能夠是視頻
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection {
if (_videoConnection == connection) {
NSLog(@"采集到視屏數據");
}else {
NSLog(@"采集到音頻數據");
}
}
4.切換攝像頭
#pragma mark - 切換攝像頭
- (IBAction)toggleCapture:(id)sender {
// 1.獲取以後設備方向
AVCaptureDevicePosition cureentPosition = _currentVideoDeviceInput.device.position;
// 2.獲取需求改動的方向
AVCaptureDevicePosition togglePosition = (cureentPosition == AVCaptureDevicePositionFront ? AVCaptureDevicePositionBack : AVCaptureDevicePositionFront);
// 3.獲取需求改動的攝像頭設備
AVCaptureDevice *toggleDevice = [self getVideoDevice:togglePosition];
// 4.獲取需求改動的攝像頭輸出設備
AVCaptureDeviceInput *toggleDeviceInput = [[AVCaptureDeviceInput alloc] initWithDevice:toggleDevice error:nil];
// 5.中止會話,否則會有一霎時的白屏
[_captureSession stopRunning];
// 6.移除之前的攝像頭輸出設備,否則會解體,由於會話裡只能有一個攝像頭設備
[_captureSession removeInput:_currentVideoDeviceInput];
// 7.添加新的攝像頭輸出設備
[_captureSession addInput:toggleDeviceInput];
// 8.重新開端會話
[_captureSession startRunning];
// 記載以後攝像頭輸出設備
//9.重新開端
_currentVideoDeviceInput = toggleDeviceInput;
}
demo裡還有其他的功用,但是覺得沒什麼太大用途,就不講了,有興味的可以去我的GitHub上下載看看。
demo下載demo下載地址。下載上去運轉,發現報錯。
那是由於我沒有在工程裡上傳ijkplayer視屏直播框架,我能上傳上去,但下載太慢了,什麼緣由大家都懂得。我把ijkplayer視屏直播框架放到百度雲上了,沒有密碼,下載上去之後,放到LiveAppDemo-master文件夾裡,重新翻開就可以運轉了。
經過本文的學習希望對您理解和學習ios開發的相關知識有一些好的協助.感激關注本站.我們將為您搜集更多更好的ios開發教程.
【iOS從零開端學習直播之2.采集】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!