Add previous mg css to video player
[mediagoblin.git] / mediagoblin / templates / mediagoblin / media_displays / video.html
CommitLineData
a246ccca
JW
1{#
2# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 3# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
a246ccca
JW
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU Affero General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU Affero General Public License for more details.
14#
15# You should have received a copy of the GNU Affero General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17#}
18
93bdab9d 19{% extends 'mediagoblin/user_pages/media.html' %}
6c191eb3 20
565d01a0 21{% block mediagoblin_head -%}
560e22e7 22 {{ super() }}
565d01a0 23 <script type="text/javascript" src="{{
a7fc4ecf 24 request.staticdirect('/extlib/video-js/video.js') }}"></script>
9dea49e6 25 <script type="text/javascript" src="{{
26 request.staticdirect('/extlib/videojs-resolution-switcher/videojs-resolution-switcher.js') }}">
27 </script>
28 <script type="text/javascript"
29 src="{{ request.staticdirect('/js/change-video-resolution.js') }}"></script>
a7fc4ecf
CAW
30 {# Sadly commented out till we can get the mediagoblin skin ported over
31 # to the newest video.js release ;\ #}
a7fc4ecf
CAW
32 <link href="{{
33 request.staticdirect('/extlib/video-js/video-js.css') }}"
b35dfd32 34 rel="stylesheet">
9dea49e6 35 <link href="{{
36 request.staticdirect('/extlib/videojs-resolution-switcher/videojs-resolution-switcher.css') }}"
37 rel="stylesheet">
a7fc4ecf 38
87b6b431 39 <style type="text/css">
40 .vjs-default-skin .vjs-big-play-button
41 {
42 top: 50%;
43 left: 50%;
44 margin: -1.5em auto auto -2em;
45 }
46 .vjs-play-progress, .vjs-volume-level {
47 background-color: #86D4B1 !important;
48 }
49 </style>
50
565d01a0 51{%- endblock %}
560e22e7 52
93bdab9d 53{% block mediagoblin_media %}
03ff0b36 54<div class="media_other_container">
9dea49e6 55 {% set all_media_path = media.get_all_media() %}
14814f21 56
87b6b431 57 <video controls
58 {% if global_config['plugins']['mediagoblin.media_types.video']['auto_play'] %}autoplay{% endif %}
59 preload="auto" class="video-js vjs-default-skin" id="video_1">
9dea49e6 60 {% for each_media_path in all_media_path %}
87b6b431 61 <source src="{{ request.app.public_store.file_url(each_media_path[2]) }}"
62 {% if media.media_data %}
63 type="{{ media.media_data.source_type() }}"
64 {% else %}
65 type="{{ media.media_manager['default_webm_type'] }}"
66 {% endif %}
9dea49e6 67 label="{{ each_media_path[0] }}" res="{{ each_media_path[1][1] }}" />
68 {% endfor %}
565d01a0
SS
69 <div class="no_html5">
70 {%- trans -%}Sorry, this video will not work because
71 your web browser does not support HTML5
72 video.{%- endtrans -%}<br/>
94c064d3
CAW
73 {%- trans -%}
74 We recommend you install a <a href="https://libreplanet.org/wiki/Libre_Browsers_Libre_Formats">freedom-respecting browser which supports free formats</a>!
75 {%- endtrans -%}
565d01a0
SS
76 </div>
77 </video>
03ff0b36 78</div>
a122357e
JK
79{% endblock %}
80
81{% block mediagoblin_sidebar %}
82 <h3>{% trans %}Download{% endtrans %}</h3>
83 <ul>
84 {% if 'original' in media.media_files %}
b35dfd32
CAW
85 <li>
86 <a href="{{ request.app.public_store.file_url(
87 media.media_files.original) }}">
88 {%- trans %}Original file{% endtrans -%}
89 </a>
90 </li>
a122357e 91 {% endif %}
9de4fab4 92 {% if 'webm_video' in media.media_files %}
b35dfd32
CAW
93 <li>
94 <a href="{{ request.app.public_store.file_url(
9de4fab4
RE
95 media.media_files.webm_video) }}">
96 {%- trans %}WebM file (VP8/Vorbis){% endtrans -%}
b35dfd32
CAW
97 </a>
98 </li>
ddbf6af1 99 {% endif %}
a122357e 100 </ul>
93bdab9d 101{% endblock %}