PDA

View Full Version : about Mplayer


giacay
03-11-2010, 02:50 AM
After I use Mplayer or KMplayer to watch movies, the CPU alway show 100%, so I must restart my N900, who can solvle this problem. Thanks

ossipena
03-11-2010, 02:51 AM
killall -9 mplayer to console with root access should work.

giacay
03-11-2010, 02:57 AM
Can you explain clearly? I type "killall -9 mplayer" it's display "killall: mplayer: no process killed"

[DarkGUNMAN]
03-11-2010, 03:09 AM
Open a terminal as root, type: TOP then Enter. This is the process monitor and will tell you which process needs to be killed. using killall -9 processname

giacay
03-11-2010, 04:17 AM
When I type TOP: it display /usr/libexec/gst-v (CPU 98.2% ) and I type KILALL -9 /usr/libexec/gst-v it display "killall: /usr/libexec/gst-v : no process killed" also I type "killall -9 gst-v" the same result

ossipena
03-11-2010, 04:31 AM
When I type TOP: it display /usr/libexec/gst-v (CPU 98.2% ) and I type KILALL -9 /usr/libexec/gst-v it display "killall: /usr/libexec/gst-v : no process killed" also I type "killall -9 gst-v" the same result

try

ps aux |grep gst-v

it should give you something like
1249 user 0 SW [/usr/libexec/gst-v]

then kill -9 1249

note you must pick the correct number from ps, don't use 1249!