iPhone 的 uiwebview 中没有播放音频
Posted
技术标签:
【中文标题】iPhone 的 uiwebview 中没有播放音频【英文标题】:Audio is not playing in uiwebview in iPhone 【发布时间】:2017-04-23 17:30:53 【问题描述】:我想在 uiwebview 中播放通过相信代码播放的实时流媒体视频
UIWebView *web=[[UIWebView alloc]initWithFrame:self.view.bounds];
[web loadhtmlString:htmlString baseURL:nil];
NSError *setCategoryErr = nil;
NSError *activationErr = nil;
web.scalesPageToFit=YES;
web.mediaPlaybackRequiresUserAction=NO;
[self.view addSubview: web];
但问题是音频没有在模拟器中播放,或者没有在任何具有该实时视频的设备中播放我做错了什么或我在这里错过了什么
【问题讨论】:
尝试添加web.allowsInlineMediaPlayback = YES;
并在设置完所有属性后加载html。
web.allowsInlineMediaPlayback = YES;这不起作用
Issue with not getting sound in device when play youtube video in UIWebView in ios的可能重复
不,它不重复,因为在这种情况下,在模拟器声音中播放,但在我的情况下,在模拟器声音中也不播放
【参考方案1】:
转到 Info.plist 属性列表 - 添加新行 - 选择所需的背景模式,应该有一个名为 Item 0 的子行,选择应用程序播放音频或使用 AirPlay 流式传输音频/视频。还要检查兼容的背景模式下的音频空中播放。
【讨论】:
以上是关于iPhone 的 uiwebview 中没有播放音频的主要内容,如果未能解决你的问题,请参考以下文章
我可以在 UIWebView 内联(不是全屏)中播放 youtube 视频吗?