钛youtube视频自动播放

时间:2011-10-18 05:58:29

标签: youtube titanium-mobile

我有以下代码来显示适用于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);

但是,即使使用“autoplay = 1”,youtube视频仍然无法自动播放。用户仍需要点击youtube上的播放按钮。

有关如何在不点击播放按钮的情况下自动播放youtube的想法吗?

感谢。

0 个答案:

没有答案