-
Notifications
You must be signed in to change notification settings - Fork 146
muteAndHidePicture
shixuemei edited this page Sep 22, 2016
·
2 revisions
- 设置播放过程中有无声音输出
- 在prepareToPlay前设置或者播放过程中动态调整均有效
@property (nonatomic) BOOL shouldMute
_player.shouldMute = YES;
- 设置播放过程中有无画面输出
- 设置该属性为YES后,底层不再进行视频的渲染动作
- 在prepareToPlay前设置或者播放过程中动态调整均有效
@property (nonatomic) BOOL shouldHideVideo
_player.shouldHideVideo = YES;