Hi,
Can we keep two video players in prefetch state, some docs say that we can, but when I tried the following code I got an ERROR event in the player listener method, the device I am using is 6630 (6.03.40).
player1 = Manager.createPlayer(is,type);
palyer1.addPlayerListener(this);
player1.realize();
videoControl = (VideoControl) player1.getControl("VideoControl");
item =(Item) videoControl.initDisplay(.....);
form.append(item);
player1.prefetch();
player2 = Manager.createPlayer(is1,type);
palyer2.addPlayerListener(this);
player2.realize();
videoControl2 = (VideoControl) player2.getControl("VideoControl");
item =(Item) videoControl2.initDisplay(.....);
form2.append(item);
player2.prefetch();
Thanks

Reply With Quote


