You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function setVidPoster() {
var video = Popcorn( '#video' ), poster;
video.listen( "canplayall", function() {
this.capture({at: 1});
this.currentTime(0);
});
}
The following code is setting the poster, but not returning to the first frame. I tried without the last line, and with it chained to the first one.. but the page always loads with the video sitting at 1 second in. My understanding was it should remain at the beginning with capture at. (source file is mp4)
The text was updated successfully, but these errors were encountered:
The following code is setting the poster, but not returning to the first frame. I tried without the last line, and with it chained to the first one.. but the page always loads with the video sitting at 1 second in. My understanding was it should remain at the beginning with
capture at
. (source file is mp4)The text was updated successfully, but these errors were encountered: