This repository has been archived on 2022-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
Yotter/app/templates/video.html

50 lines
1.9 KiB
HTML
Raw Normal View History

2020-08-23 00:26:04 +05:30
<head>
2020-09-02 00:33:51 +05:30
<link rel="stylesheet" type= "text/css" href="{{ url_for('static',filename='video-js.min.css') }}">
2020-08-23 00:26:04 +05:30
</head>
2020-07-31 15:58:52 +05:30
{% extends "base.html" %}
{% block content %}
2020-08-27 19:34:14 +05:30
<div class="ui text container">
2020-08-28 03:26:14 +05:30
<div class="video-js-responsive-container vjs-hd">
<video class="video-js vjs-default-skin"
data-setup='{ "playbackRates": [0.5, 1, 1.25,1.5, 2] }'
width="1080"
2020-08-30 04:45:48 +05:30
controls
2020-08-30 02:05:29 +05:30
buffered
preload="none">
<source src="/stream?v={{video.id}}" type="video/mp4">
2020-08-28 03:26:14 +05:30
</video>
</div>
2020-07-31 15:58:52 +05:30
2020-08-27 19:34:14 +05:30
<div class="ui segments">
<div class="ui segment">
2020-09-05 16:46:58 +05:30
<h2 class="ui header break-word">{{video.title}}</h2>
</div>
2020-08-27 19:34:14 +05:30
<div class="ui horizontal segments">
<div class="center aligned ui segment">
<a target="_blank" href="{{ url_for('channel', id=video.channelId)}}">
{%if video.author.__len__() > 8%}
<i class="user icon"></i> {{video.author[0:10]+'...'}}
{%else%}
<i class="user icon"></i> {{video.author}}
{%endif%}
</a>
</div>
<div class="center aligned ui segment">
<h4 class="ui header"><i class="grey eye icon"></i>{{video.viewCount}}</h4>
</div>
<div class="center aligned ui segment">
{% if video.averageRating | int > 49 %}
<h4 class="ui header"><i class="green thumbs up icon"></i> {{video.averageRating[0:4]}}%</h4>
{% else %}
<h4 class="ui header"><i class="red thumbs down icon"></i> {{video.averageRating[0:4]}}%</h4>
{% endif %}
</div>
</div>
2020-09-05 16:46:58 +05:30
<div class="ui raised segment break-word">
2020-08-27 19:34:14 +05:30
<p>{{video.description}}</p>
</div>
</div>
2020-07-31 15:58:52 +05:30
</div>
2020-09-02 00:33:51 +05:30
<script src="{{ url_for('static',filename='video.min.js') }}"></script>
2020-07-31 15:58:52 +05:30
{% endblock %}