-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaml.html
74 lines (68 loc) · 3.92 KB
/
aml.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Demo of AMSS-Net-Audio Manipulation on User-Specified Sources with Textual Queries">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AMSS-Net</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/solo.css">
<link rel="stylesheet" href="css/syntax.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/rrssb.css">
<script src="../scripts/jquery.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [['$','$'], ['\\(','\\)']],
processEscapes: true
}
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
<link rel="canonical" href="" />
</head>
<body>
<article>
<div class="container">
<h1><a href="./index.html">AMSS-Net</a></h1>
<h3 id="audio-manipulation-language">Audio Manipulation Language</h3>
<h5 id="context-free-grammar-for-audio-manipulation-language">Context-Free Grammar for Audio Manipulation Language</h5>
<ol>
<li>$<desc> \rightarrow <cls_{v}> | <cls_{p}> | <cls_{f}> | <cls_{d}> $</li>
<li>$<cls_{v}> \rightarrow <vc_{hard}> | <vc_{soft}> $</li>
<li>$<vc_{hard}> \rightarrow <mask-vol> <srcs> $</li>
<li>$<mask-vol> \rightarrow $ <strong><em>mute</em></strong> $|$ <strong><em>remove</em></strong> $|$ <strong><em>get rid of</em></strong> $|$ <strong><em>eliminate</em></strong> <strong><em>separate</em></strong> $|$ <strong><em>isolate</em></strong> $|$ <strong><em>extract</em></strong></li>
<li>$<vc_{soft}> \rightarrow <rescale-vol> $ <strong><em>the volume of</em></strong> $<srcs>$</li>
<li>$<rescale-vol> \rightarrow $ <strong><em>increase</em></strong> $|$ <strong><em>decrease</em></strong></li>
<li>$<cls_{p}> \rightarrow $ <strong><em>pan</em></strong> $<𝑜𝑝𝑡-𝑝𝑎𝑛>$ <strong><em>to the</em></strong> $<𝑑𝑖𝑟𝑒𝑐𝑡𝑖𝑜𝑛>$ <strong><em>side</em></strong></li>
<li>$<opt-pan> \rightarrow <src> | <src> $ <strong><em>completely</em></strong></li>
<li>$<𝑑𝑖𝑟𝑒𝑐𝑡𝑖𝑜𝑛> \rightarrow$ <strong><em>left</em></strong> $|$ <strong><em>right</em></strong></li>
<li>$<cls_{f}> \rightarrow$ <strong><em>apply</em></strong> $<opt-filter>$ <strong><em>to</em></strong> $<srcs>$</li>
<li>$<opt-filter> \rightarrow <opt> <filter> | <filter>$</li>
<li>$<opt> \rightarrow $ <strong><em>light</em></strong> $|$ <strong><em>medium</em></strong> $|$ <strong><em>heavy</em></strong></li>
<li>$<filter> \rightarrow $ <strong><em>lowpass</em></strong> $|$ <strong><em>highpass</em></strong></li>
<li>$<cls_{d}> \rightarrow $ <strong><em>remove reverb from</em></strong> $<srcs>$</li>
<li>$<srcs> \rightarrow $
<strong><em>vocals</em></strong> $|$
<strong><em>drums</em></strong> $|$
<strong><em>bass</em></strong> $|$
<strong><em>vocals, bass</em></strong> $|$
<strong><em>vocals, drums</em></strong> $|$
<strong><em>drums, vocals</em></strong> $|$
<strong><em>drums, bass</em></strong> $|$
<strong><em>bass, vocals</em></strong> $|$
<strong><em>bass, drums</em></strong> $|$
<strong><em>vocals, bass, drums</em></strong> $|$
<strong><em>vocals, drums, bass</em></strong> $|$
<strong><em>drums, vocals, bass</em></strong> $|$
<strong><em>drums, bass, vocals</em></strong> $|$
<strong><em>bass, vocals, drums</em></strong> $|$
<strong><em>bass, drums, vocals</em></strong> $|$</li>
</ol>
</div>
</article>
<script src="../scripts/rrssb.min.js"></script>
</body>
</html>