12 lines
490 B
PHP
12 lines
490 B
PHP
<?php
|
|
if (file_exists('/home/pi/BirdNET-Pi/thisrun.txt')) {
|
|
$config = parse_ini_file('/home/pi/BirdNET-Pi/thisrun.txt');
|
|
} elseif (file_exists('/home/pi/BirdNET-Pi/firstrun.ini')) {
|
|
$config = parse_ini_file('/home/pi/BirdNET-Pi/firstrun.ini');
|
|
}
|
|
$refreshtime = $config['RECORDING_LENGTH'];
|
|
header("refresh:$refreshtime");
|
|
?>
|
|
<body style='background-color:rgb(119, 196, 135)'>
|
|
<img src='/spectrogram.png?nocache=<?php echo time();?>' style='display: block; height: 100%; width: 100%;'>
|