summaryrefslogtreecommitdiff
path: root/AutoAudio.html
blob: 005bcb575c511f31a2e4705e819cdba310b40e87 (plain)
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
<html>
    <head>
        <script src="js/latexit.js"></script>
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
        <link rel="stylesheet" href="css/style.css">
        <link rel="shortcut icon" type="image/png" href="favicon.png">
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
        <script src="js/riffwave.js"></script>
        <title>AutoAudio</title>
    </head>

    <body>
        <div id="navbar"></div>
        <script src="navbar.js"></script>
        <h2>AutoAudio</h2>


        <p>AutoAudio is a program that creates computer generated audio.<br>
        For an explanation of AutoAudio, go <a href="explanation.html">here</a> <br>
        After you click "Create", please wait until the audio finishes before listening to it.
        </p>

        <p id='Error'></p>




        <form id='Options'>
        <fieldset>
        <legend>Options</legend>
        Length: <input type="number" name="leninput" value="5"><br>
        <input type='checkbox'> Notify me when it finishes.
        </fieldset>
        <fieldset>
        <legend>Advanced Options</legend>
        Single operator weight: <input type='number' value='1'><br>
        Number weight: <input type='number' value='1'><br>
        Function length: <input type='number' value='60'><br>
        </fieldset>
        </form>

        <br>
        <button onclick="create();" type='button' class="btn btn-success">Create</button>
        <br><br>

        <audio id='Audio' controls></audio>

        <br><br>

        <p id='Time'></p>

        <div id='Function' lang='latex'></div>

        <script src="js/AutoAudio.js"></script>
        <noscript>
        <h1>This web application requires javascript.</h1>
        </noscript>

    </body>
    <footer>
        <p>AutoArt is licensed under the <a href='LICENSE.txt'>GNU General public license</a>.</p>
    </footer>
</html>