Page 1 of 1

STREAMING PLAYER FLASH

Posted: Mon Apr 09, 2007 5:15 am
by CHIO
Hi folks!!!

I would like to resolve this question...

I like the flash streaming player style about this:

http://www.greykid.com/La_Reine_Soleil

Habitually I make render to QT or AVI out...

What does it would have to make exactly to have in my Web a visualizer of archives flash from render with another format?

Thanks for your repply...

Regards,

Chio

Posted: Mon Apr 09, 2007 5:30 am
by CHIO
An another example to broacast in flash format (see animation work)

http://www.squeakypics.co.uk/

Chio

Posted: Mon Apr 09, 2007 1:28 pm
by Rhoel
It's a two stage process -
  • convert your movie to flash video,
  • then embed into a new swf file or use a webpage player.
Convert mov qt and avi video to Flash video by using some converter like the free Riva FLV Encoder 2.0

Once you have your flv file (and preview jpg image) you can display it on a web page using flowplayer or another web page player.
The code looks confusing but in fact is it very easy to use.
I am using flowplayer here to display Machine Masters - if you save link as this link, you will be able to download the FlowPlayer.swf file.

To display the flash movie, you need to add the following code.

Code: Select all

<object data="FlowPlayer.swf" type="application/x-shockwave-flash" width="480" height="290" align="absmiddle" id="FlowPlayer">
        <param name="allowScriptAccess" value="sameDomain" />
        <param name="movie" value="FlowPlayer.swf" />
        <param name="quality" value="high" />
        <param name="scale" value="noScale" />
        <param name="wmode" value="transparent" />
        <param name="flashvars" value="videoFile=VIDEONAME.flv&autoPlay=false&bufferLength=5&loop=true&progressBarColor1=0xAAAAAA&progressBarColor2=0x555555&autoBuffering=false&splashImageFile=VIDEONAME.jpg&hideControls=false"/>
</object>
Just rename the VIDEONAME.flv and the VIDEONAME.jpg with the name of you movie.

In this example, the Flowplayer and the movie are in the same directory - until you are familiar with the code, best keep it that way.

My movie is 480 x 270. The height is +20 (to allow for the control bar)

Other values:
autoPlay=false ... means the movie will not auto- play.
loop=true ... set to false if you want the movie to play just once.
autoBuffering=false ... play with this to see which is best for your display.
hideControls=false ... does what it says, hides the play controls.


You can also add a FLV to any Flash program - you need to know action script to get the best out of it,
ie, how to load and play the file. Most people just use an external player on the page.

Okay, does that answer your question?

Rhoel

Posted: Mon Apr 09, 2007 2:21 pm
by CHIO
Rhoel wrote: Okay, does that answer your question?
Rhoel
Rhoel:

Yes, off course!!!! thanks a lot. The collaboration spirit in this forum is very great!!!! :D

Thanks,

Chio

Posted: Mon Apr 09, 2007 4:31 pm
by Genete
I have to annotate this topic....
Thanks Rhoel
Genete

Posted: Mon Apr 09, 2007 5:51 pm
by byanfu
Thanks Rhoel,

I havn't heard of flowplayer before. I have been using Flash Video player
http://www.jeroenwijering.com/?item=Flash_Video_Player
and really like it, but flowplayer is nice in that you can have a player without controls. That would be nice for some circumstances.

Posted: Mon Apr 09, 2007 11:44 pm
by J. Baker
I like to encode with On2. I used a beta version of KoolMoves to create this.

Posted: Mon Apr 09, 2007 11:58 pm
by CHIO
Hi folks!!

A lot of solution to resolve my problem!!! Thanks.

Rhoel: I like your animation!!! very good.

Chio

Posted: Wed Apr 11, 2007 8:19 pm
by LittleFenris
I'll throw the obvious solution out. I use the official Flash video encoder and then use Flash and actionscript to display the video on the web. I have also used Dreamweaver to embed a Flash video into an html page (with controls).

I use Flash to make my video player because I can make it look and act however I want.

Posted: Wed Apr 11, 2007 10:32 pm
by Gnaws
LittleFenris wrote:I use Flash to make my video player because I can make it look and act however I want.
Hey Little - do you have any good tutes you'd suggest on doing that? Those Flash components always kick my butt. Especially the ones in Flash 8.

Thanks!!

Posted: Wed Apr 11, 2007 11:49 pm
by LittleFenris
The tuts I found most helpful were on www.gotoandlearn.com He has like a 6-8 part tutorial on making your own Flash video player. I'm far from a programmer and he explains things well enough I got mine working with all the bells and whistles.

Posted: Thu Apr 12, 2007 12:37 am
by Gnaws
Wow, man! Gold mine - THANKS!!!

Posted: Thu Apr 12, 2007 1:54 am
by LittleFenris
Normally he has the videos all setup in his own player, but he's updating the site to be even fancier I guess. All you need is an FLV player to watch them though...I use Wimpy FLV player.