D:
/
vhosts
/
inpeacenet.com
/
httpdocs
/
files
/
videos
/
flowplayer
/
example
/
up file
home
<html><head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <!-- A minimal Flowplayer setup to get you started --> <!-- include flowplayer JavaScript file that does Flash embedding and provides the Flowplayer API. --> <script type="text/javascript" src="flowplayer-3.1.1.min.js"></script> <!-- some minimal styling, can be removed --> <link rel="stylesheet" type="text/css" href="style.css"> <!-- page title --> <title>Minimal Flowplayer setup</title> </head><body> <div> <!-- this A tag is where your Flowplayer will be placed. it can be anywhere --> <a href="WeAreLove.flv" style="display:block;width:600px;height:496px" id="player"> </a> <!-- this will install flowplayer inside previous A- tag. --> <script> flowplayer("player", "../flowplayer-3.1.1.swf", { clip: { autoPlay: false, autoBuffering: true // <- do not place a comma here } }); //f("player").pause(); //$f().stop(); </script> </body></html>