alltube/templates/video.tpl

93 lines
3.9 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)}
2016-04-10 21:42:38 +02:00
<h3><label for="format">Available formats:</label></h3>
<form action="{path_for name="redirect"}">
<input type="hidden" name="url" value="{$video->webpage_url}" />
2016-05-01 18:58:03 +02:00
<select name="format" id="format" class="formats monospace">
<optgroup label="Generic formats">
<option value="best[protocol^=http]">
{strip}
Best ({$video->ext}
{if isset($video->filesize)}
{$video->filesize}
{/if}
)
{/strip}
</option>
<option value="worst[protocol^=http]">
Worst
</option>
</optgroup>
<optgroup label="Detailed formats" class="monospace">
2016-04-10 21:42:38 +02:00
{foreach $video->formats as $format}
{$format->protocol}
{if $format->protocol|in_array:array('http', 'https')}
{strip}
<option value="{$format->format_id}">
{$format->ext}
{for $foo=1 to (5 - ($format->ext|strlen))}
&nbsp;
{/for}
{if isset($format->width)}
{$format->width}x{$format->height}
{for $foo=1 to (10 - (("{$format->width}x{$format->height}")|strlen))}
&nbsp;
{/for}
{else}
{for $foo=1 to 10}
&nbsp;
{/for}
{/if}
{if isset($format->filesize)}
{($format->filesize/1000000)|round:2} MB
{for $foo=1 to (7 - (($format->filesize/1000000)|round:2|strlen))}
&nbsp;
{/for}
{else}
{for $foo=1 to 10}
&nbsp;
{/for}
{/if}
{if isset($format->format_note)}
{$format->format_note}
{/if}
&nbsp;({$format->format_id})
</option>
{/strip}
{/if}
2016-04-10 21:42:38 +02:00
{/foreach}
</optgroup>
</select><br/><br/>
<input class="downloadBtn" type="submit" value="Download" /><br/>
</form>
2015-04-11 22:08:24 +02:00
{else}
<input type="hidden" name="format" value="best[protocol^=http]" />
2015-04-11 22:08:24 +02:00
<a class="downloadBtn"
href="{$video->url|escape}">Download</a><br/>
{/if}
</div>
</div>