Skip to content

Commit 4c004fe

Browse files
committed
Add the landing page.
1 parent 8699a2a commit 4c004fe

7 files changed

Lines changed: 93 additions & 0 deletions

docs/images/screenshot.png

141 KB
Loading

docs/index.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
7+
<link href="styles/main.css" rel="stylesheet"/>
8+
9+
<title>Aeolus</title>
10+
</head>
11+
<body>
12+
13+
<h1>Aeolus</h1>
14+
15+
<p>
16+
Aeolus is a pipe organ synthesizer (VST plugin) inspired by the <a href="https://kokkinizita.linuxaudio.org/linuxaudio/aeolus/">original Aeolous</a> project.
17+
</p>
18+
19+
<img class="screenshot" src="images/screenshot.png" width="1003" height="448" />
20+
21+
<p>
22+
The present implementation follows the pipes audio generation of the original Aeolous, but introduces a number of changes and improvements:
23+
24+
<ul>
25+
<li>Pipe models can be composed of multiple pipes (to create proper mixtures);</li>
26+
<li>Different pipes can be used across the keyboard compass (this enables mixtures breaking-back);</li>
27+
<li>Pipes chiff noise is played on attack;</li>
28+
<li>The plugin uses zero delay convolutional reverb with selectable IRs from <a href="https://www.openair.hosted.york.ac.uk/">OpenAir</a> library;</li>
29+
<li>Registration presets also acts as a sequencer.</li>
30+
</ul>
31+
</p>
32+
33+
<h2>Download</h2>
34+
<a href="https://github.com/Archie3d/aeolus_plugin/releases">The latest plugin build can be downloaded here.</a>
35+
36+
<h2>Recordings</h2>
37+
<p>
38+
The following pieces were performed by <a href="https://soundcloud.com/user-529417687">David Garner</a> using Aeolus plugin. He kindly provided me with these recordings.
39+
</p>
40+
41+
<table class="playlist">
42+
<tr>
43+
<td>Walther - Herr Christ Der Ein</td>
44+
<td><audio controls src="recordings/WalterHerChristDerEinigGottessohn20210803a.mp3" /></td>
45+
</tr>
46+
<tr>
47+
<td>Danrieu - Dialogue</td>
48+
<td><audio controls src="recordings/DandrieuDialogue20210819a.mp3" /></td>
49+
</tr>
50+
<tr>
51+
<td>Boellmann - Interlude</td>
52+
<td><audio controls src="recordings/BoellmannInterlude202010906a.mp3" /></td>
53+
</tr>
54+
<tr>
55+
<td>Bach - Vom Himmel Hoch BWV606</td>
56+
<td><audio controls src="recordings/BachVomHimmelHochBWV606_20210807a_WithAeolusOrgan.mp3" /></td>
57+
</tr>
58+
</table>
59+
60+
</body>
61+
</html>
Binary file not shown.
2.1 MB
Binary file not shown.
3.2 MB
Binary file not shown.
1.87 MB
Binary file not shown.

docs/styles/main.css

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
body {
2+
font-family: Verdana, Tahoma, Arial, Sans-serif;
3+
font-size: 10pt;
4+
line-height: 1.6;
5+
color: #CCCCCC;
6+
background-color: #333333;
7+
}
8+
9+
h1 {
10+
color: #FFFFFF;
11+
}
12+
13+
h2 {
14+
color: #EEEEEE;
15+
}
16+
17+
a {
18+
color: #6699FF;
19+
text-decoration: none;
20+
}
21+
22+
a:hover {
23+
text-decoration: underline;
24+
}
25+
26+
img.screenshot {
27+
box-shadow: 5px 5px 16px #000000;
28+
}
29+
30+
table.playlist {
31+
width: 800px;
32+
}

0 commit comments

Comments
 (0)