Initial import

This commit is contained in:
Pierre Rudloff 2014-03-13 20:07:56 +01:00
parent c082725c80
commit 0651377e93
35 changed files with 1296 additions and 0 deletions

10
json.php Normal file
View file

@ -0,0 +1,10 @@
<?php
$python="/usr/bin/python";
require_once 'download.php';
if (isset($_GET["url"])) {
header('Content-Type: application/json');
$video = VideoDownload::getJSON($_GET["url"]);
echo $video;
}
?>