# Pause FLV on first frame

**URL:** https://forum.kirupa.com/t/pause-flv-on-first-frame/112482
**Category:** Uncategorized
**Created:** [June 8, 2004, 8:18am UTC](https://forum.kirupa.com/t/pause-flv-on-first-frame/112482 "2004-06-08T08:18:19Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kkrakatau](https://avatars.discourse-cdn.com/v4/letter/k/6bbea6/32.png) [@kkrakatau](https://forum.kirupa.com/u/kkrakatau)
#### Post date: [June 8, 2004, 8:18am UTC](https://forum.kirupa.com/t/pause-flv-on-first-frame/112482/1 "2004-06-08T08:18:19Z")

</div>

How do you pause an FLV as soon as it loads, so that it freezes on the first frame of the movie?

I can get it to pause 3 or 4 frames after it has loaded by using the following code:  
myNetStream.onStatus = function(infoObject)  
{  
if(infoObject.code == “NetStream.Buffer.Full”)  
{  
myNetStream.pause();  
}

}  
But with the above approach you can see the first few frames play until the buffer is full (obviously).

Does anyone have any suggestions?
