Skip to content
This repository has been archived by the owner on Aug 17, 2019. It is now read-only.

Commit

Permalink
Flowplayer used to view webcam.
Browse files Browse the repository at this point in the history
  • Loading branch information
mithro committed Apr 30, 2011
0 parents commit b3b06c5
Show file tree
Hide file tree
Showing 8 changed files with 1,210 additions and 0 deletions.
721 changes: 721 additions & 0 deletions flowplayer/LICENSE.txt

Large diffs are not rendered by default.

350 changes: 350 additions & 0 deletions flowplayer/README.txt

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions flowplayer/example/flowplayer-3.2.6.min.js

Large diffs are not rendered by default.

74 changes: 74 additions & 0 deletions flowplayer/example/index.html
@@ -0,0 +1,74 @@
<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.2.6.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 id="page">

<h1>Minimal Flowplayer setup</h1>

<p>View commented source code to get familiar with Flowplayer installation.</p>

<!-- this A tag is where your Flowplayer will be placed. it can be anywhere -->
<a
href="http://pseudo01.hddn.com/vod/demo.flowplayervod/flowplayer-700.flv"
style="display:block;width:520px;height:330px"
id="player">
</a>

<!-- this will install flowplayer inside previous A- tag. -->
<script>
flowplayer("player", "../flowplayer-3.2.7.swf");
</script>



<!--
after this line is purely informational stuff.
does not affect on Flowplayer functionality
-->

<p>
If you are running these examples <strong>locally</strong> and not on some webserver you must edit your
<a href="http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html">
Flash security settings</a>.
</p>

<p class="less">
Select "Edit locations" &gt; "Add location" &gt; "Browse for files" and select
flowplayer-x.x.x.swf you just downloaded.
</p>


<h2>Documentation</h2>

<p>
<a href="http://flowplayer.org/documentation/installation/index.html">Flowplayer installation</a>
</p>

<p>
<a href="http://flowplayer.org/documentation/configuration/index.html">Flowplayer configuration</a>
</p>

<p>
See this identical page on <a href="http://flowplayer.org/demos/example/index.htm">Flowplayer website</a>
</p>

</div>


</body></html>
41 changes: 41 additions & 0 deletions flowplayer/example/style.css
@@ -0,0 +1,41 @@

body {
background-color:#fff;
font-family:"Lucida Grande","bitstream vera sans","trebuchet ms",verdana,arial;
text-align:center;
}

#page {
background-color:#efefef;
width:600px;
margin:50px auto;
padding:20px 150px 20px 50px;
min-height:600px;
border:2px solid #fff;
outline:1px solid #ccc;
text-align:left;
}

h1, h2 {
letter-spacing:-1px;
color:#2D5AC3;
font-weight:normal;
margin-bottom:-10px;
}

h1 {
font-size:22px;
}

h2 {
font-size:18px;
}

.less {
color:#999;
font-size:12px;
}

a {
color:#295c72;
}
Binary file added flowplayer/flowplayer-3.2.7.swf
Binary file not shown.
Binary file added flowplayer/flowplayer.analytics-3.2.2.swf
Binary file not shown.
Binary file added flowplayer/flowplayer.controls-3.2.5.swf
Binary file not shown.

0 comments on commit b3b06c5

Please sign in to comment.