WavPack playback on linux?
Reply #2 –
Until you get a plugin for your favorite media player, you can write a little script to use the command line tools.
You ought to have a command called 'wavplay' or 'play' on Linux. Look for a program called 'audioplay' on the *BSDs
plug this command into a little script:
#!/bin/sh
# wvplay - play wavpack on command line
for file in "$@"; do
echo "np: $file"
wvunpack "$file" - | wavplay -
done
and then
$ wvplay *.wv