2022-01-25 08:08:31 -05:00
|
|
|
{layout '../layouts/hero.latte'}
|
2022-01-08 10:03:57 -05:00
|
|
|
|
2022-01-25 08:08:31 -05:00
|
|
|
{block content}
|
2022-01-25 11:20:11 -05:00
|
|
|
<div class="columns is-centered is-vcentered">
|
|
|
|
<div class="column">
|
2022-02-07 12:40:32 -05:00
|
|
|
<video controls poster="{path('/stream?url=' . urlencode($item->items[0]->video->originCover))}">
|
|
|
|
<source src="{path('/stream?url=' . urlencode($item->items[0]->video->playAddr))}" type="video/mp4" />
|
2022-01-28 09:54:09 -05:00
|
|
|
</video>
|
2022-01-25 11:20:11 -05:00
|
|
|
</div>
|
|
|
|
<div class="column has-text-centered">
|
|
|
|
<div class="box">
|
2022-02-07 12:40:32 -05:00
|
|
|
<p class="title">Video by <a href="{path('/@'.$item->info->detail->user->uniqueId)}">{$item->info->detail->user->uniqueId}</a></p>
|
2022-01-25 11:20:11 -05:00
|
|
|
<p class="subtitle">{$item->items[0]->desc}</p>
|
|
|
|
<p>Played {number($item->info->detail->stats->playCount)} times</p>
|
|
|
|
<p>Shared {number($item->info->detail->stats->shareCount)} times / {number($item->info->detail->stats->commentCount)} comments</p>
|
|
|
|
<hr />
|
2022-02-07 12:40:32 -05:00
|
|
|
<a href="{path('/stream?url=' . urlencode($item->items[0]->video->playAddr) . '&download=1')}" class="button is-info">Download video</a>
|
2022-01-25 11:20:11 -05:00
|
|
|
<p>{$item->items[0]->music->title}</p>
|
2022-02-07 12:40:32 -05:00
|
|
|
<audio src="{path('/stream?url=' . urlencode($item->items[0]->music->playUrl))}" controls preload="none"></audio>
|
2022-01-25 11:20:11 -05:00
|
|
|
</div>
|
2022-01-08 10:03:57 -05:00
|
|
|
</div>
|
2022-01-25 08:08:31 -05:00
|
|
|
</div>
|
|
|
|
{/block}
|