first commit

This commit is contained in:
devdatt 2025-02-03 00:19:51 +05:30
commit 13eadab5e1
8 changed files with 136 additions and 0 deletions

6
html/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

6
html/bootstrap.min.js vendored Normal file

File diff suppressed because one or more lines are too long

88
html/index.php Normal file
View File

@ -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>

2
html/jquery.min.js vendored Normal file

File diff suppressed because one or more lines are too long

1
html/play.sh Normal file
View File

@ -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

5
html/restart.sh Normal file
View File

@ -0,0 +1,5 @@
clear;
chmod +x /var/www/html/play.sh
sudo systemctl stop play;
sleep 5;
sudo systemctl restart play;

8
install.sh Normal file
View File

@ -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

20
systemd/play.service Normal file
View File

@ -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;