mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-03 01:39:28 +02:00
56 lines
2.1 KiB
PHP
56 lines
2.1 KiB
PHP
<?php
|
|
/* vim:set tabstop=4 softtabstop=4 shiftwidth=4 expandtab: */
|
|
/**
|
|
*
|
|
* LICENSE: GNU Affero General Public License, version 3 (AGPLv3)
|
|
* Copyright 2001 - 2016 Ampache.org
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
header('Cache-Control: no-cache');
|
|
header('Pragma: no-cache');
|
|
header('Expires: ' . gmdate(DATE_RFC1123, time()-1));
|
|
|
|
?>
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
|
|
<html>
|
|
<head>
|
|
<!-- Propulsed by Ampache | ampache.org -->
|
|
<title><?php echo AmpConfig::get('site_title'); ?></title>
|
|
<meta property="og:title" content="<?php echo AmpConfig::get('site_title'); ?>" />
|
|
<meta property="og:image" content="<?php echo AmpConfig::get('web_path'); ?>/themes/reborn/images/ampache.png"/>
|
|
<meta property="og:description" content="A web based audio/video streaming application and file manager allowing you to access your music & videos from anywhere, using almost any internet enabled device." />
|
|
<meta property="og:site_name" content="Ampache"/>
|
|
<?php
|
|
if (!$is_share) {
|
|
$playlist = new Stream_Playlist(scrub_in($_REQUEST['playlist_id']));
|
|
}
|
|
|
|
$isRadio = false;
|
|
$isVideo = false;
|
|
$radio = null;
|
|
if (isset($playlist)) {
|
|
if (WebPlayer::is_playlist_radio($playlist)) {
|
|
// Special stuff for web radio (to better handle Icecast/Shoutcast metadata ...)
|
|
// No special stuff for now
|
|
$isRadio = true;
|
|
$radio = $playlist->urls[0];
|
|
} else {
|
|
$isVideo = WebPlayer::is_playlist_video($playlist);
|
|
}
|
|
}
|
|
require_once AmpConfig::get('prefix') . UI::find_template('show_html5_player.inc.php');
|
|
?>
|