This repository has been archived by the owner on Aug 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (65 loc) · 2.82 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
<!DOCTYPE html>
<html>
<head>
<title>Turbo Wookie</title>
<link rel="stylesheet" href="style.css" />
<script src="assets/jquery-2.0.3.min.js"></script>
<script src="assets/jquery.fitvids.js"></script>
<script>
$(document).ready(function() { $("body").fitVids(); })
</script>
</head>
<body>
<div class="hero-img"> </div>
<article class="wrap">
<header>
<h1>Turbo Wookie</h1>
</header>
<section>
<nav>
<ul>
<li><a href="index.html">info</a></li>
<li><a href="https://github.com/turbowookie/turbo-wookie">github</a></li>
<li><a href="manual.html">manual</a></li>
</ul>
</nav>
<iframe width="853" height="480" src="//www.youtube.com/embed/IRGZOVppDFw" frameborder="0" allowfullscreen></iframe>
<hr>
<p>
Turbo Wookie is a whimsically named product. More importantly, it's a collaborative music jukebox which streams music to multiple clients concurrently.
</p>
<p>
If that doesn't really explain anything, in less technical terms, Turbo Wookie is a collaborative jukebox; a group of people (probably friends?) can start up a Turbo Wookie instance, share the address amongst themselves, and build a playlist that they'll be able to listen to at the same time.
</p>
<p>
Think of it like an internet radio station, but the only music played is yours, and the DJ is everyone you let access your Turbo Wookie instance.
</p>
<h2>Background</h2>
<p>
Turbo Wookie started as a group final project for a Software Design and Development course. We liked it more than the other ideas proposed to the group.
</p>
<h2>How does it work?</h2>
<p>Turbo Wookie has four main components, in three parts:</p>
<ol>
<li>A Music Stream. That's manipulable.</li>
<li>A Music Library.</li>
<li>A Web Server that serves clients and manipulates the stream.</li>
<li>A Web-based Frontend. Because who wants to download another application?</li>
</ol>
<p>The three parts are:</p>
<ol>
<li><a href="http://www.musicpd.org">MPD</a> (Music Player Daemon). It acts as both our stream and library.</li>
<li>Our <a href="https://github.com/turbowookie/turbo-wookie/tree/master/backend">backend server</a>, written in <a href="http://golang.org">Go</a>.</li>
<li>Our <a href="https://github.com/turbowookie/turbo-wookie/tree/master/frontend/turbo_wookie">frontend</a>, written in <a href="http://dartlang.org">Dart</a>.</li>
</ol>
<p>
Thus far, running Turbo Wookie been tested on Linux (Ubuntu and Arch) and Windows. Presumably it'll run on OS X, we just don't have any team members running OS X.
</p>
</section>
<footer>
<hr>
<p>Copyright © 2013 <a href="https://github.com/turbowookie">The Turbo Wookie Developers</a><br>
</footer>
</article>
</body>
</html>