[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[pygame] BUG cd audio
- To: pygame-users@xxxxxxxx
- Subject: [pygame] BUG cd audio
- From: "Tyler Distad" <tyler.distad@xxxxxxxxx>
- Date: Sat, 26 Jul 2008 19:11:38 -0400
- Delivered-to: archiver@xxxxxxxx
- Delivered-to: pygame-users-outgoing@xxxxxxxx
- Delivered-to: pygame-users@xxxxxxxx
- Delivery-date: Sat, 26 Jul 2008 19:11:43 -0400
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:mime-version:content-type:content-transfer-encoding :content-disposition; bh=IPPdB5G24E4D6hm2jVLgg2DfnIXC3xHB0pNfKP5T2MQ=; b=vYVpPVncCfmZS227VfU3MXOEZz5J5NiIsofzRf4SzdXhwXr5mAeuT92SmCMxp9HhEC n+z/LedxPCo6swf31cay2xehaKLOGMlSY/w9keb71wG5Ler1igExBvnEgEyFMItMT0zv n3Rap21KybF8WdTFiChgGWwRHBuBOpHxdA9XA=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=K4sxLsco52n9aK4U9+RaJirA+IwEJVeLdWW0RZ20MrI1ewxLJq5odNpGtH+FjwMqAq 46287GKvojl2XFkAJe2epQqs02+8iPMb2fdNA3XoJU3qKviB/9fBpfDJV0o0w6xUQPvW Z3L4uWEWJ3/8LtYMHfERHyh8b6F6o2u/jpFEs=
- Reply-to: pygame-users@xxxxxxxx
- Sender: owner-pygame-users@xxxxxxxx
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.