#!/bin/sh

#trap "" 2

DECODE=`dirname $0`/decoder

while [ $# -ge 1 ]
do
	$DECODE < "$1" | vplay -b 16 -s 44100 -S
	shift
done

