programming-examples/perl/Win32/Play .wav file.pl

10 lines
137 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/bin/perl -w
use strict;
use Win32::Sound;
Win32::Sound::Volume(65535);
while (<*.wav>) {
Win32::Sound::Play($_);
}