mldonkey-users
[Top][All Lists]
Advanced

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

Re: [Mldonkey-users] mldonkey stalls during preview


From: Pierre Etchemaite
Subject: Re: [Mldonkey-users] mldonkey stalls during preview
Date: Fri, 20 Dec 2002 10:55:51 +0100

Le Fri, 20 Dec 2002 09:03:36 +0100, joseph <address@hidden> a écrit :

> if i preview a file with mplayer thru the x11 gui, my ul and my dl 
> stalls.
> is it a known problem?
> i use mldonkey 2.01+pango20021213b on OSX

Is mplayer started "in background" ("&" at the end of the line) in the
mldonkey_preview script ?

Here's mine :
--------
#!/bin/sh

echo Local File is "$1"
echo Pseudo file name is "$2"

MOVIE_PLAYER="mplayer -nocache"
REAL_PLAYER=realplayer
AUDIO_PLAYER=xmms

case "$2" in
 *.avi | *.mpg | *.mpeg | *.divx  | *.AVI | *.MPG | *.MPEG | *.DIVX)
   $MOVIE_PLAYER  "$1" &
   ;;
 *.rm | *.ram  | *.RM | *.RAM)
   $REAL_PLAYER "$1" &
   ;;
 *.mp3 | *.wav  | *.MP3 | *.WAV)
   $AUDIO_PLAYER  "$1" &
   ;;
 *) 
   xterm -e less "$1" &
   ;;
esac
--------



reply via email to

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