| Loonababe 2007-07-16, 6:16 pm |
| Hey Flasher,
I'm having an SWF file embedded into a webpage that connects to a Flash Media
Server and plays a live stream. Everything works fine except for the huge
amount of cache the whole application needs. After 15 minutes or so the cache
of the Internet Explorer is about 100 KByte and keeps getting up even higher.
Any ideas why that happens? Can I somehow reduce the cache or do I have to call
Netstream.clear() from time to time?
Thanks in advance!
Oh, by the way, here's the Flash code:
// Open connection to the server
client_nc = new NetConnection();
client_nc.connect("rtmp://170.30.17.104/streamcp/room_01", "Client");
// Create input stream
in_ns = new NetStream(client_nc);
Replay_video.attachVideo(in_ns);
Peplay_video.clear();
in_ns.play("rtl2");
|