在 HTML5 视频上启用 iPad Airplay

发布于 2024-10-28 01:40:41 字数 761 浏览 1 评论 0原文

我这样做是为了在运行 iOS 4.3.1 的第一代 iPad 上启用 HTML5 视频上的 Airplay。

// Prototype JS framework
$('videoContainer').appendChild(
    new Element(
        'video', {
            id: 'video0',
            src: 'http://shapeshed.com/examples/HTML5-video-element/video/320x240.m4v',  
            controls: 'true',
            width: '200',
            height: '200',
        }
    )
);

$('video0').writeAttribute('x-webkit-airplay', 'allow');

当我打开播放功能时,我听到的只是电视上的音频。我如何也启用视频?

编辑:

根据Ben Dodson,您必须重新嵌入视频。我这样做了:

$('videoContainer').update($('videoContainer').innerHTML);

有什么办法可以解决这个问题吗?看起来很老套,而且是浪费处理。

I'm doing this to enable Airplay on HTML5 video for my iPad 1st generation with iOS 4.3.1.

// Prototype JS framework
$('videoContainer').appendChild(
    new Element(
        'video', {
            id: 'video0',
            src: 'http://shapeshed.com/examples/HTML5-video-element/video/320x240.m4v',  
            controls: 'true',
            width: '200',
            height: '200',
        }
    )
);

$('video0').writeAttribute('x-webkit-airplay', 'allow');

When I turn on airplay, all I hear is audio on the TV. How do I enable video too?

Edit:

According to Ben Dodson, you have to re-embed the video. I did this:

$('videoContainer').update($('videoContainer').innerHTML);

Is there any way around this? Seems so hacky and it's wasted processing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜`诱少女 2024-11-04 01:40:41

尝试将其重新格式化为 .mp4 电影,并确保它是带有 AAC 音频的 H.264 视频。它必须是 H.264,否则 iPad 无法传输它。 (从 http://macosrumors.com/2011/ 获取此内容01/12/first-look-mobile-safari-airplay/)

Try reformatting it as a .mp4 movie, and make sure that it is H.264 video with AAC audio. It has to be H.264, or the iPad can't steam it. (Got this from http://macosrumors.com/2011/01/12/first-look-mobile-safari-airplay/)

断念 2024-11-04 01:40:41

老版本的iOS最大支持的分辨率是1024*576,但是你的分辨率是正常的。请使用任何视频转换器将视频转换为 .mp4 或 H.264。 .m4v 不支持格式。

In old version of iOS maximum resolution supporting is 1024*576, However your resolution is normal. Please convert the video using any video converter to .mp4 or H.264. .m4v is not supporting format.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文