-
Notifications
You must be signed in to change notification settings - Fork 271
pip
jiangdsuccess edited this page Feb 9, 2017
·
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];
- 开启画中画
[_pipKit startPipWithPlayerUrl:videoUrl bgPic:bgUrl];
- 暂停背景视频
[_pipKit.player pause];
- 恢复背景视频
[_pipKit.player play];
- 停止背景视频
[_pipKit.player stop];
- 停止画中画
[_pipKit stopPip];