-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemos.html
98 lines (86 loc) · 3.5 KB
/
demos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Yoshimi - Demos</title>
<link rel=stylesheet type="text/css" href="style.css" />
<link rel="icon" href="img/favicon.png" type="image/x-icon" />
</head>
<body>
<header>
<div id="logo-wrapper">
<a href="./"><img id="logo" src="img/logo.png" alt="Yoshimi"/></a>
<a href="./"><img id="robot" src="img/robot_head.png" alt="Pink robot"/></a>
</div>
<div id="subtitle">
Software synthesizer for Linux
</div>
</header>
<div class="nav-wrapper">
<nav>
<span class="nav-row"><a href="./" >Home</a><a href="downloads.html" >Downloads</a></span><span class="nav-row"><a href="screenshots.html" >Screenshots</a></span><span class="nav-row"><a href="demos.html" class="active" >Demos</a><a href="help.html" >Help</a></span>
</nav>
</div>
<div id="main-wrapper">
<main>
<h1>Music demos</h1>
<p>
Here you can listen to some music and other experiments that
have been created with the help of Yoshimi.
</p>
<div class="demos">
<h2>Rendition of BWV 785 - by <span class="person">Jörn Eichler</span></h2>
<div>
<audio controls preload="none">
<source src="audio/Bach_Invention14_BWV785.mp3" type="audio/mpeg">
</audio>
</div>
<!-- <h2>Ghost Train - by <span class="person">Will Godfrey</span></h2> -->
<!-- <div> -->
<!-- <embed src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/560611905&visual=false"/> -->
<!-- </div> -->
<h2>Synth Preludes No 1 and 2 - by <span class="person">Lorenzo Sutton</span></h2>
<div>
<audio controls preload="none">
<source src="https://archive.org/download/synth_prelude_01/synth_prelude_01.mp3"
type="audio/mpeg">
</audio>
<audio controls preload="none">
<source src="https://archive.org/download/synth_prelude_02/synth_prelude_02.mp3"
type="audio/mpeg">
</audio>
</div>
<h2>The Avenger (recorded live) - by <span class="person">Will Godfrey</span></h2>
<iframe allowfullscreen src="https://www.youtube.com/embed/ziuPJuDhjGw">
</iframe>
<h2>Lurking Simplicity - by <span class="person">Jesper Lloyd</span></h2>
<div>
<audio controls preload="none">
<source src="https://archive.org/download/lurkingsimplicity/LurkingSimplicity.mp3"
type="audio/mpeg">
</audio>
</div>
<h2>Improvisation with Will Godfrey Collection sounds - by <span class="person">Lorenzo Sutton</span></h2>
<iframe allowfullscreen src="https://www.youtube.com/embed/kzBy5tnDoBw">
</iframe>
<h2>Synth Jam #14 - by <span class="person">Dark side of Synth</span></h2>
<iframe allowfullscreen src="https://www.youtube.com/embed/hWD9FV0zAI8">
</iframe>
<h2>Ride With Yoshimi (fully automated) - by <span class="person">Will Godfrey</span></h2>
<iframe allowfullscreen src="https://www.youtube.com/embed/28X8KuqsLz8">
</iframe>
<h2>Sequetron playing Yoshimi - by <span class="person">IIITonEIII</span></h2>
<iframe allowfullscreen
src="https://www.youtube.com/embed/3WSHQNGWHGg?list=PLB0gLN-hUZXSVfwfYmT79yYaEacc-3Q19">
</iframe>
<!-- <h2>Into the Gates of Arram Koth - by <span class="person">Will Godfrey</span></h2> -->
<!-- <embed src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/101189942&visual=false"/> -->
</div>
</main>
</div>
<footer>
<a href="about.html" >About</a><a href="history.html" >History</a><a href="people.html" >People</a><a href="contact.html" >Contact</a>
</footer>
</body>
</html>