# FlV streaming from FMS

**URL:** https://forum.kirupa.com/t/flv-streaming-from-fms/243552
**Category:** flash
**Created:** [November 8, 2007, 8:18am UTC](https://forum.kirupa.com/t/flv-streaming-from-fms/243552 "2007-11-08T08:18:16Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![sparkdemon](https://avatars.discourse-cdn.com/v4/letter/s/958977/32.png) [@sparkdemon](https://forum.kirupa.com/u/sparkdemon)
#### Post date: [November 8, 2007, 8:18am UTC](https://forum.kirupa.com/t/flv-streaming-from-fms/243552/1 "2007-11-08T08:18:16Z")

</div>

hello sirs/madams

have written the following code:

client\_nc = new NetConnection();  
// Show connection status in output window  
client\_nc.onStatus = function(info) {  
trace("Level: " + info.level + newline + "Code: " + info.code);  
play\_ns = new NetStream(client\_nc);  
myvid.attachVideo(play\_ns); // Specify where to display video.  
play\_ns.play(“get\_video.flv”); // play() uses the same name as publish() above.  
trace(play\_ns.bytesLoaded);  
};  
// Connect to the application  
client\_nc.connect(“rtmpt://localhost:1936/tv”);

//\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_

play\_ns.bytesLoaded outputs : 0

connection to fms is successful, but there is no output.  
i want the flv to play from the fms directly into the swf

please guide …
