Reminder to everyone about MP3s

Just in case someone doesn't know this yet, as there are some entries that have music in mp3-form: The Windows distribution of Pygame doesn't support mp3s, so your game won't work for any Windows users. Please use oggs instead.

(log in to comment)

Comments

Aye. You get a much better quiality/compression ratio, and they don't have any of those nasty licencing issues either.
Mp3's also don't work by default on macs either. I've been commenting out .mp3 loads if I run into them just to play the game.

We Linux users deal with this crap daily. Windows users can live with a few hand-edits. :)

Seriously, a set of compatibility guidelines would be helpful.

  • uncondtionally playing of MP3, MIDI in pygame
  • case-sensitivity of filenames
  • what else?
  • using os.path.join instead of hardcoded path separators
  • In would-be-nice category for Windows users: use file extensions on READMEs (.txt) and startup scripts (.py)
I thought you just had to have smpeg to play mp3s, or is that just under linux?
Smpeg doesn't work under os x. Ogg seems to have support on linux/win32/os x though.
os.path.join isn't strictly necessary, as the '/' path separator works on all platforms.

These hints should go on the pygame wiki, which I could then reference from the pyweek help page.

PyTM30: Ubuntu Linux doesn't have MP3 playing installable by default because of the licensing issues. It's just easier if you stick to Ogg which is also a much better-quality sound format.

you know -- i'm not sure about that "os.path.join isn't strictly necessary, as the '/' path separator works on all platforms." -- i think i have had cases where using / didn't work under windows...

but i can't remember for sure what the issue was, i just remember having some troubles getting dynamite working under windows last time due to my non-usage of os.path.join

maybe i'm just imagining that ;)

Using .sh scripts to start thinks is another worst practice by the Linux squad. :) Also a lot of people don't know how to open .tgz or .tar.gz on windoze. The only time that I've had problems with '/' not working as a path separator is when I was working with the win32 automation stuff.
For Windows, just grab a copy of 7zip from www.7-zip.org. A very nice, free little GUI based program that will uncompresses pretty much any format you could want. The compression is also pretty impressive.
I thought .tgz was automatically recognised under Windows these days??

Ignore my advice about the path separator thing. Always use os.path.join. I shouldn't have said otherwise.

i progrom in windows and i always use linux path with a '/' and in never fails me yet ...