home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / vrac / au2wav.zip / PLAYAU.BAT < prev    next >
DOS Batch File  |  1994-01-26  |  278b  |  9 lines

  1. @echo off
  2. rem will handle either .au or raw ulaw (as used by mime enclosures)
  3. ulaw2wav %1 %temp%\audio.wav
  4. if not exist %temp%\audio.wav goto out
  5. rem playfile comes with PAS-16, replace with whatever plays .wav's
  6. playfile %temp%\audio.wav >nul
  7. del %temp%\audio.wav
  8. :out
  9.