rkg has asked for the wisdom of the Perl Monks concerning the following question:
Is there a way I create a file that I could burn to CD with 60 minutes of this beeping that will play back on an audio CD player?use Win32::Sound; use Time::Hires qw(sleep); use strict; $|++; Win32::Sound::Volume('100%'); while (1) { print "."; Win32::Sound::Play("SystemQuestion"); Win32::Sound::Stop(); sleep(30); }
Thanks!
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Win32 sound to file to audio CD
by benn (Vicar) on Oct 05, 2003 at 19:27 UTC | |
Re: Win32 sound to file to audio CD
by PodMaster (Abbot) on Oct 06, 2003 at 05:38 UTC | |
Re: Win32 sound to file to audio CD
by rkg (Hermit) on Oct 07, 2003 at 18:21 UTC |