diff options
Diffstat (limited to 'find_tuning')
-rwxr-xr-x | find_tuning | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/find_tuning b/find_tuning index aee1be3..abbd906 100755 --- a/find_tuning +++ b/find_tuning @@ -14,6 +14,8 @@ # with mplayer. This means we can actually use find_tuning on video files. # It also means we're trusting the input filename extension to be correct! +system("rm -f /tmp/find_tuning_*"); + if($ARGV[0] && $ARGV[0] eq '-q') { $quiet++; shift; @@ -29,7 +31,7 @@ for(@ARGV) { } else { $infile = "/tmp/find_tuning_$$.wav"; #$rm_infile = 1; - warn "Decoding $_ with mplayer\n" unless $quiet; + warn "Decoding $_ with mplayer: $infile\n" unless $quiet; system("mplayer -really-quiet -benchmark -vo null -ao pcm:fast:file=\"$infile\" \"$_\""); } |