I am using jwplayer to play embedded video, the javascript api tells me
jwplayer("mediaplayer").getPosition()
will get the current position, but my result is undefined
Can anyone help me get the correct resilts
I am using jwplayer to play embedded video, the javascript api tells me
jwplayer("mediaplayer").getPosition()
will get the current position, but my result is undefined
Can anyone help me get the correct resilts
Share Improve this question edited May 15, 2012 at 9:27 Manse 38.1k11 gold badges86 silver badges111 bronze badges asked May 15, 2012 at 9:14 wumengjunwumengjun 531 gold badge1 silver badge3 bronze badges 1- Can you include your HTML and JavaScript here - it works fine when using the example HTML and JavaScrip – Manse Commented May 15, 2012 at 9:28
2 Answers
Reset to default 6Works fine for me just how the documentation specifies :
<div id="container"></div>
jwplayer("container").setup({
file: "http://content.bitsontherun./videos/nPripu9l-60830.mp4",
flashplayer: "http://player.longtailvideo./player.swf",
image: "http://content.bitsontherun./thumbs/nPripu9l-480.jpg",
height: 270,
width: 480
});
var state = jwplayer("container").getState();
var elapsed = jwplayer("container").getPosition();
How does your HTML and JavaScript look? Without seeing these, I can only assume the following.
According to the API documentation on the website this can be achieved without specifying a container, like so...
jwplayer().getPosition()
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743697104a4491937.html
评论列表(0条)