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-10-06 21:04:38 +05:30
|
|
|
{% if video.nginxUrl == "#" %}
|
2020-09-10 19:54:53 +05:30
|
|
|
<div class="ui center aligned text container">
|
2020-10-06 21:04:38 +05:30
|
|
|
<div class="ui segment">
|
|
|
|
<h4 class="ui header">ERROR WITH VIDEO</h4>
|
|
|
|
</div>
|
2020-08-28 03:26:14 +05:30
|
|
|
</div>
|
2020-09-10 19:54:53 +05:30
|
|
|
{% elif video.isUpcoming %}
|
|
|
|
<div class="ui center aligned text container">
|
2020-10-05 17:18:54 +05:30
|
|
|
<div class="ui segment">
|
|
|
|
<h4 class="ui header">SCHEDULED VIDEO</h4>
|
|
|
|
<h5 class="ui header">{{video.premieres}}</h5>
|
2020-09-10 19:54:53 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2020-10-05 18:42:02 +05:30
|
|
|
{% elif video.isLive %}
|
2020-10-06 21:04:38 +05:30
|
|
|
<div class="video-js-responsive-container vjs-hd">
|
|
|
|
<video-js id=live width="1080" class="video-js vjs-default-skin" controls buffered>
|
|
|
|
<source
|
|
|
|
src="{{urls[0]['url']}}"
|
|
|
|
type="application/x-mpegURL">
|
|
|
|
</video-js>
|
|
|
|
</div>
|
2020-10-05 18:42:02 +05:30
|
|
|
<div class="ui center aligned text container">
|
|
|
|
<div class="ui segment">
|
2020-10-06 21:04:38 +05:30
|
|
|
<h3 class="ui header">LIVESTREAM VIDEO</h3>
|
|
|
|
<h4 class="ui header">FEATURE AVAILABLE SOON</h4>
|
|
|
|
<h5 class="ui header">Livestreams are under developent and still not supported on Yotter.</h5>
|
2020-10-05 18:42:02 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
2020-09-10 19:54:53 +05:30
|
|
|
{%else%}
|
|
|
|
<div class="video-js-responsive-container vjs-hd">
|
|
|
|
<video class="video-js vjs-default-skin"
|
2020-10-05 18:42:02 +05:30
|
|
|
data-setup='{ "playbackRates": [0.5, 0.75, 1, 1.25,1.5, 1.75, 2] }'
|
2020-09-10 19:54:53 +05:30
|
|
|
width="1080"
|
|
|
|
controls
|
|
|
|
buffered
|
|
|
|
preload="none">
|
|
|
|
{% if config.nginxVideoStream %}
|
2020-10-05 18:42:02 +05:30
|
|
|
{% for url in urls %}
|
|
|
|
<source src="{{url.url}}" type="video/{{url.ext}}">
|
|
|
|
{% endfor %}
|
2020-09-10 19:54:53 +05:30
|
|
|
{% 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>
|
2020-08-05 02:48:59 +05:30
|
|
|
</div>
|
2020-08-27 19:34:14 +05:30
|
|
|
<div class="ui horizontal segments">
|
|
|
|
<div class="center aligned ui segment">
|
2020-10-04 11:40:16 +05:30
|
|
|
<a href="{{ url_for('channel', id=video.channelId)}}">
|
2020-08-27 19:34:14 +05:30
|
|
|
{%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>
|
2020-08-05 02:48:59 +05:30
|
|
|
</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-10-07 19:52:16 +05:30
|
|
|
</div>
|
|
|
|
|
|
|
|
{% if comments != False %}
|
|
|
|
<div class="ui comments">
|
|
|
|
<h3 class="ui dividing header">Comments</h3>
|
|
|
|
{% for comment in video.comments %}
|
|
|
|
{% include '_video_comment.html' %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{%endif%}
|
|
|
|
|
2020-09-02 00:33:51 +05:30
|
|
|
<script src="{{ url_for('static',filename='video.min.js') }}"></script>
|
2020-10-06 21:04:38 +05:30
|
|
|
<script src="{{ url_for('static',filename='videojs-http-streaming.min.js')}}"></script>
|
2020-10-07 20:34:48 +05:30
|
|
|
{% if video.isLive %}
|
|
|
|
<script>
|
|
|
|
var player = videojs('live');
|
|
|
|
player.play();
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
2020-07-31 15:58:52 +05:30
|
|
|
{% endblock %}
|