# FlvComponent bug when looping, any help?

**URL:** https://forum.kirupa.com/t/flvcomponent-bug-when-looping-any-help/293395
**Category:** flash
**Created:** [July 28, 2009, 1:35pm UTC](https://forum.kirupa.com/t/flvcomponent-bug-when-looping-any-help/293395 "2009-07-28T13:35:00Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![humbucker](https://avatars.discourse-cdn.com/v4/letter/h/278dde/32.png) [@humbucker](https://forum.kirupa.com/u/humbucker)
#### Post date: [July 28, 2009, 1:35pm UTC](https://forum.kirupa.com/t/flvcomponent-bug-when-looping-any-help/293395/1 "2009-07-28T13:35:00Z")

</div>

Hey there,

I’m using the FLV component in a document class to display a full screen seamless loop video.  
The problem is that when the video is autorewinded and starts looping, there is a slowdown during maybe 1 sec, is it possible to arrange something, cuase i think it will be even worse when published online.

```auto

        myVideo.source = "sky.f4v";
        addChild(myVideo);
        myVideo.x=0;
        myVideo.y=0;
        myVideo.width = stage.stageWidth;
        myVideo.align = "topLeft";
        myVideo.scaleMode = "noScale";
        myVideo.autoRewind = true;
        myVideo.height = stage.stageHeight;
        myVideo.addEventListener(VideoEvent.COMPLETE, completeHandler);

    public function completeHandler(event:VideoEvent):void {
        myVideo.seek(0);
        myVideo.play();
    }

```

many thanks
