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 /faq.php | |
| parent | f8c60cae423fc78ed21d17a9217716ccc1e6dab1 (diff) | |
| download | video-dl-c5639ee890215e4e8e0f544821ea8d285ca58eb8.tar.gz | |
init
Diffstat (limited to 'faq.php')
| -rw-r--r-- | faq.php | 53 |
1 files changed, 53 insertions, 0 deletions
@@ -0,0 +1,53 @@ +<!doctype html> + +<html> +<head> + <meta charset="utf-8"> + <title>Video Streaming Proxy</title> + <link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> + <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.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" id="how_does_it_work"> + <h1><u>FAQ</u></h1> + </div> + <div class="row"> + <h3>How does it work?</h3> + <p>This site is basically a web-frontend for the famous python script <a href="https://rg3.github.io/youtube-dl/" target="_blank">youtube-dl</a>. + <br> + Except for the random site.</p> + </div> + <div class="row" id="video_is_blocked"> + <h3>Halp! The video I want to watch is still blocked. What to do?</h3> + <p>YouTube blocks videos based on a variety of reasons. + <br> + This app helps most of the time, but if you still encounter a blocked video.. I'm sorry, there is nothing I can do.</p> + </div> + <div class="row" id="supported_plattforms"> + <h3>Which video plattforms are supported?</h3> + <p>Check this <a href="https://rg3.github.io/youtube-dl/supportedsites.html" target="_blank">link</a>.</p> + </div> + <div class="row" id="so_slow"> + <h3>Why does streaming or extracting the audio take so long?</h3> + <p>Probably the video is large and computing time is expensive. Don't worry, just wait some time!</p> + </div> + <div class="row" id="what_is_random"> + <h3>What is this random thing?</h3> + <p>It grabs a random video from youtube. Just enjoy and get hooked!</p> + </div> + <div class="row" id="something_broke"> + <h3>What do I do when something breaks? How can I contact you?</h3> + <p>Send me a <a href="mailto:mail@iamfabulous.de?subject=crash">mail</a> with the bug report.</p> + </div> + </div> + </div> + +<?php require_once("static/foot.php"); ?> |
