钛 youtube 视频自动播放

发布于 12-10 21:05 字数 677 浏览 0 评论 0原文

我有以下代码来显示 iOS 版钛合金的 YouTube 视频。

var win = Titanium.UI.createWindow();


// Set the window orientation modes for the video to rotate with the device
win.orientationModes = [ Ti.UI.PORTRAIT, Ti.UI.LANDSCAPE_LEFT,
                     Ti.UI.LANDSCAPE_RIGHT ];

win.open();

// Build the movie URL. 'fs' and 'autoplay' parameters are optional.
var movieId = "oYgMRIIVX3w";
var movieUrl = "http://www.youtube.com/embed/" + movieId+ "?fs=1&autoplay=1";
webview = Ti.UI.createWebView({
url : movieUrl
});

win.add(webview);

然而,即使使用“autoplay=1”,youtube 视频仍然不会自动播放。用户仍然需要点击 youtube 中的播放按钮。

知道如何在不点击播放按钮的情况下自动播放 YouTube 吗?

谢谢。

I have the following code to show youtube video in titanium for iOS.

var win = Titanium.UI.createWindow();


// Set the window orientation modes for the video to rotate with the device
win.orientationModes = [ Ti.UI.PORTRAIT, Ti.UI.LANDSCAPE_LEFT,
                     Ti.UI.LANDSCAPE_RIGHT ];

win.open();

// Build the movie URL. 'fs' and 'autoplay' parameters are optional.
var movieId = "oYgMRIIVX3w";
var movieUrl = "http://www.youtube.com/embed/" + movieId+ "?fs=1&autoplay=1";
webview = Ti.UI.createWebView({
url : movieUrl
});

win.add(webview);

However, even use the "autoplay=1", the youtube video is still not playing automatically. User still need to click on the play button in youtube.

Any idea on how to play the youtube automatically without clicking the play button?

Thanks.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文