如何使用UIWebView播放没有声音的视频

时间:2015-07-27 14:51:40

标签: ios video uiwebview

我正在使用安全浏览器,因此我希望默认情况下播放UIWebView中带有静音的所有视频。我怎么能这样做。

2 个答案:

答案 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];
}