jplayer / jPlayer

jPlayer : HTML5 Audio & Video for jQuery
http://jplayer.org/
Other
4.6k stars 1.47k forks source link

Play bar not updating in Chrome #412

Closed AndyButland closed 5 years ago

AndyButland commented 5 years ago

I think this must be related to a relatively recent update in Chrome, as have certainly had this working before. But I'm finding now that the play bar isn't updating - at least visibly (I can see some CSS style attributes being updated if I view in the dev tools).

Works as expected in Edge.

This link shows the issue: https://www.theperfectmusiclibrary.com/Albums/Details/2053/shifting-emotions

And I'm triggering the playback like this:

$("#audio-player").jPlayer({
    ready: function (event) {
        $(this).jPlayer("setMedia", {
            mp3: ASSETS_PATH + "audio-stream/" + file
        }).jPlayer("play");
    },
    solution: "flash, html",
    swfPath: "/public/js/libs/jplayer/jplayer/jquery.jplayer.swf",
    supplied: "mp3",
    wmode: "window",
    smoothPlayBar: true,
    keyEnabled: true
});

Am using 2.9.2.

Thanks in advance for any advice or a resolution.

AndyButland commented 5 years ago

Not quite sure exactly how, but have resolved this by ensuring my Azure blob storage container (where the mp3s are hosted) was set to an appropriate version. So will close this issue.