home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mmoshead.zip / samples / mci / playcd.mci < prev   
Text File  |  1994-02-20  |  523b  |  21 lines

  1. #
  2. # playcd.mci -- play an audio CD
  3. #
  4. open cdaudio01 alias cdda shareable wait
  5. status cdda media present wait
  6. status cdda mode wait
  7. set cdda time format tmsf wait
  8. status cdda volume wait
  9. status cdda number of tracks wait
  10. status cdda length wait
  11. status cdda type track 1 wait
  12. # check unique ID (8 bytes)
  13. info cdda ID wait
  14. # check unique UPC (bcd number)
  15. info cdda UPC wait
  16. seek cdda to start wait
  17. # this provokes an error, for there is no window to notify
  18. play cdda notify
  19. play cdda wait
  20. close cdda wait
  21.