build: link nums only when BT is enabled (ref #27)
[mldonkey.git] / distrib / mldonkey_previewer
blob2e46d33e80cf3d8717f1c8842bc29ce52c366b24
1 #!/bin/sh
3 echo Local File is "$1"
4 echo Pseudo file name is "$2"
6 MOVIE_PLAYER='mplayer -vo sdl'
8 case "$2" in
9 *.avi | *.mpg | *.mpeg | *.divx | *.AVI | *.MPG | *.MPEG | *.DIVX | *.ogm | *.OGM )
10 $MOVIE_PLAYER $1 &;;
11 *) echo No player for this file;;
12 esac