[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] BUG cd audio



The CD probably has its own separate volume mixer, and that mixer is 
probably muted by default.

---
James Paige

On Sat, Jul 26, 2008 at 07:11:38PM -0400, Tyler Distad wrote:
> On a Dell Inspiron E1505 running  Ubuntu 8.04 with PyGame 1.8 does not
> play CD audio as expected.
> 
> The following code results in the CD track apparently playing, but
> without audio. The CD spins up for a length of time equaling that of
> the track length. All other sound functionality on the computer works
> perfectly.
> 
> --------------------
> 
> import pygame.cdrom as cdrom
> 
> cdrom.init()
> 
> cd = cdrom.CD(0)
> cd.init()
> 
> cd.play(0, 0)
> 
> -------------
> 
> illume on the IRC channel recommend I submit this bug report.
> 
>