1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php ob_start(function($b){return preg_replace(['/\>[^\S ]+/s','/[^\S ]+\</s','/(\s)+/s'],['>','<','\\1'],$b);}); ?>
<!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">
<style><?php echo file_get_contents('./css/style.min.css'); ?></style>
<?php require_once("static/noscript.html"); ?>
</head>
<?php ob_end_flush(); ?>
<?php ob_start(function($b){return preg_replace(['/\>[^\S ]+/s','/[^\S ]+\</s','/(\s)+/s'],['>','<','\\1'],$b);}); ?>
<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"); ?>
<?php ob_end_flush(); ?>
|