first commit
This commit is contained in:
commit
13eadab5e1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,88 @@
|
|||
<?php
|
||||
|
||||
$json = json_decode(file_get_contents("https://mso.urmic.org/public/list.json"), JSON_UNESCAPED_SLASHES);
|
||||
|
||||
$options = "";
|
||||
|
||||
foreach ($json as $key => $value) {
|
||||
$options .= '<option value="' . $value . '">' . $key . '</option>';
|
||||
}
|
||||
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
||||
|
||||
$ffplay = 'cvlc --play-and-exit -L --no-video-title-show -f "'. $_POST["ch_select"] .'"';
|
||||
|
||||
$file = fopen("/var/www/html/play.sh", "w");
|
||||
fwrite($file, $ffplay);
|
||||
fclose($file);
|
||||
shell_exec("/var/www/html/restart.sh");
|
||||
}
|
||||
|
||||
?>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>ShreeBhattJI</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="bootstrap.min.css">
|
||||
<script src="jquery.min.js"></script>
|
||||
<script>
|
||||
action = "javascript:void(0);"
|
||||
</script>
|
||||
<script src="bootstrap.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body style="margin:3%">
|
||||
|
||||
<form class="form-horizontal" method="post">
|
||||
<fieldset>
|
||||
<legend>Shree BhattJI From Bhavnagar's Friends Channels</legend>
|
||||
<div class="form-group">
|
||||
<label class="col-md-4 control-label" for="ch_select">Select Channels</label>
|
||||
<div class="col-md-5">
|
||||
<select id="ch_select" name="ch_select" class="form-control">
|
||||
<?php echo $options; ?>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-md-4 control-label"></label>
|
||||
<div class="col-md-5">
|
||||
<input type="checkbox" onchange="document.getElementById('submit').disabled = !this.checked;" />
|
||||
- By clicking the submit button I agree to defend, indemnify and hold the Devdatt Bhatt aka ShreeBhattJI, its officers, Friends , officials, employees and volunteers harmless from any and all claims, injuries, damages, losses or suits including attorney fees, arising out of transmission of data which comes out of this box .
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-md-4 control-label"></label>
|
||||
<div class="col-md-4">
|
||||
<button id="submit" name="submit" class="btn btn-success" disabled>Submit</button>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
<form class="form-horizontal" method="post">
|
||||
<fieldset>
|
||||
<legend>CustomLink</legend>
|
||||
<div class="form-group">
|
||||
<label class="col-md-4 control-label" for="ch_select">Custom Link</label>
|
||||
<div class="col-md-5">
|
||||
<input id="ch_select" name="ch_select" type="text" placeholder="URL" class="form-control input-md" required>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-md-4 control-label"></label>
|
||||
<div class="col-md-4">
|
||||
<button id="submit" name="submit" class="btn btn-success">Submit</button>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
<fieldset>
|
||||
<legend>About</legend>
|
||||
<?php echo json_decode(file_get_contents("https://mso.urmic.org/public/data.json"), JSON_UNESCAPED_SLASHES)["data"]; ?>
|
||||
</fieldset>
|
||||
</body>
|
||||
|
||||
</html>
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1 @@
|
|||
ffplay -fflags nobuffer -autoexit -fs -sn -vf scale=ih*16/9:ih,scale=iw:-2,setsar=1 -i rtmp://channel.dbhatt.org/momai_tv/live
|
|
@ -0,0 +1,5 @@
|
|||
clear;
|
||||
chmod +x /var/www/html/play.sh
|
||||
sudo systemctl stop play;
|
||||
sleep 5;
|
||||
sudo systemctl restart play;
|
|
@ -0,0 +1,8 @@
|
|||
apt update;
|
||||
apt upgrade -y;
|
||||
apt install apache2 php ffmpeg vlc -y;
|
||||
apt install --no-install-recommends mpv -y;
|
||||
|
||||
cat >/etc/sudoers.d/www-data<<EOL
|
||||
www-data ALL=(ALL) NOPASSWD: ALL
|
||||
EOL
|
|
@ -0,0 +1,20 @@
|
|||
[Unit]
|
||||
Description=play
|
||||
Documentation=https://urmic.org
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
User=deva
|
||||
Group=deva
|
||||
TimeoutStartSec=0
|
||||
Restart=always
|
||||
RestartSec=30s
|
||||
Requires=icecast2
|
||||
ExecStart=/bin/bash /var/www/html/play.sh
|
||||
SyslogIdentifier=play
|
||||
#ExecStop=
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
||||
#location /etc/systemd/system/play.service;
|
Loading…
Reference in New Issue