7d548c06b6
Only HTTP formats
92 lines
3.9 KiB
Smarty
92 lines
3.9 KiB
Smarty
<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"
|
|
src="{base_url|noscheme}/img/ic_media_route_disabled_holo_light.png"
|
|
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"
|
|
src="{base_url|noscheme}/img/ic_media_route_off_holo_light.png"
|
|
title="Cast to ChromeCast" alt="Google Cast™" />
|
|
<img src="{base_url|noscheme}/img/ic_media_route_on_holo_light.png"
|
|
alt="Casting to ChromeCast…" title="Stop casting"
|
|
id="cast_btn_stop" class="cast_btn cast_hidden cast_icon" /></p>
|
|
{if isset($video->thumbnail)}
|
|
<img itemprop="image" class="thumb" src="{$video->thumbnail}" alt="" />
|
|
{/if}
|
|
<br/>
|
|
{if isset($video->formats)}
|
|
<h3><label for="format">Available formats:</label></h3>
|
|
<form action="{path_for name="redirect"}">
|
|
<input type="hidden" name="url" value="{$video->webpage_url}" />
|
|
<select name="format" id="format" class="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">
|
|
{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))}
|
|
|
|
{/for}
|
|
{if isset($format->width)}
|
|
{$format->width}x{$format->height}
|
|
{for $foo=1 to (10 - (("{$format->width}x{$format->height}")|strlen))}
|
|
|
|
{/for}
|
|
{else}
|
|
{for $foo=1 to 10}
|
|
|
|
{/for}
|
|
{/if}
|
|
{if isset($format->filesize)}
|
|
{($format->filesize/1000000)|round:2} MB
|
|
{for $foo=1 to (7 - (($format->filesize/1000000)|round:2|strlen))}
|
|
|
|
{/for}
|
|
{else}
|
|
{for $foo=1 to 10}
|
|
|
|
{/for}
|
|
{/if}
|
|
{if isset($format->format_note)}
|
|
{$format->format_note}
|
|
{/if}
|
|
({$format->format_id})
|
|
</option>
|
|
{/strip}
|
|
{/if}
|
|
{/foreach}
|
|
</optgroup>
|
|
</select><br/><br/>
|
|
<input class="downloadBtn" type="submit" value="Download" /><br/>
|
|
</form>
|
|
{else}
|
|
<input type="hidden" name="format" value="best[protocol^=http]" />
|
|
<a class="downloadBtn"
|
|
href="{$video->url|escape}">Download</a><br/>
|
|
{/if}
|
|
</div>
|
|
</div>
|