cplay-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cplay-dev] FLAC support


From: Andreas
Subject: Re: [cplay-dev] FLAC support
Date: Sat, 22 Jul 2006 08:27:51 +0200
User-agent: Thunderbird 1.5.0.4 (Windows/20060516)

Philip M. White schreef:
Greetings, all;

I recently discovered `cplay` after a friend recommended it, and I love
it.  Thanks a lot for making it and maintaining it.

The only thing that I am missing is FLAC support; my collection consists
of a ton of Ogg Vorbis files (thanks for supporting that, BTW) and some
FLAC files.  Are there any plans to add FLAC support?

It's already supported; see this line of code:

    FrameOffsetPlayer("ogg123 -q -v -k %d %s", "\.(ogg|flac)$"),


Here are some additional formats for which I added support:

    NoOffsetPlayer("ape123 %s", "\.ape$"),
    NoOffsetPlayer("shn123 %s", "\.shn$"),
    NoOffsetPlayer("speexdec %s", "\.spx$"),
    NoOffsetPlayer("mplayer -slave %s", "\.(wma|wav)$")
    NoOffsetPlayer("mppdec --start %d %s /dev/dsp", ".*\.mp[cp+]$"),

Here's "ape123":

#!/bin/sh
mac "$1" - -d | bplay

And "shn123":

#!/bin/sh
shorten -x $1 | bplay


         Andreas




reply via email to

[Prev in Thread] Current Thread [Next in Thread]