-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

I think you will like it.  It is Alsa compatible, but I don't remember
what I had to tweak to make it work.  When I mention scripting I wasn't
kidding.  I actually use it as my gradual alarm clock in the morning via
crontab.  It takes about two minutes to get going and wakes me up gradually.

#!/bin/sh

{
mpcadd grieg
mpc play
for ((i = 0; $i < 100; i=$i + 1));
do
        mpc volume $i;
        sleep 1;
done

} > /dev/null
#end#

where mpcadd is another script I wrote that makes adding files easier.

#!/bin/bash
mpc search filename $1 | mpc add
mpc play
#end#

I believe that the MPD port can be configured so that mpd clients can
connect directly within a network.  I do know that most of the gui
clients are horrible.  I wouldn't recommend gmpc being particularly bad
compared to the slick gkrellm and command line.

Have fun.  Let us know what you end up using.

Oh, and so you don't have to search
the homepage is http://www.musicpd.org it has both the server and links
to clients, but you should find most among different distributions
repositories anyways.

~Joshua
Michael Moore wrote:
>>Oh, You want a music server?  I have one that is extremely light weight.
>>Music player Daemon (mpd).  It runs as its own user and have a flexible
>>API.  You can control it via a command line (imagine scripting), a
>>gkrellm plugin or numerous other was including phpMP, a web interface.
>>You just give it a directory, and it builds a music database and if you
>>wanted to do some remote music you can use NFS or samba and just point
>>it to the mounted location.
>>I have been using it for ages because I can turn on a song and log off,
>>and my roommate can log in and control the mpd without any hassle.
> 
> 
> Ooh. That sounds good too. I'll look at that one tomorrow too.
> 
> --
> Michael Moore
> -------------------------------
> www.stuporglue.org -- Donate your used computer to a student that needs it.
> 
> --------------------
> BYU Unix Users Group 
> http://uug.byu.edu/ 
> 
> The opinions expressed in this message are the responsibility of their
> author.  They are not endorsed by BYU, the BYU CS Department or BYU-UUG. 
> ___________________________________________________________________
> List Info: http://uug.byu.edu/cgi-bin/mailman/listinfo/uug-list
> 
> 
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFD6DteyZ4qqW21pBoRApxfAKDFOR583XW3I4bwFl4GM2oygTlSCwCcDveG
xHP4f0w1wcAnzwl2K23qstg=
=C8T8
-----END PGP SIGNATURE-----
#!/bin/sh

{
mpc clear
mpcadd grieg
mpc play
for ((i = 0; $i < 100; i=$i + 1)); 
do 
        mpc volume $i; 
        sleep 1; 
done 

} > /dev/null

#!/bin/bash
mpc search filename $1 | mpc add
#mpc search title $1 | mpc add
mpc play
--------------------
BYU Unix Users Group 
http://uug.byu.edu/ 

The opinions expressed in this message are the responsibility of their
author.  They are not endorsed by BYU, the BYU CS Department or BYU-UUG. 
___________________________________________________________________
List Info: http://uug.byu.edu/cgi-bin/mailman/listinfo/uug-list

Reply via email to