admin管理员组

文章数量:1344187

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
Add a ment  | 

2 Answers 2

Reset to default 6

Works 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()

本文标签: javascriptuse jwplayer to get current play timeStack Overflow