blob: 91182fda792157891b1b4818a0ad8a90d5e60af2 (
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
|
<!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">
<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)</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' class='mail'>FAQ</a>.</p>
</div>
</div>
</div>
<?php require_once("static/foot.php"); ?>
|