I have a collection of videos and I am trying to set up the player for each div that holds a video.
When constructing the divs in my JavaScript code, it looks like this:
<div id="player+{{$index}}"></div> // The "player" + index is generated dynamically by a JS function
Then:
dscPlayer.initialize(urlvideo,coverUrl,id);
initialize : function(urlvideo,coverUrl,id) {
flowplayer("player"+id,
{....
Despite setting this up, I am unable to view the video. Any advice on what might be going wrong?