HOWTOUSE
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. Cdda2wav User guide
  2. ===================
  3. NOTE: expressions in angle braces have to be substituted with
  4.       the corresponding numerical values.
  5.       For example: <delay in seconds> has to be substituted
  6. with the numerical value to be used.
  7. Common tasks
  8. ============
  9. NOTE: The examples used here depend on proper default settings for interface
  10. method and devices as specified in the Makefile. They can be overriden with
  11. command line parameters, but here I choose to focus on simple examples. 
  12. Copy complete audio CDs
  13. 1. Copy an audio CD into wav files one per track.
  14. cdda2wav -B
  15.    will produce the sample wav files (one per track)
  16. audio_01.wav
  17. audio_02.wav
  18. ...
  19.    and the corresponding description files
  20. audio_01.inf
  21. audio_02.inf
  22. ...
  23. 2. Same as above but include MD-5 type signatures
  24. cdda2wav -B -M<length>
  25. 3. Same as above but use other file name ('party_cd.wav')
  26. cdda2wav -B -M<length> party_cd.wav
  27. Copy single tracks
  28. 1. Copy one track (eg track 6) into a wav file.
  29. cdda2wav -t6
  30.    will produce a wav file including track 6
  31. audio.wav
  32.    and
  33. audio.inf
  34. Copy parts of tracks
  35. 1. Copy from given start time to end of track
  36. cdda2wav -t6 -o<delay in 1/75 seconds>
  37.    will record track 6 starting at track time <delay>/75 seconds
  38.    from track beginning upto the end of track.
  39. 2. Copy from given start time and record for a given time
  40. cdda2wav -t6 -o<delay in 1/75 seconds> -d<time to record in seconds>
  41.    will record track 6 starting at track time <delay>/75 seconds
  42.    from track beginning for <time to record in seconds> seconds.
  43. Copy tracks into a pipe
  44. cdda2wav -t6 -Oraw - | audio_compressor
  45.    will feed the audio samples (in big endian format) of track 6
  46.    into a secondary program audio_compressor.
  47. (See also script cdda2mp3(.new) for a suggestion, how to process all tracks of
  48. an audio cd with a MPEG-Layer3 encoder (not included here).)
  49. Miscellaneous
  50. 1. Use cdda2wav as a cd player
  51. cdda2wav -eN -t6
  52.    will copy the audio samples into a sound card (if sound card support
  53.    is compiled in) and will not write any file.
  54. 2. Get complete information on the cd
  55. cdda2wav -v63 -Nd0.01
  56.    will try to find out a media catalog number and track related
  57.    information (ISRCs) in addition to indices. For CD-Extra discs
  58.    limited support exists to retrieve additional information.