videojs 上的动态视频
Dynamic videos on videojs
我需要使用videojs 来显示一些视频。通常的视频声明如下所示(对于本例中的 2 个视频):
var videos = [
{
src : [
'http://demo.dealerpro.net/Images/Sites/577/videos/HondaHands.mp4'
],
poster : 'http://i145.photobucket.com/albums/r217/Carnifreekshow/Asus%20Orion%20Repair/before_zps12ce48a2.jpg',
title : 'Honda. The Power of Dreams.'
},
{
src : [
'http://1eb9cddbb30a65a675d4-91fe7d858d3e9c59dcdfd3e789416fbc.r56.cf1.rackcdn.com/Sites/577/commercial.mp4'
],
poster : 'http://i145.photobucket.com/albums/r217/Carnifreekshow/Asus%20Orion%20Repair/before_zps12ce48a2.jpg',
title : 'Thanks for Making Us #1'
}
];
我在另一个数组上有一些视频的src、海报和标题信息,我需要根据一些过滤器动态声明它。我需要做这样的事情:
for (var index = 0;index<totalVideos;index++)
{
var videos = [
{
src : [
sourceArray[index]
],
poster : posterArray[index],
title : titleArray[index]
}
];
}
但这行不通,有人知道我如何动态声明要在 videojs 上使用的视频吗?
我设法解决了,下面是我的解决方案:
var totalVideos = 3;//put the ammount of videos you want to dynamically add
/*You need to fill this arrays with the information of your videos*/
var arrayTitles = new Array(totalVideos);
var arraySources = new Array(totalVideos);
var arrayPosters = new Array(totalVideos);
var videos = new Array(totalVideos);
for (var index = 0;index<totalVideos;index++)
{
var theVideo = {
src: [
arraySources[index]
],
poster: arrayPosters[index],
title: arrayTitles[index]
};
videos[index] = theVideo;
}
在此之后,您可以开始使用 videojs 处理视频变量。在我的例子中,我正在做一个过滤器,所以当你 select 一个选项时,你只会看到在过滤器上 selected 的视频。
我需要使用videojs 来显示一些视频。通常的视频声明如下所示(对于本例中的 2 个视频):
var videos = [
{
src : [
'http://demo.dealerpro.net/Images/Sites/577/videos/HondaHands.mp4'
],
poster : 'http://i145.photobucket.com/albums/r217/Carnifreekshow/Asus%20Orion%20Repair/before_zps12ce48a2.jpg',
title : 'Honda. The Power of Dreams.'
},
{
src : [
'http://1eb9cddbb30a65a675d4-91fe7d858d3e9c59dcdfd3e789416fbc.r56.cf1.rackcdn.com/Sites/577/commercial.mp4'
],
poster : 'http://i145.photobucket.com/albums/r217/Carnifreekshow/Asus%20Orion%20Repair/before_zps12ce48a2.jpg',
title : 'Thanks for Making Us #1'
}
];
我在另一个数组上有一些视频的src、海报和标题信息,我需要根据一些过滤器动态声明它。我需要做这样的事情:
for (var index = 0;index<totalVideos;index++)
{
var videos = [
{
src : [
sourceArray[index]
],
poster : posterArray[index],
title : titleArray[index]
}
];
}
但这行不通,有人知道我如何动态声明要在 videojs 上使用的视频吗?
我设法解决了,下面是我的解决方案:
var totalVideos = 3;//put the ammount of videos you want to dynamically add
/*You need to fill this arrays with the information of your videos*/
var arrayTitles = new Array(totalVideos);
var arraySources = new Array(totalVideos);
var arrayPosters = new Array(totalVideos);
var videos = new Array(totalVideos);
for (var index = 0;index<totalVideos;index++)
{
var theVideo = {
src: [
arraySources[index]
],
poster: arrayPosters[index],
title: arrayTitles[index]
};
videos[index] = theVideo;
}
在此之后,您可以开始使用 videojs 处理视频变量。在我的例子中,我正在做一个过滤器,所以当你 select 一个选项时,你只会看到在过滤器上 selected 的视频。