[jQuery] [media plugin] https protocol question

[jQuery] [media plugin] https protocol question


Hi,
I'm trying to use the media plugin(http://malsup.com/jquery/media/) to
be able to play mp3's in a form that allows users to edit metadata
about the mp3s. The specs say i have to use Real Player, so I set up
the initialization as follows:
$.fn.media.mapFormat('mp3','realplayer'); //spec -> REAL Player
$('a.media').media( { width: 300, height: 80 } );
This creates the inline object which code looks like:
<embed width="300" height="80" autostart="0" wmode="transparent"
bgcolor="#ffffff" pluginspage="http://www.real.com/player/"
type="audio/x-pn-realaudio-plugin" src="audio/mmw.mp3" style="display:
block;"/>
However when I try and play the test file, I'm getting an error from
Real Player saying:
There is no software update available from Read to support this
update. When i click details i see: Content Type(s) https.
The files I will be referencing will be linked via https protocol. Is
there a way around this or something I'm doing wrong?
Thanks!