-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexV1.html
More file actions
89 lines (83 loc) · 2.93 KB
/
indexV1.html
File metadata and controls
89 lines (83 loc) · 2.93 KB
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
<!-- /* // ****** LICENSE NOTICE ****** \\
COPYRIGHT: 2020 Stuart Peel
This PROGRAM is distributed under the terms of the:
AGPL-3.0-or-later
*/ -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Music Machine</title>
<link rel="stylesheet" href="./styles/home.css" />
</head>
<body>
<div class="headWrap">
<header>
<h2>Da Synth Dude</h2>
<nav>
<a href="./dasynth.html">Da Synth App</a>
</nav>
</header>
</div>
<main>
<div class="mainWrap">
<h3>Welcome to the Digital Audio Synth</h3>
<p>
An open source project that is free to distribute, modify and build
upon.
</p>
<p>
This is a desktop site and will not function without a physical
keyboard. You could use a tablet device with a keyboard, but mobile
phones are not suitable and the interface will not scale down to
mobile phone size screens. There was no point making it do so.
</p>
<p>
But, have some fun, make some tunes for your games and let us hear
your creations.
</p>
<section class="section-list">
<h4>DA SYNTH DUDE</h4>
<p>What you can do with this app:</p>
<ul>
<li>play some musical notes</li>
<li>change the octave that the keyboard plays</li>
<li>control the decay (the duration that each note plays)</li>
<li>change the wave form</li>
<li>play some drums; kick, kettles, snare and Hi Hat</li>
<li>set the echo on the kettle drums for really funky sounds</li>
<li>record the music as you play</li>
<li>download the recording directly from the Media Recorder</li>
<li>upload the edited file (I use Audacity) as music.wav</li>
<li>play back the uploaded file and record on top of it</li>
<li>have some fun creating tunes</li>
</ul>
</section>
<p>
Note: to upload a file you will need an account to do so, just send me
a message and we'll set you up!
</p>
<button>
<a href="./dasynth.html">Enter Da Synth Dude App</a>
</button>
</div>
</main>
<footer>
<div class="footer">
<p>An open source project: fishbite 2022</p>
<p>
Source code available here:
<a href="https://github.com/Fishbite/webAudio" target="_blank"
>GitHub WebAudio Repo</a
>
</p>
</div>
</footer>
<!-- <script src="./src/script.js"></script>
<script type="module" src="./src/playMusic.js"></script>
<script src="./src/upload.js"></script> -->
<!-- <script src="./src/timed.js"></script> -->
</body>
</html>