Youtube like FLV player, actionsript problem

Hello! I am new to this forum. I need help making a Youtube like player… I have a deal with a company called Interoute, they provide the flash media server and gives me a url to my movie. It looks something like this:

rtmp://fl.interoute.com/streamrt/{c61a9e68-7458-48a3-8498-3374f8eab}/{94daf70d-aa43-4e23-9211-1ce6297a16}/230.flv

I have read some threads and tutorials and I think I need to use this code.

connection = new NetConnection();
connection.connect(null);
stream = new NetStream(connection);
video.attachVideo(my_video);
my_video.setBufferTime(10);
my_video.play(“my_movie.flv”);

Am I supposed to replace “my_movie.flv” with the above URL? It seems a bit to easy and It doesnt work.

Thanks in advance!