Search  

SIMPLE SINGLE FLV PLAYER

HomeBrowse CategoriesFlashApplications and UtilitiesSimple single flv player

1. Plays a flv file you place in the main folder.

2. It can be set to start playing or not from the beginning.

3. The initial procentage of volume can be set in the XML file.

4. It uses progressive streaming for playing the video.

Posted 11 months ago

what are the dimensions?

does it resize to whatever is needed?

Posted 9 months ago

Hello, The player is not resizable. The dimensions are 320×240. I’ll make a new much customizable version. Thank you.

Posted 9 months ago

hi! i have bought this and i cannot open it in my flash 8.

Posted 7 months ago

Hi alamin

If you want to open the source in Flash 8 first you need someone to open it in Flash CS3 and save it as Flash 8. That’s the reason.

Thank you.

Posted 7 months ago

Hi can you plz tell me how can i load the flv after 3 or 5 second

Posted 3 months ago

Hello webari.

If you want the player to start playing the movie from the begining with a delay of 3 or 5 seconds, this is what you have to do:
    – go in the XML file and leave the value of the “ start” tag to "true"
    – in the “flvPlayer.as” code file go to line 68 and instead of
        ns.play(videoName);
            write
        setTimeout(my_delayedFunction, delayTime);
The parameters of this functions are:
    – “my_delayedFunction” – the function you have to define somewhere like this:
         function my_delayedFunction()
         {
             ns.play(videoName);
         }
    – “delayTime” – the delay time in miliseconds you want(for example for 3 seconds it should be 3000).

That should be enough so the player load the flv after 3 or 5 second.

Please let me know if it worked for you.

Posted 3 months ago

Thanks’ for your reply andrei your script is working and i want another help from you i want to know two things first one is by this player can I play M4V file ? and other one is abt xml node ….. how can i increase the playlist size

Posted 3 months ago

For webari:

The player suports any h.246 encoded file. The m4v is inlcluded in this category. So it should work fine.

About the playlist… The player doesn’t have one so you can’t increase it.

Cheers

Posted 3 months ago

HI,

How hard is it to have a Play button image on the screen when it is set to not auto play?

Posted 2 months ago

Hei Globo_Logic.

Not that dificult. It has to call the same code like the play button in the bar. But that code has to be changed so it makes invisible the screen play button on pressing one of them. That should work for you.

Thanks for your interest in my players.

Posted 2 months ago

Hi,

Is there anyway you could send the info to do this. I have flash CS but dont know that much about actionscript etc.

Posted 2 months ago

Hei, Globo_Logic.

It’s not that easy to explain here word by word how to do it. You have to work also in the FLA but also in code.

In the next version I’ll add a play button in center.

Thanks for asking.

Posted 2 months ago