How to play youtube video in UIWebView muted?(如何在 UIWebView 中播放 youtube 视频静音?)
问题描述
我正在使用 UIWebView 在 iOS 9 for iphone 上播放嵌入的 youtube 视频.
I am using UIWebView to play an embedded youtube video, on iOS 9 for iphone.
但是,由于一个已知问题,音量控制不起作用,即调用 player.mute() 或 player.setVolume(0) 根本不起作用:https://github.com/youtube/youtube-ios-player-helper/问题/20
However, due to a known issue, the volume control is not working, i.e. calling player.mute() or player.setVolume(0) doesn't work at all: https://github.com/youtube/youtube-ios-player-helper/issues/20
我想知道是否有人成功解决了这个问题?能否分享一下你的方法.
I am wondering if anyone has successfully worked around this? Could you share your method.
我正在使用的示例嵌入式 html:
The sample embedded html I am using:
<html><body style='margin:0px;padding:0px;'>
<script type='text/javascript' src="aHR0cDovL3d3dy55b3V0dWJlLmNvbS9pZnJhbWVfYXBp"></script><script type='text/javascript'>
var player;
function onYouTubeIframeAPIReady()
{player=new YT.Player('playerId',{events:{onReady:onPlayerReady}})}
function onPlayerReady(event){player.mute();player.setVolume(0);player.playVideo();}
</script>
<iframe id='playerId' type='text/html' width='1280' height='720'
src="aHR0cHM6Ly93d3cueW91dHViZS5jb20vZW1iZWQvUjUyYm9mM3R2WnM/ZW5hYmxlanNhcGk9MSZhbXA7cmVsPTAmYW1wO3BsYXlzaW5saW5lPTEmYW1wO2F1dG9wbGF5PTEmYW1wO3Nob3dpbmZvPTAmYW1wO2F1dG9oaWRlPTEmYW1wO2NvbnRyb2xzPTAmYW1wO21vZGVzdGJyYW5kaW5nPTE=" frameborder='0'>
</body></html>
谢谢!
推荐答案
首先不能使用javascript设置音量检查this doc 并阅读 Volume Control inJavaScript
部分.在这里找到.
First of all you cannot set the volume using javascript check this doc and read Volume Control in JavaScript
section. Found here.
第二次我尝试了这个:
[[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];
}
这似乎在模拟器中运行良好.但是,此方法使用了一些私有属性.使用风险自负;)并且不要忘记删除观察者.
This seems to be working fine in simulator. However this method is using some private properties. Use at your own risk ;) and don't forget to remove observer.
这篇关于如何在 UIWebView 中播放 youtube 视频静音?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 UIWebView 中播放 youtube 视频静音?


- GPS状态的广播接收器? 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01
- UITextView 内容插图 2022-01-01
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- URL编码Swift iOS 2022-01-01
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01