Re: [pygame] pygame mixer problem upgrading to ubuntu intrepid

2008-11-19 Thread John Eriksson
I have the same problem on Ubuntu 8.10. Did you install Pygame from the ubuntu repository or from the source? /John Eriksson sön 2008-11-16 klockan 16:37 -0600 skrev pymike: > Re-installed and re-booted, and it's still not working. > > On Sun, Nov 16, 2008 at 4:23 PM, pymike <[EMAIL PROTECTED]>

Re: [pygame] pygame mixer problem upgrading to ubuntu intrepid

2008-11-16 Thread pymike
Re-installed and re-booted, and it's still not working. On Sun, Nov 16, 2008 at 4:23 PM, pymike <[EMAIL PROTECTED]> wrote: > Still not working. I'll try rebooting to see if that fixes it :S > > Has anyone had this problem? > > > On Sun, Nov 16, 2008 at 4:20 PM, pymike <[EMAIL PROTECTED]> wrote: >

Re: [pygame] pygame mixer problem upgrading to ubuntu intrepid

2008-11-16 Thread pymike
Still not working. I'll try rebooting to see if that fixes it :S Has anyone had this problem? On Sun, Nov 16, 2008 at 4:20 PM, pymike <[EMAIL PROTECTED]> wrote: > Strike that, it's still delaying. If I raise it it starts running too fast. > I'm re-installing pygame to see if that will fix it. >

Re: [pygame] pygame mixer problem upgrading to ubuntu intrepid

2008-11-16 Thread pymike
Strike that, it's still delaying. If I raise it it starts running too fast. I'm re-installing pygame to see if that will fix it. On Sat, Nov 15, 2008 at 5:10 PM, pymike <[EMAIL PROTECTED]> wrote: > pygame.mixer.pre_init(44100*4) seams to fix it. Is there a global variable > I can change to fix th

Re: [pygame] pygame mixer problem upgrading to ubuntu intrepid

2008-11-15 Thread pymike
pygame.mixer.pre_init(44100*4) seams to fix it. Is there a global variable I can change to fix this or something? It also appears to be a local problem with my OS, so distributing games might get painful... Thanks :-) On Sat, Nov 15, 2008 at 4:57 PM, pymike <[EMAIL PROTECTED]> wrote: > Hey, than

Re: [pygame] pygame mixer problem upgrading to ubuntu intrepid

2008-11-15 Thread pymike
Hey, thanks for the reply :-) I already had version 1.8.1. Adding pygame.mixer.pre_init(1024*3) [before pygame.init()] delays the sound even more, and the playback is distorted. I also tried 1024 and 1024*2 and got the same (or similar) results :S On Sat, Nov 15, 2008 at 3:59 PM, Charlie Nolan <

Re: [pygame] pygame mixer problem upgrading to ubuntu intrepid

2008-11-15 Thread Charlie Nolan
You probably just upgraded pygame from 1.7.1 to 1.8.1. 1.8.1 increased the default sound buffer size to avoid various hiccups in sound playback. (It was supposed to be in 1.8.0, but a bug caused it to decrease and be stuck there.) You can override it by calling pygame.mixer.init or .pre_init and

[pygame] pygame mixer problem upgrading to ubuntu intrepid

2008-11-15 Thread pymike
Hi all, I recently upgraded my Ubuntu from Hardy (8.04) to Intrepid (8.10). Now sound/music are delaying about 10-20 milleseconds in pygame. :-S Sounds in other SDL applications (I've tested SuperTux 2 and Wormux) work perfectly, which makes me think it's not a sound driver issue. Can anyone he