-
I have incorporated some new technology to my site that does not seem to be playing nice with the Vimeo Pro file URL. Our application makes use of the “load” event within Flowplayer. When that event occurs, our application initializes and interacts with the video being played. The snip-it of code from our application is:
flowplayer(function(api){
api.on(‘load’, function(){
TVRunwayActivate();
});
});
This seems to work when we are pulling vidoes in as static files, but we do not see the “load” or “ready” events occur when the videos are streamed to the site utilizing Vimeo Pro’s “Use Your Own Player” URL. Is there a different event we should look for instead of “load” or “ready” in this case?