-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscreenshots.html
158 lines (155 loc) · 4.79 KB
/
screenshots.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Yoshimi - Screenshots</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" class="active" >Screenshots</a></span><span class="nav-row"><a href="demos.html" >Demos</a><a href="help.html" >Help</a></span>
</nav>
</div>
<div id="main-wrapper">
<main>
<h1>Screenshots</h1>
<div class="screenshots">
<p>
Here you can find screenshots showing some of Yoshimi's many controls.
</p>
<figure>
<img alt="main gui window" src="img/ui/Main.png" />
<figcaption>
The main window - the starting point for most Yoshimi adventures
</figcaption>
</figure>
<figure>
<img alt="mixer window" src="img/ui/Mixer.png" />
<figcaption>
Mixer controls in 8x2 configuration, with 6 active parts
</figcaption>
</figure>
<figure>
<img alt="virtual keyboard" src="img/ui/VirtualKeyboard.png" />
<figcaption>
The virtual keyboard, containing many additional controls
</figcaption>
</figure>
<figure>
<img alt="instrument bank selection" src="img/ui/BankOverview.png" />
<figcaption>
The instrument bank selection window
</figcaption>
</figure>
<figure>
<img alt="instrument bank" src="img/ui/InstrumentBank.png" />
<figcaption>
Just one of the many instrument banks that are shipped with Yoshimi.
</figcaption>
</figure>
<figure>
<img alt="example of instrument properties" src="img/ui/InstrumentProperties.png" />
<figcaption>
An example of instrument properties - active engines and metadata
</figcaption>
</figure>
<figure>
<img alt="pad-synth controls" src="img/ui/PadSynth.png" />
<figcaption>
Controls for the PadSynth engine
</figcaption>
</figure>
<figure>
<figure>
<img alt="pad-synth envelope controls" src="img/ui/PadSynthEnvelopes.png" />
<figcaption>
Envelope controls for the PadSynth engine
</figcaption>
</figure>
<figure>
<img alt="sub-synth controls" src="img/ui/SubSynth.png" />
<figcaption>
Controls for the SubSynth engine
</figcaption>
</figure>
<figure>
<img alt="resonance control window" src="img/ui/Resonance.png" />
<figcaption>
A resonance control window - in this case for an AddSynth voice
</figcaption>
</figure>
<figure>
<img alt="add-synth controls" src="img/ui/AddSynth.png" />
<figcaption>
Controls for the AddSynth engine
</figcaption>
</figure>
<figure>
<img alt="voice parameter controls" src="img/ui/VoiceParams.png" />
<figcaption>
Controls for an AddSynth voice - each instance can have up to 8 voices.
</figcaption>
</figure>
<figure>
<img alt="voice list window" src="img/ui/VoicesList.png" />
<figcaption>
The voice list provides an overview and an easy way to navigate and tweak
important parameters.
</figcaption>
</figure>
<figure>
<img alt="waveform editor" src="img/ui/WaveformEditor.png" />
<figcaption>
Waveform controls - with both simple and advanced means of adjustment.
</figcaption>
</figure>
<figure>
<img alt="vector control configuration" src="img/ui/Vectors.png" />
<figcaption>
Vector configuration - for controlling parameters with a joystick.
</figcaption>
</figure>
<figure>
<img alt="instrument search" src="img/ui/InstrumentSearch.png" />
<figcaption>
Instrument search - making it easier to locate instruments by types
</figcaption>
</figure>
<figure>
<img alt="part controller settings" src="img/ui/Controllers.png" />
<figcaption>
Per-part controllers of various dynamic properties; filters, panning, bandwidth, etc.
</figcaption>
</figure>
<figure>
<img alt="aftertouch settings" src="img/ui/AftertouchSettings.png" />
<figcaption>
Basic settings for which aspects of a part aftertouch can affect, by key and/or channel.
</figcaption>
</figure>
<figure>
<img alt="file browser" src="img/ui/FilerFiles.png" />
<figcaption>
A custom file browser with support for favourite directories.
</figcaption>
</figure>
</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>