2014-03-26 07:25:08 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="{$html5_player_url}/style.css" />
|
2014-04-05 08:55:37 +00:00
|
|
|
|
|
|
|
<script type="text/javascript" src="{$jquery}"></script>
|
2014-03-26 07:25:08 +00:00
|
|
|
<script type="text/javascript" src="{$html5_player_url}/html5_player.js"></script>
|
|
|
|
|
2014-04-05 08:55:37 +00:00
|
|
|
|
|
|
|
|
2014-03-26 07:25:08 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-04-05 08:55:37 +00:00
|
|
|
<div class="videoContainer" id="cont">
|
2014-03-26 07:25:08 +00:00
|
|
|
|
2014-04-05 08:55:37 +00:00
|
|
|
<video id="myVideo" class="myVideo largevid" preload="auto" poster="{$thumb}" >
|
|
|
|
|
|
|
|
<source src="{$normal_vid_file}" type="video/mp4" />
|
|
|
|
<source src="{$hq_vid_file}" type="video/mp4" data-quality="hd" />
|
|
|
|
|
|
|
|
<source src="{$normal_vid_file}" type="video/webm" />
|
|
|
|
<source src="{$hq_vid_file}" type="video/webm" data-quality="hd" />
|
|
|
|
|
|
|
|
<source src="{$normal_vid_file}" type="video/ogg" />
|
|
|
|
<source src="{$hq_vid_file}" type="video/ogg" data-quality="hd" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <source src="{$videowebm}" type="video/webm">
|
|
|
|
<source src="{$videoogg}" type="video/ogg"> -->
|
2014-03-26 07:25:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
<p>Your browser does not support the video tag.</p>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Fallback to Flash. -->
|
|
|
|
<!-- Add 24px to the height for the video player -->
|
|
|
|
|
|
|
|
<object width="800" height="374" type="application/x-shockwave-flash" data="{$html5_player_url}/fallback.swf">
|
|
|
|
|
|
|
|
<!-- Firefox uses the `data` attribute above, IE/Safari uses the param below -->
|
|
|
|
|
|
|
|
<param name="movie" value="{$html5_player_url}/player.swf"/>
|
|
|
|
<param name="allowFullScreen" value="true"/>
|
2014-04-05 08:55:37 +00:00
|
|
|
<param name="flashvars" value="autostart=true&file={$normal_vid_file}"/>
|
2014-03-26 07:25:08 +00:00
|
|
|
|
|
|
|
</object>
|
|
|
|
|
|
|
|
|
|
|
|
</video>
|
|
|
|
|
|
|
|
|
2014-04-05 08:55:37 +00:00
|
|
|
<div class="caption"><span class="title">{$title}</span></br><span class="user">Uploaded by {if !$username} annnnnn {else} {$username} {/if}
|
|
|
|
</span></div>
|
|
|
|
<div class="init"></div>
|
2014-03-26 07:25:08 +00:00
|
|
|
|
|
|
|
<div class="control">
|
|
|
|
|
2014-04-05 08:55:37 +00:00
|
|
|
<div class="topControl">
|
|
|
|
<div class="test">
|
2014-03-26 07:25:08 +00:00
|
|
|
<div class="progress">
|
2014-04-05 08:55:37 +00:00
|
|
|
|
|
|
|
<span class="bufferBar"> </span>
|
|
|
|
<span class="timeBar"><div class="buffer btn"></div></span>
|
|
|
|
</div>
|
2014-03-26 07:25:08 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="btmControl">
|
2014-04-05 08:55:37 +00:00
|
|
|
<div class="btnPlay hbtn" title="Play/Pause video"></div>
|
|
|
|
<div class="sound sound2 hbtn" title="Mute/Unmute sound"></div>
|
2014-03-26 07:25:08 +00:00
|
|
|
<div class="volume" title="Set volume">
|
|
|
|
<span class="volumeBar"></span>
|
|
|
|
</div>
|
|
|
|
<div class="time">
|
2014-04-05 08:55:37 +00:00
|
|
|
<span class="fcurrent"></span> /
|
|
|
|
<span class="fduration"></span>
|
2014-03-26 07:25:08 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2014-04-05 08:55:37 +00:00
|
|
|
|
|
|
|
<div class="btnFS enterbtnFs hbtn" title="Switch to full screen"></div>
|
|
|
|
|
|
|
|
<div class="smallscr largescr hbtn" title="Enlarge/Small Size"></div>
|
|
|
|
|
|
|
|
<div class="hdoff hdon hbtn" title="HD On/Off"></div>
|
2014-03-26 07:25:08 +00:00
|
|
|
|
2014-04-05 08:55:37 +00:00
|
|
|
|
|
|
|
<a href="http://clip-bucket.com/" ><div class="logo hbtn" title="CB logo" > </div></a>
|
|
|
|
|
|
|
|
|
2014-03-26 07:25:08 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="loading"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|