summaryrefslogtreecommitdiff
path: root/video.php
diff options
context:
space:
mode:
authoryo mama <pepper@scannerjammer.com>2015-04-04 01:11:47 -0700
committeryo mama <pepper@scannerjammer.com>2015-04-04 01:11:47 -0700
commita736da57f084017ac17e06cd9db19b1fd166e1a6 (patch)
tree55a9e83b31f6bdc176731125de0cc42668daf988 /video.php
first
Diffstat (limited to 'video.php')
-rwxr-xr-xvideo.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/video.php b/video.php
new file mode 100755
index 0000000..16be953
--- /dev/null
+++ b/video.php
@@ -0,0 +1,10 @@
+<?php
+
+require_once "protected/autoload.php";
+
+$url = isset($_GET['url']) ? $_GET['url'] : null;
+
+$video = new Video();
+$video->playVideo($url);
+
+