Skip to content
Franken Zeng edited this page Oct 12, 2016 · 4 revisions

场景

##使用示例

  • 用户自定义背景视频url
 NSString * pathComp = [NSString stringWithFormat:@"Documents/t2.mp4"];
 NSString *testflv = [NSHomeDirectory() stringByAppendingPathComponent:pathComp];
 NSURL* videoUrl = [NSURL fileURLWithPath:testflv];
  • 用户自定义背景图片URL
NSString *testjpg = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/c.jpg"];
NSURL* bgUrl = [NSURL fileURLWithPath:testjpg];
  • 开启画中画功能,最后参数为主播图像的显示位置,注意此时背景视频并没有播放
[_kit startPipWithPlayerUrl:videoUrl bgPic:bgUrl capRect:CGRectMake(0.6, 0.6, 0.3, 0.3)];
  • 播放背景视频
[_kit.player play];
  • 暂停背景视频
[_kit.player pause];
  • 停止背景视频
[_kit.player stop];
  • 停止画中画
[_kit stopPip];

1. 推流环节说明

2. 特色功能说明

2.1 采集

2.2 音频处理

2.3 视频处理

2.4 编码

2.5 推流

2.6 输入多样化

2.7 集成

3. 第三方功能

4. 技术专栏

5. 已知问题

8. FAQ

金山云计算

Clone this wiki locally