summaryrefslogtreecommitdiff
path: root/contrib/site/js/player.js
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2020-03-03 01:30:17 +0100
committerChristian Pointner <equinox@spreadspace.org>2020-03-03 01:30:17 +0100
commit0b60654e2ae1046bfe85d09e8f98cd8819fc0ac3 (patch)
treedb9a64c19984293e36443e1268f8cd23836f4b25 /contrib/site/js/player.js
parentfix mysql init container (diff)
updated stream-site to 2019
Diffstat (limited to 'contrib/site/js/player.js')
-rw-r--r--contrib/site/js/player.js113
1 files changed, 0 insertions, 113 deletions
diff --git a/contrib/site/js/player.js b/contrib/site/js/player.js
deleted file mode 100644
index a9cb236..0000000
--- a/contrib/site/js/player.js
+++ /dev/null
@@ -1,113 +0,0 @@
-'use strict';
-
-function Player() {
- this.init = function(video) {
- if (video) {
- this.$media = $('#video');
- } else {
- this.$media = $('#audio');
- }
- this.media = this.$media.get()[0];
- };
-
- this.play = function() {
- $('#video-overlay').hide();
- $('#player-state').css('background-position', '-25px -125px');
- this.media.load();
- this.media.play();
- };
-
- this.stop = function() {
- $('#video-overlay').show();
- $('#player-state').css('background-position', '0px -125px');
- this.media.pause();
- };
-
- this.playstop = function() {
- if(this.media.paused == true) {
- this.play();
- } else {
- this.stop();
- }
- };
-
- this.repaintVolumeControls = function() {
- if(this.media.muted) {
- $('#player-mute').css('background-position', '0px -150px');
- return;
- }
-
- if(this.media.volume <= 0) {
- $('#player-mute').css('background-position', '-25px -150px');
- return;
- }
-
- if(this.media.volume < 0.5) {
- $('#player-mute').css('background-position', '-50px -150px');
- return;
- }
-
- $('#player-mute').css('background-position', '-75px -150px');
- };
-
- this.updatevolume = function() {
- this.media.volume = $('#player-volume').val() / 100;
- this.repaintVolumeControls();
- };
-
- this.togglemute = function() {
- this.media.muted = !this.media.muted;
- $('#player-volume').prop('disabled', this.media.muted);
- this.repaintVolumeControls();
- };
-
- this.fullscreen = function() {
- if (this.media.requestFullscreen) {
- this.media.requestFullscreen();
- } else if (this.media.msRequestFullscreen) {
- this.media.msRequestFullscreen();
- } else if (this.media.mozRequestFullScreen) {
- this.media.mozRequestFullScreen();
- } else if (this.media.webkitRequestFullscreen) {
- this.media.webkitRequestFullscreen();
- }
- };
-}
-
-var player = new Player();
-
-function player_init(video) {
- player.init(video);
- $('#video-overlay').on('click', player_playstop);
- $('#player-state').on('click', player_playstop);
- player.playstop();
- if(navigator.userAgent.match(/(\(iPod|\(iPhone|\(iPad)/)) {
- $('#player-volume').prop('disabled', true);
- this.repaintVolumeControls();
- } else {
- $('#player-volume').on('change input', player_updatevolume);
- $('#player-mute').on('click', player_togglemute);
- }
- $('#fullscreen').on('click', function(event) {
- event.preventDefault();
- player.fullscreen();
- });
-
- $(document).on('keypress', function(e) {
- if(e.which == 32) {
- player.playstop();
- }
- });
-}
-
-function player_playstop() {
- player.playstop();
-}
-
-function player_updatevolume() {
- player.updatevolume();
-}
-
-function player_togglemute() {
- player.togglemute();
-}