hi
I ran the following method call to start mplayer from java:
Runtime.getRuntime().exec(new String[] { “mplayer -vo gl2 -fs”, “movie.avi” });
After one or two seconds the movie began to play. But only for about half a minute. Than mplayer hung. My program proceeded to run as normal so I could close it on a common way (pressing escape) and mplayer closed with it.
I guess some memory has been filled up. Anyways, does anybody know this problem and a solution?
Qudus
Edit: Ah, before somebody asks, it is not the movie or mplayer itself. They run perfectly from the commandline.