proxitok/views/video.latte

25 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-01-25 13:08:31 +00:00
{layout '../layouts/hero.latte'}
2022-01-08 15:03:57 +00:00
2022-01-25 13:08:31 +00:00
{block content}
{do $item = $feed->items[0]}
<div class="columns is-centered is-vcentered">
<div class="column">
<video width="{$item->video->width}" height="{$item->video->height}" controls poster="{path('/stream?url=' . urlencode($item->video->originCover))}">
<source src="{path('/stream?url=' . urlencode($item->video->playAddr))}" type="video/mp4" />
2022-01-28 14:54:09 +00:00
</video>
</div>
<div class="column has-text-centered">
<div class="box">
2022-02-13 21:21:08 +00:00
<p class="title">Video by <a href="{path('/@'.$feed->info->detail->uniqueId)}">{$feed->info->detail->uniqueId}</a></p>
<p class="subtitle">{$item->desc}</p>
{include '../components/themes/common/stats.latte', playCount: $item->stats->playCount, diggCount: $item->stats->diggCount, commentCount: $item->stats->commentCount, shareCount: $item->stats->shareCount}
<hr />
{include '../components/themes/common/share.latte', uniqueId: $feed->info->detail->uniqueId, id: $item->id}
{include '../components/themes/common/download.latte', playAddr: $item->video->playAddr, id: $item->id, uniqueId: $feed->info->detail->uniqueId}
<p>{$item->music->title}</p>
<audio src="{path('/stream?url=' . urlencode($item->music->playUrl))}" controls preload="none"></audio>
</div>
2022-01-08 15:03:57 +00:00
</div>
2022-01-25 13:08:31 +00:00
</div>
{/block}