我正在使用安全浏览器,因此我希望默认情况下播放UIWebView
中带有静音的所有视频。我怎么能这样做。
答案 0 :(得分:0)
据我所知,如果没有本机编码,就无法在UIWebview中通过js纯静音/取消静音。
答案 1 :(得分:0)
检查出来:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(playerItemBecameCurrentNotif:)
name:@"AVPlayerItemBecameCurrentNotification"
object:nil];
- (void)playerItemBecameCurrentNotif:(NSNotification*)notification {
AVPlayerItem *playerItem = notif.object;
AVPlayer *player = [playerItem valueForKey:@"player"];
[player setVolume:0.0];
}