-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsound.html
112 lines (97 loc) · 3.57 KB
/
sound.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Nima Johari" />
<meta name="keywords" content="dx7 dexed sound-synthesis" />
<meta name="robots" content="index, follow">
<meta name="description"
content="A few videos displaying capabilities of different software instruments" />
<title>Music and Sound</title>
<link rel="stylesheet" href="grid.css">
<style type="text/css">
body {
font-family: Helvetica Neue, Helvetica, Arial;
}
div#container {
margin: 0 auto;
max-width: 33em;
}
@media only screen and (min-width: 500px) {
body {
font-size: 1.2em;
}
}
#videos {
width: 100%;
text-align: center;
}
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-41835218-1']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<h1>Sound tools, sound synthesis and music (<a href="./index.html">back to home</a>)</h1>
<h2 id="music">DX7, Dexed and FM Synthesis</h2>
<div class="css-masonry css-nimasonry">
<div class="item nima">
<iframe width="100%" style="min-height:400px" src="https://www.youtube.com/embed/_tcVH2KJYMo" frameborder="0"
allowfullscreen></iframe>
<div class="title">
<div class="difficulty-level easy">easy</div> Visualizing "Take Off" preset on dexed (Yamaha DX7 emulator)
<br /><br />
<p class="french"><code>dexed</code> <code>dx7</code></p>
</div>
</div>
<div class="item nima">
<iframe width="100%" style="min-height:400px" src="https://www.youtube.com/embed/5rZ2H2YGAgI" frameborder="0"
allowfullscreen></iframe>
<div class="title">
<div class="difficulty-level easy">easy</div> Visualizing "dentistry!" preset on dexed (Yamaha DX7 emulator)
<br /><br />
<p class="french">Demo of me playing with "Dentistry!" preset and visualizing its funky spectrogram</p>
<br />
<p class="french"><code>dexed</code> <code>dx7</code></p>
</div>
</div>
</div>
<h2 id="music">Pure Data</h2>
<div class="css-masonry css-nimasonry">
<div class="item nima">
<iframe width="100%" style="min-height:400px" src="https://www.youtube.com/embed/1m9DWCjIgU4" frameborder="0"
allowfullscreen></iframe>
<div class="title">
<div class="difficulty-level medium">medium</div> Arpeggiator in Pure Data
<br /><br />
<p class="french">
I made a demo of a very basic arpeggiator in Pure Data playing <a
href="https://www.youtube.com/watch?v=48xlgXqQKLA">Divers</a> by Joanna Newsom.
</p>
<br />
<p class="french">
I'd like to expand on this video and experiment with different configuration of oscillators and envelopes for amplitude and pitch.
</p>
<br />
<p class="french"><code>puredata</code></p>
</div>
</div>
</div>
<h2>Back to home</h2>
<div class="css-masonry css-nimasonry">
<div class="item">
<div class="title">
<a href="./index.html">← Back to <code>./index.html</code></a>
</div>
</div>
</div>
</body>
</html>