-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
104 lines (83 loc) · 5.03 KB
/
index.html
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Youtube video speed changer bookmarklet by ChrisCinelli</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="javascripts/main.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<header>
<h1>Youtube video speed changer bookmarklet</h1>
<p>Bookmarklet to change the speed (aka playback rate) of HTML5/YouTube Videos</p>
</header>
<div id="banner">
<span id="logo"></span>
<a href="https://github.com/ChrisCinelli/youtube-video-speed-changer-bookmarklet" class="button fork"><strong>View On GitHub</strong></a>
<div class="downloads">
<span>Downloads:</span>
<ul>
<li><a href="https://github.com/ChrisCinelli/youtube-video-speed-changer-bookmarklet/zipball/master" class="button">ZIP</a></li>
<li><a href="https://github.com/ChrisCinelli/youtube-video-speed-changer-bookmarklet/tarball/master" class="button">TAR</a></li>
</ul>
</div>
</div><!-- end banner -->
<div class="wrapper">
<nav>
<ul></ul>
</nav>
<section>
<p>YouTube Video Speed Changer is a utility that enables you to alter the pace of YouTube videos. Although it was tested on YouTube,
it works on other sites that use HTML5 video.</p>
<p>The browser of choice is Google Chrome but it should work on the other webkit browsers (Safari and other mobile browsers). It does not work on Mozilla Firefox.</p>
<h2>Why this bookmarklet?</h2>
<p>Lately there have been more and more lectures on YouTube that I like to listen to.
They can even be 2 hours long. Wouldn't it be great to be able to watch them in almost half of the time?
The YouTube HTML5 Player's UI supports only some standard speed multiplicators (x1.5 and x2).
However, for me although x2 is too fast to understand the speaker, I can definitely listen to it faster than x1.5.
I created this bookmarklet to enable me to have a little more customization in speed.
In particular I usually can watch lectures at x1.75 but it ultimately depends on the speaker's speed.
I wrote it because it solves a problem that I have. And it may be useful for other people.
</p>
<h2>Installation</h2>
<p>The installation is pretty simple. It is a bookmarklet like the Pinterest Pin It bookmarklet.</p>
<p><a href="http://pinterest.com/about/goodies/">Pinterest's bookmarklet installation's instructions</a> are really clear and they will work also for YouTube Video Speed Changer.</p>
Just drag and drop this on your bookmark bar: <br/>
***<a href="javascript:void((function()%7Bvar%20e%3Ddocument.createElement(%27script%27)%3Be.setAttribute(%27type%27,%27text/javascript%27)%3Be.setAttribute(%27charset%27,%27UTF-8%27)%3Be.setAttribute(%27src%27,%27https://raw.github.com/ChrisCinelli/youtube-video-speed-changer-bookmarklet/master/src/youtube-video-speed-changer-bookmarklet.min.js%3Fr%3D%27%2BMath.random()*99999999)%3Bdocument.body.appendChild(e)%7D)())%3B" style="font-size:1.3em">Change Speed</a>***
<br/><br/>
<p>Remember to enable HTML5 video on YouTube at <a href="http://www.youtube.com/html5">http://www.youtube.com/html5</a></p>
<h2>Usage</h2>
<p>Once it is on your bookmarks, you can click on "Change Speed". A small box shows
up in the upper left corner. You can use the + or - buttons to increase or
diminish the speed of the video.</p>
<p>Click it again and the small speed box will disappear and the video will go back
to normal speed. </p>
<h2>Acknowledgements</h2>
<p>© 2012, Chris Cinelli. Released under the <a href="http://www.opensource.org/licenses/mit-license.php">MIT License</a>.</p>
<p>YouTube Video Speed Changer is authored and maintained by <a href="http://www.linkedin.com/in/criscinelli">Chris Cinelli</a>.</p>
</section>
<footer>
<p>Project maintained by <a href="https://github.com/ChrisCinelli">ChrisCinelli</a></p>
<p><small>Hosted on GitHub Pages — Theme by <a href="http://twitter.com/#!/michigangraham">mattgraham</a></small></p>
</footer>
</div>
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-35860636-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>