programming-examples/perl/Win32/Play .wav file.pl
2019-11-15 12:59:38 +01:00

10 lines
137 B
Perl

#!/usr/bin/perl -w
use strict;
use Win32::Sound;
Win32::Sound::Volume(65535);
while (<*.wav>) {
Win32::Sound::Play($_);
}