summaryrefslogtreecommitdiff
path: root/audio.php
blob: bb018da9b260aaa9efcf74d91b6bfc473e296a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

if(!isset($_GET["s"])){
	
	http_response_code(404);
	header("X-Error: No SOUND(s) provided!");
	die();
}

include "lib/curlproxy.php";
$proxy = new proxy();

try{
	
	$proxy->stream_linear_audio($_GET["s"]);
}catch(Exception $error){
	
	header("X-Error: " . $error->getMessage());
}