rhythm/audio.php

17 lines
298 B
PHP
Raw Normal View History

2020-03-05 20:46:08 +00:00
<?php
const OUTPUT_FOLDER = "./tmp/";
header("Content-Type: audio/ogg");
if(isset($_GET["file_name"]) && is_string($_GET["file_name"]))
{
system("timidity " . OUTPUT_FOLDER . $_GET["file_name"] . ".midi -Ov -o -");
}
else
{
http_response_code(400);
echo("Missing Parameters");
}
?>