我刚开始使用 jwplayer,我有几个问题:
如何在标题旁边附加/显示缩略图(类似于 youtube)?我必须自己创建缩略图还是 jwplayer 为我做这个?
播放列表部分看起来很枯燥,它只显示标题。如何显示视频的一些附加信息?即时间、作者/上传者等。
如果有文档,请指点我,到目前为止我还没有找到它。
我当前的代码:
<script type="text/javascript">
jwplayer("myElement").setup({
playlist: [{
file: "/common/assets/sample_iPod.m4v",
title: "Sample Video 1"
},{
file: "/common/assets/Wildlife_512kb.mp4",
title: "Animals being CUTE!!!"
},{
file: "https://s3.amazonaws.com/asteroid.static.www.otcmarkets.com/videos_presentations/OTCM/Wildlife_512kb.mp4",
title: "video from S3"
},{
file: "https://s3.amazonaws.com/asteroid.static.www.otcmarkets.com/videos_presentations/OTCM/sample_iPod.m4v",
title: "ipod help from S3"
}],
width: 770,
height: 360,
listbar: {
position: 'right',
size: 240
}
});
</script>