Winamp Presets for your XMMS Music Player
Posted by admin on February 9th, 2007
Email This Post
To get the ‘Default Winamp Presets’ for your XMMS wget the following file
wget http://www.xmms.org/misc/winamp_presets.gz
Then issue the following command:
gunzip -c winamp_presets.gz > ~/.xmms/eq.preset
This will overwrite any existing presets you have.
The next time you run XMMS the presets will be available
If you want to be notified the next time we write something please subscribe to our RSS feed.Thanks for Visiting!


February 10th, 2007 at 11:29 am
Is there any soud equalizer for linux? I use Exaile as default mp3 player, but it doesn’t have an equalizer…
April 11th, 2007 at 12:49 pm
Hey Mato..in Linux you can make your own player with mplayer, check it out:
#!/bin/bash
equalizer=( 0 0 0 0 0 0 0 0 0 0 )
equalizer_default=( 0 0 0 0 0 0 0 0 0 0 )
CLASSICAL=( 0 0 0 0 0 0 -2.5 -2.5 -2.5 -3.4 )
CLUB=( 0 0 2.8 2.0 2.0 2.0 1.1 0 0 0 )
DANCE=( 3.4 2.5 .8 0 0 -2.0 -2.5 -2.5 0 0 )
FULL_BASS=( -2.8 3.4 3.4 2.0 .5 -1.4 -2.8 -3.7 -4.0 -4.0 )
FULL_BASS_TREBLE=( 2.5 2.0 0 -2.5 -1.7 .5 2.8 4.0 4.2 4.2 )
FULL_TREBLE=( -3.4 -3.4 -3.4 -1.4 .8 4.0 4.2 4.2 4.2 4.2 )
LAPTOP_SPEAKERS_HEADPHONES=( 1.7 4.0 2.0 -1.1 -.8 .5 1.7 3.4 4.2 4.2 )
LARGE_HALL=( 3.7 3.7 2.0 2.0 0 -1.7 -1.7 -1.7 0 0 )
LIVE=( -1.7 0 1.4 2.0 2.0 2.0 1.4 .8 .8 .8 )
PARTY=( 2.5 2.5 0 0 0 0 0 0 2.5 2.5 )
POP=( -.5 1.7 2.5 2.8 2.0 0 -.8 -.8 -.5 -.5 )
REGGAE=( 0 0 0 -2.0 0 2.2 2.2 0 0 0 )
ROCK=( 2.8 1.7 -2.0 -2.8 -1.1 1.4 3.1 4.0 4.0 4.0 )
SKA=( -.8 -1.7 -1.4 0 1.4 2.0 3.1 3.4 4.0 3.4 )
SOFT=( 1.7 .5 0 -.8 0 1.4 2.8 3.4 4.0 4.2 )
SOFT_ROCK=( 1.4 1.4 .8 0 -1.4 -2.0 -1.1 0 .8 3.1 )
TECHNO=( 2.8 2.0 0 -2.0 -1.7 0 2.8 3.4 3.4 3.1 )
#————————————————–
# for i in ${CLASSICAL[@]:0} ; do
# output=`echo “scale=1 ; $i/2.8″ | bc -l`
# echo -n “$output ”
# done
#————————————————–
strlen(){
return `echo -n “$1″ | wc -m`
}
likeit(){
clear
echo -e “\e[31me\e[m - equalizer
\e[31mq\e[m - quit
\e[31mr\e[m - remove song"
read -n 1 quest
case $quest in
q)
echo
exit 1 ;;
r)
rm -f "$1"
;;
e)
return 1 ;;
esac
return 0
}
select_equalizer(){
local output=`widtools -menu -label 'Equalizer Preset:' \
Classical Club Dance Full_Bass Full_Bass_Treble Full_Treble Laptop_Speakers_Headphones Large_Hall Live Party Pop Reggae Rock Ska Soft Soft_rock Techno 'NEVERMIND!!!'\
-fn tiny normal -back black -fore white`
case "$output" in
equalizer=( ${LARGE_HALL[*]} ) ;;
1) equalizer=( ${CLASSICAL[*]} ) ;;
2) equalizer=( ${CLUB[*]} ) ;;
3) equalizer=( ${DANCE[*]} ) ;;
4) equalizer=( ${FULL_BASS[*]} ) ;;
5) equalizer=( ${FULL_BASS_TREBLE[*]} ) ;;
6) equalizer=( ${FULL_TREBLE[*]} ) ;;
7) equalizer=( ${LAPTOP_SPEAKERS_HEADPHONES[*]} ) ;;
9) equalizer=( ${LIVE[*]} ) ;;
10) equalizer=( ${PARTY[*]} ) ;;
11) equalizer=( ${POP[*]} ) ;;
12) equalizer=( ${REGGAE[*]} ) ;;
13) equalizer=( ${ROCK[*]} ) ;;
14) equalizer=( ${SKA[*]} ) ;;
15) equalizer=( ${SOFT[*]} ) ;;
16) equalizer=( ${SOFT_ROCK[*]} ) ;;
17) equalizer=( ${TECHNO[*]} ) ;;
*) return 1 ;;
esac
return 0
}
equalizer2mplayer(){
equalizer_args=
local separator=’:’
for i in “${equalizer[@]}” ; do
strlen “$equalizer_args”
[ $? -gt 0 ] && equalizer_args=”${equalizer_args}${separator}”
equalizer_args=”${equalizer_args}${i}”
done
equalizer_args=”equalizer=$equalizer_args”
}
reset_equalizer(){
equalizer=( ${equalizer_default[*]} )
}
max_depth=1
for i ; do
case “$i” in
-g|–global|-global)
max_depth=9
;;
esac
done
myfile=`mktemp`
{
while read l $myfile
equalizer2mplayer
while read f /dev/null 2>&1
if [ $? -ne 0 ] ; then
likeit “$f”
[ $? -eq 1 ] &fi
break
done
reset_equalizer
equalizer2mplayer
done 9
April 11th, 2007 at 12:51 pm
Wow that output didn’t look very good at all lol.
Email me at: hollaway@gmail.com
and I can send you the source code of my one-of-a-kind music player that I use on xterm that’s in the BASH language.
April 12th, 2007 at 8:57 pm
I get the following error:
/.xmms/eq.preset: No such file or directory
And when I locate .xmms I see nothing like this??
Ideas?
April 13th, 2007 at 9:53 pm
You must run command as super user, i guess. Worked for me
(for this just place sudo before the commands)
May 25th, 2007 at 12:35 am
thanks……..working very good
June 8th, 2007 at 10:29 am
Wow, i looked for these presets for a long time. Thank you very much!
June 11th, 2007 at 9:53 pm
The winamp presets worked just great for me with XMMS on Xubuntu 7.04. Thanks
June 11th, 2007 at 10:02 pm
Worked great on Xubuntu 7.04 with XMMS. Ta
December 15th, 2007 at 3:37 pm
Confirmed working Ubuntu 7.10 xmms. Thankyou very much!
December 29th, 2007 at 6:25 am
Excellent, works great on Ubuntu with XMMS.
May 30th, 2008 at 4:27 am
I’m not finding any joy!
“gzip: winamp_presets.gz: not in gzip format”,
yep ~ I followed every step, and even extracted it
and placed it in /.xmms myself…but it no see it.
Oh well…I’ll keep on trying ~
June 3rd, 2008 at 9:28 am
Thanks alot guys.. Its working fine for me.
July 12th, 2008 at 12:28 am
worked like a charm, thanks.
September 15th, 2008 at 4:29 am
Refurbished an old HP machine for a kid at church and the pre-sets worked great on xmms running under PCLOS-Gnome-2008-2. To bad the side attachedspeakers are junk.
Thanks again.
Best regards,
marvinudy