Help for this page

Select Code to Download


  1. or download this
    use Win32::Sound;
        # Create the object
    ...
        1 until $WAV->Status();  # wait for completion
        $WAV->Save("sinus.wav"); # write to disk
        $WAV->Unload();          # drop it
    
  2. or download this
    use Win32::Sound;
        # Create the object
    ...
        $WAV->Unload();          # drop it
    
    exit;