alltube/templates/video.tpl

51 lines
2.1 KiB
Smarty
Raw Normal View History

2015-04-11 22:08:24 +02:00
<div class="wrapper">
<div itemscope itemtype="http://schema.org/VideoObject">
<div class="main">
{include file="logo.tpl"}
<p>You are going to download<i itemprop="name">
<a itemprop="url" id="video_link"
data-ext="{$video->ext}"
data-video="{$video->url|escape}"
href="{$video->webpage_url}">
{$video->title}</a></i>.
<img class="cast_icon" id="cast_disabled"
2016-04-06 13:19:27 +02:00
src="{base_url|noscheme}/img/ic_media_route_disabled_holo_light.png"
2015-04-11 22:08:24 +02:00
alt="Google Cast™ is disabled"
title="Google Cast is not supported on this browser." />
<img class="cast_btn cast_hidden cast_icon" id="cast_btn_launch"
2016-04-06 13:19:27 +02:00
src="{base_url|noscheme}/img/ic_media_route_off_holo_light.png"
2015-04-11 22:08:24 +02:00
title="Cast to ChromeCast" alt="Google Cast™" />
2016-04-06 13:19:27 +02:00
<img src="{base_url|noscheme}/img/ic_media_route_on_holo_light.png"
2015-04-11 22:08:24 +02:00
alt="Casting to ChromeCast…" title="Stop casting"
id="cast_btn_stop" class="cast_btn cast_hidden cast_icon" /></p>
2015-10-31 12:04:13 +01:00
{if isset($video->thumbnail)}
<img itemprop="image" class="thumb" src="{$video->thumbnail}" alt="" />
{/if}
2015-04-11 22:08:24 +02:00
<br/>
2015-04-12 16:29:05 +02:00
{if isset($video->formats)}
2015-04-11 22:08:24 +02:00
<h3>Available formats:</h3>
<p>(You might have to do a <i>Right click > Save as</i>)</p>
<ul id="format" class="format">
<li class="best" itemprop="encoding" itemscope
itemtype="http://schema.org/VideoObject">
<a download="{$video->_filename}" itemprop="contentUrl"
href="{$video->url|escape}">
<b>Best</b> (<span itemprop="encodingFormat">{$video->ext}</span>)
</a></li>
{foreach $video->formats as $format}
<li itemprop="encoding"
itemscope itemtype="http://schema.org/VideoObject">
2015-06-28 18:53:19 +02:00
<a download="{$video->_filename|replace:$video->ext:$format->ext}" itemprop="contentUrl"
2015-04-11 22:08:24 +02:00
href="{$format->url|escape}">
<span itemprop="videoQuality">{$format->format}</span> (<span itemprop="encodingFormat">{$format->ext}</span>)
</a></li>
{/foreach}
</ul><br/><br/>
{else}
<input type="hidden" name="format" value="best" />
<a class="downloadBtn"
href="{$video->url|escape}">Download</a><br/>
{/if}
</div>
</div>