我正在尝试在我正在构建的iPhone应用上集成视频的HTTP流媒体。在应用程序中我使用标准的MPMoviePlayerViewController类。
我正在关注this。但我无法弄清楚如何使用JWPlayer传递URL和播放。 为了利用默认情况下Bits on the Run提供的默认HTTP流,我需要指向播放器的URL。
提前感谢您的帮助。
EDIT-01
在JWPlayer Quick Start Guide之后我的脑海里激动不已。在我的HTML中,我写的是:-`
<!doctype html>
<html>
<head>
<title>Test Page</title>
</head>
<body>
<script type="text/javascript" src="http://www.longtailvideo.com/jwplayer/jwplayer.js"></script>
<p><div id="container"></div></p>
<script>
jwplayer("container").setup({
playlist: [{
image: "http://content.bitsontherun.com/thumbs/i8oQD9zd-640.jpg",
sources: [{
file: "http://content.bitsontherun.com/videos/i8oQD9zd-DZ7jSYgM.mp4",
width: 640,
height: 920
},{
file: "http://content.bitsontherun.com/videos/i8oQD9zd-kNspJqnJ.mp4",
width: 320,
height: 460
}],
captions: [{
file: 'http://www.longtailvideo.com/sites/default/files/jw6-captions.vtt',
label: 'English'
}]
}]
});
</script>
</body>
</html>`
但是在点击播放按钮上显示错误加载媒体,无法播放文件。不知道为什么会这样。