iOS 基于Intel WebRTC 實(shí)現(xiàn)音視頻通話

1.Intel WebRTC SDK的下載

官網(wǎng)下載地址
官方文檔
下載頁面
下載后我們會(huì)得到WebRTC的套件壓縮包,找到iOS端的Demo解壓.

解壓后得到的Demo

我是下載的4.3.1版本,編譯發(fā)現(xiàn)缺少靜態(tài)庫(kù),后來發(fā)現(xiàn)4.3版本有這三個(gè)靜態(tài)庫(kù),具體可以參考這篇文章
4.3.1版本缺少的靜態(tài)庫(kù)

2.WebRTC的使用

解決完編譯報(bào)錯(cuò)后我們就可以了解WebRTC的使用了
1.1 初始化
OWTConferenceClientConfiguration* config=[[OWTConferenceClientConfiguration alloc]init];
NSArray *ice=[[NSArray alloc]initWithObjects:[[RTCIceServer alloc]initWithURLStrings:[[NSArray alloc]initWithObjects:@"stun:61.152.239.47:3478", nil]], nil];
config.rtcConfiguration=[[RTCConfiguration alloc] init];
config.rtcConfiguration.iceServers=ice;
_conferenceClient=[[OWTConferenceClient alloc]initWithConfiguration:config];
_conferenceClient.delegate=self;
1.2 加入房間,拿到后端返回的Token后加入房間會(huì)返回房間內(nèi)所有流的信息
 [_conferenceClient joinWithToken:weakSelf.userInfo.webRtcToken onSuccess:^(OWTConferenceInfo* info) {
      dispatch_async(dispatch_get_main_queue(), ^{
        if([info.remoteStreams count]>0){
          NSMutableArray *arr = [NSMutableArray arrayWithArray:info.remoteStreams];
          
          //1.RTC獲取流
          //移除混合流
          NSMutableArray *finalArr = [NSMutableArray arrayWithArray:arr];
          for (OWTRemoteStream* s in arr) {
            if([s isKindOfClass:[OWTRemoteMixedStream class]]){
              [finalArr removeObject:s];
            }
          }
          //拿處理好的流數(shù)組,跳轉(zhuǎn)
          __weak typeof(self)weakSelf = self;
          if (finalArr.count) {
              ConferenceStreamViewController *vc = [[ConferenceStreamViewController alloc] init];
              vc.streamsArr = [NSMutableArray arrayWithArray:finalArr];
              [self.navigationController pushViewController:vc animated:YES];
              break;
            }
          } else {
          }
        } else { 
        }
      });
    } onFailure:^(NSError* err) {
    
    }];
1.3 加入房間后的一些代理
-(void)conferenceClient:(OWTConferenceClient *)client didAddStream:(OWTRemoteStream *)stream{
  NSLog(@"流增加事件AppDelegate on stream added");
}

-(void)conferenceClientDidDisconnect:(OWTConferenceClient *)client{
  NSLog(@"服務(wù)器已斷開連接Server disconnected");
}

-(void)conferenceClient:(OWTConferenceClient *)client didReceiveMessage:(NSString *)message from:(NSString *)senderId{
  NSLog(@"AppDelegate 收到一條信息received message: %@, from %@", message, senderId);
}

- (void)conferenceClient:(OWTConferenceClient *)client didAddParticipant:(OWTConferenceParticipant *)user{
  user.delegate=self;
  NSLog(@"一個(gè)新用戶加入==A new participant joined the meeting.");
}

-(void)streamDidEnd:(OWTRemoteStream *)stream{
  NSLog(@"流失效移除流===Stream did end");
  [[NSNotificationCenter defaultCenter] postNotificationName:@"OnStreamRemoved" object:self userInfo:[NSDictionary dictionaryWithObject:stream forKey:@"stream"]];
}

-(void)participantDidLeave:(OWTConferenceParticipant *)participant{
  NSLog(@"有人離開===Participant left conference.");
}
1.4 推流,將自己的流推到RTC服務(wù)
-(void)doPublish{
#if TARGET_IPHONE_SIMULATOR
    NSLog(@"Camera is not supported on simulator模擬器不支持推流");
    OWTStreamConstraints* constraints=[[OWTStreamConstraints alloc]init];
    constraints.audio=YES;
    constraints.video=nil;
#else
    /* Create LocalStream with constraints */
    OWTStreamConstraints* constraints=[[OWTStreamConstraints alloc] init];
    constraints.audio=YES;
    constraints.video=[[OWTVideoTrackConstraints alloc] init];
    constraints.video.frameRate=_roomSettingModel.frameRate;
    
    //352*288 640*480 960x540 1280*720 1920*1080    iPhone推流支持這些分辨率
    if (_roomSettingModel.width == 0) {
      constraints.video.resolution=CGSizeMake(352,288);
    } else {
      
      NSInteger VW = _roomSettingModel.width;
      if (VW < 640) {
        constraints.video.resolution=CGSizeMake(352,288);
      } else if (VW < 960 && VW > 352) {
        constraints.video.resolution=CGSizeMake(640,480);
      } else if (VW < 1280 && VW > 640) {
        constraints.video.resolution=CGSizeMake(960,540);
      } else if (VW < 1920 && VW > 960) {
        constraints.video.resolution=CGSizeMake(1280,720);
      } else {
        constraints.video.resolution=CGSizeMake(1920,1080);
      }
    }
    constraints.video.devicePosition=AVCaptureDevicePositionFront;
#endif
    NSError *err=[[NSError alloc]init];
    _localStream=[[OWTLocalStream alloc] initWithConstratins:constraints error:&err];
//標(biāo)記推流者信息
    _localStream.attributes = @{
      //      @"PubUseInfo":@"",
    };
    
#if TARGET_IPHONE_SIMULATOR
    NSLog(@"Stream does not have video track 信息流沒有視頻軌道.");
#else
    dispatch_async(dispatch_get_main_queue(), ^{
      [((StreamView *)self.view).localVideoView setCaptureSession:[self->_capturer captureSession]];
    });
#endif
    OWTPublishOptions* options=[[OWTPublishOptions alloc] init];
    OWTAudioCodecParameters* opusParameters=[[OWTAudioCodecParameters alloc] init];
    opusParameters.name=OWTAudioCodecOpus;
    OWTAudioEncodingParameters *audioParameters=[[OWTAudioEncodingParameters alloc] init];
    audioParameters.codec=opusParameters;
    audioParameters.maxBitrate = _roomSettingModel.audioMaxBitrate;
    options.audio=[NSArray arrayWithObjects:audioParameters, nil];
    OWTVideoCodecParameters *h264Parameters=[[OWTVideoCodecParameters alloc] init];
    //    h264Parameters.name=OWTVideoCodecH264;
    h264Parameters.name=OWTVideoCodecVP8;
    OWTVideoEncodingParameters *videoParameters=[[OWTVideoEncodingParameters alloc]init];
    videoParameters.codec=h264Parameters;
    videoParameters.maxBitrate = _roomSettingModel.videoMaxBitrate;
    options.video=[NSArray arrayWithObjects:videoParameters, nil];
    [_conferenceClient publish:_localStream withOptions:options onSuccess:^(OWTConferencePublication* p) {
      self->_publication=p;
      self->_publication.delegate=self;
      dispatch_async(dispatch_get_main_queue(), ^{
        NSLog(@"publish success 推流成功!");
        self->isPublish = YES;
      });
      
    } onFailure:^(NSError* err) {
      NSLog(@"publish failure推流失敗! %@",[err localizedFailureReason]);
      [self showMsg:[err localizedFailureReason]];
    }];
    }
  }
}

//停止推流方法
[OWTConferencePublication stop];

1.5 流訂閱

RTC服務(wù)返回的流是需要訂閱成功后才能播放的

- (void)subscribeWithStream:(OWTRemoteStream *)stream andAllFinsh:(BOOL)isAllFinsh{
  //自己的本地流不需要訂閱
  if ([stream isKindOfClass:[OWTLocalStream class]]) {
    return;
  }
  OWTConferenceSubscribeOptions* subOption = [[OWTConferenceSubscribeOptions alloc] init];
  OWTConferenceAudioSubscriptionConstraints* audioP = [[OWTConferenceAudioSubscriptionConstraints alloc] init];
  OWTAudioCodecParameters* opusParameters1=[[OWTAudioCodecParameters alloc] init];
  opusParameters1.name=OWTAudioCodecPcma;
  OWTAudioCodecParameters* opusParameters2=[[OWTAudioCodecParameters alloc] init];
  opusParameters2.name=OWTAudioCodecPcmu;
  OWTAudioCodecParameters* opusParameters3=[[OWTAudioCodecParameters alloc] init];
  opusParameters3.name=OWTAudioCodecAc3;
  OWTAudioCodecParameters* opusParameters4=[[OWTAudioCodecParameters alloc] init];
  opusParameters4.name=OWTAudioCodecUnknown;
  OWTAudioCodecParameters* opusParameters5=[[OWTAudioCodecParameters alloc] init];
  opusParameters5.name=OWTAudioCodecG722;
  OWTAudioCodecParameters* opusParameters6=[[OWTAudioCodecParameters alloc] init];
  opusParameters6.name=OWTAudioCodecIsac;
  OWTAudioCodecParameters* opusParameters7=[[OWTAudioCodecParameters alloc] init];
  opusParameters7.name=OWTAudioCodecAac;
  OWTAudioCodecParameters* opusParameters8=[[OWTAudioCodecParameters alloc] init];
  opusParameters8.name=OWTAudioCodecAsao;
  
  //  OWTAudioEncodingParameters *audioParameters=[[OWTAudioEncodingParameters alloc] init];
  //  audioParameters.codec=opusParameters;
  
  audioP.codecs = [NSArray arrayWithObjects:opusParameters1,opusParameters2,opusParameters3,opusParameters4,opusParameters5,opusParameters6,opusParameters7,opusParameters8, nil];
  subOption.audio= audioP;
 
  //    OWTVideoCodecVP8 = 1,
  //    OWTVideoCodecVP9 = 2,
  //    OWTVideoCodecH264 = 3,
  //    OWTVideoCodecH265 = 4,
  //    OWTVideoCodecUnknown = 5,
  OWTConferenceVideoSubscriptionConstraints *videoP = [[OWTConferenceVideoSubscriptionConstraints alloc] init];
  OWTVideoCodecParameters *h264Parameters=[[OWTVideoCodecParameters alloc] init];
  h264Parameters.name=OWTVideoCodecH264;
  OWTVideoCodecParameters *vp8Parameters=[[OWTVideoCodecParameters alloc] init];
  vp8Parameters.name=OWTVideoCodecVP8;
  OWTVideoCodecParameters *vp9Parameters=[[OWTVideoCodecParameters alloc] init];
  vp9Parameters.name=OWTVideoCodecVP9;
  //    OWTVideoEncodingParameters *videoParameters=[[OWTVideoEncodingParameters alloc]init];
  //    videoParameters.codec=h264Parameters;
  videoP.codecs = [NSArray arrayWithObjects:h264Parameters,vp8Parameters,vp9Parameters, nil];
  subOption.video= videoP;
  int width = INT_MAX;
  int height = INT_MAX;
  for (NSValue* value in stream.capabilities.video.resolutions) {
    CGSize resolution=[value CGSizeValue];
    if (resolution.width == 640 && resolution.height == 480) {
      width = resolution.width;
      height = resolution.height;
      break;
    }
    if (resolution.width < width && resolution.height != 0) {
      width = resolution.width;
      height = resolution.height;
    }
  }
  [[AVAudioSession sharedInstance]
   overrideOutputAudioPort:AVAudioSessionPortOverrideSpeaker
   error:nil];
  
  [_conferenceClient subscribe:stream withOptions:subOption onSuccess:^(OWTConferenceSubscription* subscription) {
    self->_subscription=subscription;
    self->_subscription.delegate=self;
    
    [self->_subArr addObject:subscription];
    
    if (isAllFinsh) {
      
    }
    NSLog(@"Subscribe stream success訂閱流成功.");
    self->_subscribedMix = NO;
  } onFailure:^(NSError* err) {
    NSLog(@"Subscribe stream failed.訂閱失敗 %@", [err localizedDescription]);
  }];
}
1.6 流的播放

流播放View的初始化

UIView<RTCVideoRenderer> *streamView = [[RTCEAGLVideoView alloc] init];

老的廢棄的流播放方法(不要用)

/**
  @brief Attach the stream's first video track to a renderer.
  @details The render doesn't retain this stream. Using this method is not
  recommended. It will be removed in the future. please use
  [RTCVideoTrack addRenderer] instead.
 */
- (void)attach:(NSObject<RTCVideoRenderer>*)renderer;

由于老的播放方法無法將流從流播放View移除,覆蓋播放會(huì)出現(xiàn)兩個(gè)流畫面交互閃爍的問題,所以一定要用新的方法

//流里面包含視頻軌道和音頻軌道
RTCVideoTrack *videoTrack = stream.mediaStream.videoTracks.firstObject;
//將流添加到流播放View
[videoTrack addRenderer:streamView];
//將流從流播放View移除
[videoTrack removeRenderer:streamView];
1.7 離開房間

離開房間一般需要停止推流,取消訂閱流

[_conferenceClient leaveWithOnSuccess:^{
  } onFailure:^(NSError* err){
    NSLog(@"Failed to leave. %@",err);
  }];
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市摧茴,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌申尼,老刑警劉巖胶惰,帶你破解...
    沈念sama閱讀 216,372評(píng)論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件惦界,死亡現(xiàn)場(chǎng)離奇詭異挑格,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)沾歪,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,368評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門漂彤,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人灾搏,你說我怎么就攤上這事挫望。” “怎么了狂窑?”我有些...
    開封第一講書人閱讀 162,415評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵媳板,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我泉哈,道長(zhǎng)蛉幸,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,157評(píng)論 1 292
  • 正文 為了忘掉前任丛晦,我火速辦了婚禮奕纫,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘烫沙。我一直安慰自己匹层,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,171評(píng)論 6 388
  • 文/花漫 我一把揭開白布锌蓄。 她就那樣靜靜地躺著又固,像睡著了一般仲器。 火紅的嫁衣襯著肌膚如雪煤率。 梳的紋絲不亂的頭發(fā)上仰冠,一...
    開封第一講書人閱讀 51,125評(píng)論 1 297
  • 那天,我揣著相機(jī)與錄音蝶糯,去河邊找鬼洋只。 笑死,一個(gè)胖子當(dāng)著我的面吹牛昼捍,可吹牛的內(nèi)容都是我干的识虚。 我是一名探鬼主播,決...
    沈念sama閱讀 40,028評(píng)論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼妒茬,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼担锤!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起乍钻,我...
    開封第一講書人閱讀 38,887評(píng)論 0 274
  • 序言:老撾萬榮一對(duì)情侶失蹤肛循,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后银择,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體多糠,經(jīng)...
    沈念sama閱讀 45,310評(píng)論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,533評(píng)論 2 332
  • 正文 我和宋清朗相戀三年浩考,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了夹孔。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 39,690評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡析孽,死狀恐怖搭伤,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情袜瞬,我是刑警寧澤怜俐,帶...
    沈念sama閱讀 35,411評(píng)論 5 343
  • 正文 年R本政府宣布,位于F島的核電站吞滞,受9級(jí)特大地震影響佑菩,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜裁赠,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,004評(píng)論 3 325
  • 文/蒙蒙 一殿漠、第九天 我趴在偏房一處隱蔽的房頂上張望播揪。 院中可真熱鬧匠楚,春花似錦亚茬、人聲如沸晃虫。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,659評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽熟呛。三九已至士复,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間票渠,已是汗流浹背逐哈。 一陣腳步聲響...
    開封第一講書人閱讀 32,812評(píng)論 1 268
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留问顷,地道東北人昂秃。 一個(gè)月前我還...
    沈念sama閱讀 47,693評(píng)論 2 368
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像杜窄,于是被迫代替她去往敵國(guó)和親肠骆。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,577評(píng)論 2 353

推薦閱讀更多精彩內(nèi)容