-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (46 loc) · 2.11 KB
/
Copy pathindex.html
File metadata and controls
63 lines (46 loc) · 2.11 KB
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
58
59
60
61
62
63
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Stream With Me</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/brython/3.8.9/brython.min.js" integrity="sha256-U56d9Sn/Gtf1meSBXazW81LM1bUeyc1jFuoY3CBu6A8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/brython/3.8.9/brython_stdlib.js" integrity="sha256-lQ1zBVaj5yjGPUY2asoK6lPcfpFqEe8qOA0U0OgoRzY=" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="main.css">
<link type="text/css" rel="stylesheet" href="/node_modules/video.js/dist/video-js.min.css">
<script src="https://code.jquery.com/jquery-1.9.1.js" integrity="sha256-e9gNBsAcA0DBuRWbm0oZfbiCyhjLrI6bmqAl5o+ZjUA=" crossorigin="anonymous"></script>
<link href="https://vjs.zencdn.net/7.8.2/video-js.css" rel="stylesheet">
<!--
-->
<script src="https://vjs.zencdn.net/ie8/1.1.2/videojs-ie8.min.js"></script>
</head>
<div class="Wrapper">
<h1 class="Title">Stream With Me</h1>
<div class="Input">
<input class="Input-text" id="input" type="text" placeholder= "Enter Link"/>
<label for="input" id ="label1" class="Input-label">Enter Link</label>
<button id="myBtn">GO</button>
</div>
<body id="myCode">
<div id="BodyDiv1"></div>
<div id="chat">
<pre id="messages"></pre>
<input type="text" style="display: none;" id="messageBox" placeholder="Type your message here" />
<button id="send" style="display: none;" title="Send Message!" >Send</button>
</div>
<script type="text/javascript" src="urlcode.js"></script>
<script type="text/javascript" src="Code2.js"></script>
<script src="/node_modules/video.js/dist/video.min.js"></script>
<script src="/node_modules/videojs-youtube/dist/Youtube.min.js"></script>
</body>
</div>
</html>
<!---
<script type="text/python">
</script>
import pafy
import vlc
url= "https://www.youtube.com/watch?v=qmQr0Uyi0Ls"
video = pafy.new(url)
best=video.getbest()
playurl=best.url
->