summaryrefslogtreecommitdiff
path: root/help.php
blob: eef5dc6fb01036b0b4aae35602069b61ab180de3 (plain)
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
<?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">
				<h1><u>Help</u></h1>
			</div>
			<div class="row">
				<h3>How to use</h3>
			</div>
			<div class="row">
				<p><strong>1.</strong> Copy a link to a video you would like to watch.
				<br>
				<strong>2.</strong> Put the link in the bar at the bottom.
				<br>
				<strong>3.</strong> Hit the button to see general informations about the video.
				<br>
				<strong>4.</strong> Choose one option: 'Direct download', 'Streaming', 'Extracting audio'
				<br>
			</div>
			<div class="row">
				<h3>What more?</h3>
				<p><strong>Hint:</strong> You can even stream videos which are blocked in Germany! (GEMA)<br>
				Or watch a random YouTube video <a href="/random" title="random videos">here</a>.</p>
			</div>
			<div class="row">
				<h3>Uhm...</h3>
				<p>Still confused? Send me a <a href='mailto:mail@iamfabulous.de' class='mail'>mail</a> or check the <a href='/faq'>FAQ</a>.</p>
			</div>
		</div>
	</div>
<?php require_once("static/foot.php"); ?>
<?php ob_end_flush(); ?>