[pygame] Multiple sound cards

2014-10-16 Thread Scott Sumner
All, Is there any support for multiple sound cards in PyGame, or an easy way to "route" sound? I will have two physical sound cards installed in the machine and specific sounds for each one. They don't have to cross over. I can also run multiple instances of Python / PyGame if that's easier. Th

Re: [pygame] Quick OS survey - 2013

2013-12-05 Thread Scott Sumner
34% Windows 7 17% Ubuntu 16% Xbuntu 33% Raspian On Fri, Dec 6, 2013 at 12:27 AM, Miriam English wrote: > Puppy Linux 97% > Android 1% > Ubuntu Linux 1% > various flavors of MSWindows and FreeDOS 1% > > > Jason Marshall wrote: > >> pygamers, which computer operating system(s) have you used this

Re: [pygame] Making UPS smart with Pygame and Joystick input socket

2011-04-13 Thread Scott Sumner
I believe that the joystick can be initialized and read without a window. I do this when developing some of my games -- use a simple console menu to select my input device and setup configuration then launch the graphics. If you don't use the event system and just use the "read the joystick direc

[pygame] Pygame on 2nd monitor

2010-08-15 Thread Scott Sumner
Hello all, I'm trying to run my pygame application on my laptop's VGA output so I have an "operator view" on the laptop screen and a "public view" on the external screen. They are using two different processes and communicating via TCP so that's not an issue. The only problem I'm having is that

Re: [pygame] Pygame in Linux without X Windows

2009-01-07 Thread Scott Sumner
OK, I've never built SDL-Lib from source, can someone give me a hint as to where to start with this? Scott On Wed, Jan 7, 2009 at 9:59 AM, evil monkey < there-is...@evil-monkey-in-my-closet.com> wrote: > OK, it works for me, but only with SDL_VIDEODRIVER=fbcon (aalib and > directfb will just ha

[pygame] Pygame in Linux without X Windows

2009-01-05 Thread Scott Sumner
Hello all, I've got a Debian Linux system that I'm working with and I wondered if its possible for Pygame to do graphics without X-Windows installed? The system is being designed to run on a serial or network console but I'd still like to output select things to the monitor. Can Pygame do th

Re: [pygame] mixer.music question

2008-12-30 Thread Scott Sumner
pygame.mixer.init twice worked!! Many thanks! My project shall go on! Scott On Tue, Dec 30, 2008 at 2:55 AM, Carles Pina i Estany wrote: > > Hi, > > On Dec/30/2008, Scott Sumner wrote: > > That gives me an identical result: "There is no soundcard" > > try

Re: [pygame] mixer.music question

2008-12-30 Thread Scott Sumner
Debian Linux, kernel 2.6 (mainly for SATA support). onboard audio on a Biostar P4M900-M7 On Tue, Dec 30, 2008 at 1:57 AM, Jake b wrote: > What operating system? > > -- > Jake >

Re: [pygame] mixer.music question

2008-12-29 Thread Scott Sumner
That gives me an identical result: "There is no soundcard" Scott 2008/12/30 Παναγιώτης Τσιμπέρης > Try something like: pygame.mixer.init(44100, > > -16, 2, 4096) > > --- Scott Sumner wrote: > > > yeah, the only uncommented line in the prog

Re: [pygame] mixer.music question

2008-12-29 Thread Scott Sumner
yeah, the only uncommented line in the program is pygame.mixer.init(22050, -16, 2, 3072) and it says "There is no soundcard" Scott On Mon, Dec 29, 2008 at 11:08 PM, Jake b wrote: > the line "pygame.mixer.init()" fails? > > -- > Jake >

[pygame] mixer.music question

2008-12-29 Thread Scott Sumner
Hello, I'm trying to use Pygame to play MP3s but it says "there is no soundcard" whenever I try to initialize the mixer. Both MPG123 and espeak work fine on the soundcard. How can I tell Pygame where to find my soundcard? Thanks, Scott