diff options
| author | root | 2014-09-13 22:26:58 +0200 |
|---|---|---|
| committer | root | 2014-09-13 22:26:58 +0200 |
| commit | c5639ee890215e4e8e0f544821ea8d285ca58eb8 (patch) | |
| tree | 29f685943c61c4d7ec0e376e485686e985b97065 /index.php | |
| parent | f8c60cae423fc78ed21d17a9217716ccc1e6dab1 (diff) | |
| download | video-dl-c5639ee890215e4e8e0f544821ea8d285ca58eb8.tar.gz | |
init
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/index.php b/index.php new file mode 100644 index 0000000..5231d3c --- /dev/null +++ b/index.php @@ -0,0 +1,33 @@ +<!doctype html> + +<html> +<head> + <meta charset="utf-8"> + <title>Video Streaming Proxy</title> + <link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'> + <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"> + <link rel="stylesheet" href="/css/form.css"> + <link rel="stylesheet" href="/css/style.css"> + <?php require_once("static/noscript.html"); ?> +</head> +<body> +<?php require_once("static/header.php"); ?> + <div class="container"> + <div class="text-center"> + <div class="row"> + <h1>Video Streaming Proxy</h1> + </div> + <div class="row"> + <p>Paste a link from youtube, vimeo or other <a href="/faq#supported_plattforms" title="FAQ: Supported plattforms">supported</a> video plattforms.<br> + Stream the video, extract the audio or download it direct to the disk! <br><i>(up to <strong>50M</strong> for download or <strong>200M</strong> for streaming)</i></p> + <form method='POST' action='/video'> + <input type='text' name='vid' placeholder='https://www.youtube.com/watch?v=sTSA_sWGM44' style="color:#5b5b5b;" onclick="this.value=''"> + <br><br> + <input class='button' type='submit' value='Show Video'> + </form> + </div> + </div> + </div> +<?php require_once("static/foot.php"); ?> |
