# Video Streaming Problem (Please Help!)

**URL:** https://forum.kirupa.com/t/video-streaming-problem-please-help/206209
**Category:** flash
**Created:** [November 6, 2006, 5:30am UTC](https://forum.kirupa.com/t/video-streaming-problem-please-help/206209 "2006-11-06T05:30:47Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Mistykal](https://avatars.discourse-cdn.com/v4/letter/m/8edcca/32.png) [@Mistykal](https://forum.kirupa.com/u/Mistykal)
#### Post date: [November 6, 2006, 5:30am UTC](https://forum.kirupa.com/t/video-streaming-problem-please-help/206209/1 "2006-11-06T05:30:47Z")

</div>

First of all, i hope this is the right forum, since i saw no specific forum for FMS. I hope there are some people with experience in FMS and video streaming here who can help me out.

I have a problem streaming files from my Flash Media Server.

I have installed FMS and created a directory called “test” inside the “applications” folder and made a “test.flv” inside it.  
I made a “test.swf” on another computer with a flv playback component in it called “player”.

I’m using the following code in case something’s wrong with it:

```auto
var connection_nc:NetConnection = new NetConnection();
connection_nc.connect("rtmp://myipaddress/test");
var stream_ns:NetStream = new NetStream(connection_nc);
stream_ns.onStatus(_info);
trace(_info.code);
player.attachVideo(stream_ns);
stream_ns.play("test.flv");

```

I don’t know if i have missed some step for making my app work in FMS or if there’s something wrong with my clientside code. Please help!

The error message i get is:

```auto
1000: Unable to make connection to server or to find FLV on server

```
