# Progressive dwnld FLV getting audio only

**URL:** https://forum.kirupa.com/t/progressive-dwnld-flv-getting-audio-only/200753
**Category:** Uncategorized
**Created:** [September 14, 2006, 7:43pm UTC](https://forum.kirupa.com/t/progressive-dwnld-flv-getting-audio-only/200753 "2006-09-14T19:43:14Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![littlepowell](https://avatars.discourse-cdn.com/v4/letter/l/a6a055/32.png) [@littlepowell](https://forum.kirupa.com/u/littlepowell)
#### Post date: [September 14, 2006, 7:43pm UTC](https://forum.kirupa.com/t/progressive-dwnld-flv-getting-audio-only/200753/1 "2006-09-14T19:43:14Z")

</div>

Help! I’m using the below code and the result is that the .FLV does start downloading and playing as it should, except that I get only sound, no video.

```auto

this.attachMovie("msgVideo", "MsgVideo", 1);
var ncConnection:NetConnection = new NetConnection();
ncConnection.connect(null);
var nsStream:NetStream = new NetStream(ncConnection);
MsgVideo.attachVideo(nsStream);
nsStream.play("0521061.flv");

```

Can anyone tell me what I"m doing wrong?
