Guido van Rossum | b950629 | 1992-04-13 18:38:20 +0000 | [diff] [blame] | 1 | These are some programs to work with the SCSI CD-ROM player's audio |
| 2 | interface (see cdaudio(3) in IRIX 4.0[.2?] or higher). At the moment |
| 3 | the Python code is not very clean, sorry about that... |
| 4 | |
| 5 | cdwin.py A trivial window interface to play a CD over the CD |
| 6 | player's audio jack. More functionality is left as an |
| 7 | excersice to the reader. Uses module stdwin. |
| 8 | |
| 9 | listcd.py List the table-of-contents of a CD (data CDs will |
| 10 | appear as a single track). |
| 11 | |
| 12 | playcd.py Read audio data from the CD and play it over the |
| 13 | Indigo's built-in speker or audio jack. Uses module al. |
| 14 | |
| 15 | sendcd.py Read audio data from the CD and send it as UDP packets |
| 16 | over the network (to readcd.py). |
| 17 | |
| 18 | readcd.py Receive UDP packets containing CD audio data (from |
| 19 | sendcd.py) and play them over the Indigo's built-in |
| 20 | speaker or audio jack. Uses module al. (Doesn't |
| 21 | actually use module cd.) |
| 22 | |
| 23 | Note that to read *data* CD-ROMs you must open /dev/rdsk/dks0d4s7... |