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

74 lines
2.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">
{% if video.nginxUrl == "#" and video.isLive %}
<div class="ui center aligned text container">
<img alt="Empty feed image" class="ui image" src="{{ url_for('static',filename='img/live.png') }}">
2020-08-28 03:26:14 +05:30
</div>
{% elif video.isUpcoming %}
<div class="ui center aligned text container">
<div class="ui row">
<img alt="Empty feed image" class="ui image" src="{{ url_for('static',filename='img/scheduled.png') }}">
</div>
</div>
{%else%}
<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"
controls
buffered
preload="none">
{% if config.nginxVideoStream %}
<source src="{{video.nginxUrl}}" type="video/mp4">
{% else %}
<source src="{{url_for('stream', url=video.videoUrl.replace('/', 'YotterSlash'))}}" type="video/mp4">
{% endif %}
</video>
</div>
{%endif%}
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-20 15:29:26 +05:30
<div class="ui raised center aligned segment break-word">
<p><i class="grey music icon"></i><b><a href="{{video.nginxAudioUrl}}">Play Only Audio</a></b></p>
<audio controls>
<source src="{{video.nginxAudioUrl}}">
Your browser does not support the audio element.
</audio>
</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>
2020-09-20 15:29:26 +05:30
</div>
2020-08-27 19:34:14 +05:30
</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 %}