exception -- cannot create player

I have an application that is streaming video. I've been developing it with the sprint wireless toolkit and everything runs fine on the emulator. I went to try and build it with the wtk2.2 setup from sun and keep getting the cannot create player http:.... error Same exact code. I'm including the media api jsr whatever and I have no clue. Here is the run function that creates the player. Any suggestions.

public void run() {

try {

repaint();

//Alert alert = new Alert("Loading. Please wait ....");

//alert.setTimeout(Alert.FOREVER);

midlet.displayMgr.pushDisplayable(midlet.movieLoader);

midlet.movieLoader.watchLoader(this);

//midlet.displayMgr.pushDisplayable(alert);

//player = Manager.createPlayer("http://69.149.145.131/VideoStream/Movie_2.mp4");

System.out.println("This is the movie being loaded: "+videoUrl);

player = Manager.createPlayer(videoUrl);

player.addPlayerListener(this);

//player.setLoopCount(-1); // play indefinitely

player.setLoopCount(1); // play indefinitely

player.prefetch(); // prefetch

player.realize(); // realize

player.start(); // and start

} catch(Exception e) {

System.err.println(e);

e.printStackTrace();

}

}

[1285 byte] By [shiznya] at [2007-10-2 4:09:36]
# 1
Do I need to do something special to stream video over my server. I mean something special to the server? I can download and run other applications OTA but when I try my video apps I get a garbled video signal with a normal audio signal.
shiznya at 2007-7-15 23:32:46 > top of Java-index,Java Mobility Forums,Java ME Technologies...