diff options
-rw-r--r-- | iplayer.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/iplayer.php b/iplayer.php index 5234fd4..97d6d6c 100644 --- a/iplayer.php +++ b/iplayer.php @@ -1,3 +1,16 @@ +<!DOCTYPE html> + +<html> + +<head> + +<meta charset="UTF-8"> +<title>iPlayer video stream extractor</title> + +</head> + +<body> + <?php define("CURLIFACE", "192.168.122.9"); @@ -21,6 +34,15 @@ e.g. http://www.bbc.co.uk/iplayer/episode/b04tr8c4/<br> You can also use ?id= to specify a programme ID directly to bypass this form<br> e.g. http://iplayer.of.je/?id=b04tr8c4</p> </form> + +<script type="text/javascript"> + document.getElementById("url").focus(); + document.getElementById("url").select(); +</script> + +</body> + +</html> <?php exit(); } |