It seems, that the module doesn't support html5 at all? In Browsers with no flash activated the player just doesn't start playing. Concerning the fact that on jplayers project page the players also without flash are working - this should be a problem with the module? Tried also on lullabot.com/podcast where jplayer module is in use, but also there no html5 support seems to work? Does somebody have a working version on his site?

Comments

mandclu’s picture

I'm just doing some initial testing with this module, but so far it seems to be working across devices, including those without Flash. Is it possible something else on your page is conflicting with the jPlayer ids/classes? Is your audio a standard MP3?

patrickroma’s picture

Yes, my audios are standard mp3 and i just tested on a standard drupal installation just with core modules.

Everett Zufelt’s picture

I also have jPlayer installed on a pretty default install of D6, only CCK / Views installed. In FF 4.0b4 I am getting the Flash and not the html5 player.

patrickroma’s picture

Status: Active » Needs review

With the new version of jplayer everything works great: Tested on Chrome / Firefox / IE / Safari and iPad / iPod. Can somebody confirm?

patrickroma’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

itserich’s picture

The player is not playing for me in Firefox, do not know if it is the same issue.

http://drupal.org/node/996126

edit working now, not sure why.

The problem may be when the player is set as a nodeblock, I saw it recur when I tried it in FIrefox, but did not test other browsers.

Everett Zufelt’s picture

Status: Closed (fixed) » Active

Which version did you test with?

Everett Zufelt’s picture

Using jplayer 1.2.0 I get flash support, but no html5 (tested on FF 6.0.2).

Using jplayer 2.0.1 I get no support at all. Player links are available, but nothing plays in FF 6.0.2.

rlmumford’s picture

Get the same issue as Everett in Firefox 6. No flash support and nothing plays.

saschaL1978’s picture

Same over here, 1.1.1 works fine.

nickgee’s picture

Title: HTML 5 Support and FlashFallback » HTML 5 Support and FlashFallback -- solved! (but needs patch)

OK. I can confirm this is a bug!

Firefox is really the only place to see it as it's the only browser (that people regularly use) that only supports OGG and this seems to hing around OGA vs OGG in the code:

My solution:

in library/jplayer/jquery.jplayer.min.js, change:

oga:{codec:'audio/ogg; codecs="vorbis"',flashCanPlay:!1,media:"audio"}
//to
ogg:{codec:'audio/ogg; codecs="vorbis"',flashCanPlay:!1,media:"audio"}

and in jplayer.theme.inc, jplayer_sort_files(), change:

$audio_extensions = array('mp3', 'm4a', 'oga', 'webma', 'wav',);
//to
$audio_extensions = array('mp3', 'm4a', 'oga', 'webma', 'wav', 'ogg');

I've never written a patch so I'll leave that up to someone else but this does solve the automatic flash loading of MP3 files in Firefox and loads OGGs correctly for all other browsers.

Merci!

markie’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)

Please test this against the latest 6.x-1.x-dev or beta4 release.