We Recommend

HTML: The Definitive Guide HTML: The Definitive Guide
They teach you that learning HTML is like learning any other language and that reading a book of rules can only take you so far. Readers begin writing what may be their first Web page just two pages into the book's second chapter. From there on, they provide a wide range of HTML coding to allow readers to learn from good examples. The book includes a handy "cheat sheet" of HTML codes for quick reference.


Posted By

1man on 07/08/06


Tagged

flash flv video


Versions (?)


Who likes this?

40 people have marked this snippet as a favorite

arturo
aurele
saveasraw
ndegruchy
Taleamus
shamrog12
j4k
trickychicken
millisami
marza
yuconner
zensir
yoshimov
ttscoff
ebukva
SpinZ
Phoenix
jotom
manub
willcodeforfood
vali29
atnexxt
copyleft
marcio
gasface
sjaq
sp1r1t
visuallyspun
skywalker
fukami
snucko
ninedaysoff
xsubodh
usgraphicscom
sosof
mb
zeljkoprsa
Arzakon
alvaroisorna
shii


Flash Video Player HTML Code


Published in: HTML 


URL: http://www.jeroenwijering.com/?item=Flash_Video_Player

Great little flash player for playing FLV files. Code below simply adds them to your web page. Remember to add 20 pixels to the height="" attribute to allow for the player controler.
For the player goto: http://www.jeroenwijering.com/?item=Flash_Video_Player.


  1. <object type="application/x-shockwave-flash" width="400" height="220"
  2. wmode="transparent data="flvplayer.swf?file=movies/holiday.flv">
  3. <param name="movie" value="flvplayer.swf?file=movies/holiday.flv" />
  4. <param name="wmode" value="transparent" />
  5. </object>

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: vsync on January 30, 2008

theres a comma missing there, after the "transparent". anyway, i'll advise people to use "Opaque" wmode, for better performances and to fix some other issues.

You need to login to post a comment.