Skip to content

Instantly share code, notes, and snippets.

@ScruffyRules
Last active August 29, 2015 14:05
Show Gist options
  • Save ScruffyRules/6aa713ddca3008a62f4f to your computer and use it in GitHub Desktop.
Save ScruffyRules/6aa713ddca3008a62f4f to your computer and use it in GitHub Desktop.
<?php
if (filter_var($_GET["url"], FILTER_VALIDATE_URL) === FALSE) {
die('Not a valid URL');
}
if ($_GET["q"] == "h" || $_GET["q"] == "l") {
exec('java -jar runytd2.jar -'.$_GET["q"].' '.$_GET["url"]);
} else {
exec('java -jar runytd2.jar -l '.$_GET["url"]);
}
header('Location: http://vps.huskehhh.com/dl/ScruffyRules/YouTubeDownloader/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment