# Streaming flv audio

**URL:** https://forum.kirupa.com/t/streaming-flv-audio/238708
**Category:** Uncategorized
**Created:** [September 14, 2007, 2:47am UTC](https://forum.kirupa.com/t/streaming-flv-audio/238708 "2007-09-14T02:47:46Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![deAd](https://avatars.discourse-cdn.com/v4/letter/d/43a26b/32.png) [@deAd](https://forum.kirupa.com/u/deAd)
#### Post date: [September 14, 2007, 2:47am UTC](https://forum.kirupa.com/t/streaming-flv-audio/238708/1 "2007-09-14T02:47:46Z")

</div>

I have an flv file on the web that i need to stream from flash, and inside a class i have this code:

```auto
            var pStream:FLVPlayback = new FLVPlayback();
            pStream.addEventListener(VideoEvent.STATE_CHANGE, function(event){ trace("state change: " + event.target.state); });
            pStream.source = sURL;
            pStream.play();

```

however, nothing plays (it’s not a video, it’s just an audio flv) and the only thing traced is “stage change: loading”

can anyone help?
