I have a page with the following meta tag:
I thought this w
It turns out that there was an issue with the Flash fallback in jPlayer. Firefox uses Flash to play the mp3.
Here's the fix from the developer of jPlayer:
Use the encodeURI(url) JavaScript command to encode the URL in JavaScript before passing the url to setMedia. For example:
$ ("#id").jPlayer("setMedia", {
mp3: encodeURI("http://domain.com/audio/大地書房.mp3")
});