-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patheducational-materials.php
105 lines (100 loc) · 4.3 KB
/
educational-materials.php
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
<html>
<head>
<?php include 'head.php'; ?>
</head>
<body>
<div id="container">
<?php include 'header.php'; ?>
<div id="spacer"><img src="img/barstaff.png" alt="staff2circuit" style="width:900px"></div>
<div id="content-container">
<?php include 'navigation.php'; ?>
<div id="content">
<h2 id="resources">Educational Materials</h2>
<p>
The resources are sorted by decreasing year of publication. If you would like to add a resource please leave a ticket on <a href="https://github.com/ismir/ismir_web/issues">GitHub</a>.<br>
</p>
<table style="width:100%">
<tr>
<td><b>Article</b></td>
<td><b>Link</b></td>
</tr>
<tr>
<td>An article that provides a MIR survey.
</td>
<td>[<a href="http://www.nowpublishers.com/article/Details/INR-042">link</a>]</td>
</tr>
<tr>
<td><b>Book</b></td>
<td><b>Link</b></td>
</tr>
<tr>
<td>
Peter Knees and Markus Schedl. "Music Similarity and Retrieval: An Introduction to Audio- and Web-based Strategies." Springer, 2016
</td><td>[<a href="http://www.springer.com/us/book/9783662497203">link</a>]</td>
</tr>
<tr>
<td>
Claus Weihs, Dietmar Jannach, Igor Vatolkin, Guenter Rudolph. "Music Data Analysis: Foundations and Applications." Chapman & Hall/CRC Computer Science & Data Analysis, 2016
</td><td>[<a href="https://www.crcpress.com/Music-Data-Analysis-Foundations-and-Applications/Weihs-Jannach-Vatolkin-Rudolph/p/book/9781498719568">link</a>]</td>
</tr>
<tr>
<td>
Meinard Müller. "Fundamentals of Music Processing." Springer, 2015.
</td><td>[<a href="http://www.springer.com/us/book/9783319219448">link</a>]</td>
</tr>
<tr>
<td>
Alexander Lerch. "An Introduction to Audio Content Analysis." Wiley, 2012.
</td><td>[<a href="http://www.wiley.com/buy/9781118266823">link</a>]</td>
</tr>
<tr>
<td>
Òscar Celma. "Music Recommendation and Discovery: The Long Tail, Long Fail, and Long Play in the Digital Music Space." Springer, 2010.
</td><td>[<a href="http://ocelma.net/MusicRecommendationBook/index.html">link</a>]</td>
</tr>
<tr>
<td>
Meinard Müller. "Information Retrieval for Music and Motion." Springer, 2007.
</td><td>[<a href="http://www.springer.com/us/book/9783540740476">link</a>]</td>
</tr>
<tr>
<td>
William Arthur Sethares. "Rhythm and Transforms." Springer, 2007.
</td><td>[<a href="http://www.springer.com/us/book/9781846286391">link</a>]</td>
</tr>
<tr>
<td>Anssi P. Klapuri and Manuel Davy, editors. "Signal Processing Methods for Music Transcription." Springer, New York, 2006.
</td><td>[<a href="http://www.cs.tut.fi/~klap/amt.html">link</a>]</td>
</tr>
<tr>
<td>
William A. Sethares. "Tuning, Timbre, Spectrum, Scale." Springer, London, 1998.
</td><td>[<a href="http://sethares.engr.wisc.edu/ttss.html">link</a>]</td>
</tr>
<tr>
<td><b>Website</b></td>
<td><b>Link</b></td>
</tr>
<tr>
<td>Matlab code for feature extraction, pitch tracking, key detection, onset detection, and links to data sets and MIR-related software projects.
</td>
<td>[<a href="http://www.AudioContentAnalysis.org">link</a>]</td>
</tr>
<tr>
<td>A centralized collection of teaching resources related to Music Information Retrieval. It is addressed to teachers and students interested on these technologies from an educational point of view. Current resources include the following: a list of courses related to MIR in different levels, institutions and countries; a collaborative (small) list of teaching materials, such as exercises, musical examples, code; and a list of datasets and reference annotations.
</td>
<td>[<a href="https://teachingmir.wikispaces.com/">link</a>]</td>
</tr>
<tr>
<td>"This tutorial provides a survey of the field of Music Information Retrieval (MIR), that aims, among other things, at automatically extracting semantically meaningful information from various representations of music entities, such as audio, scores, lyrics, web pages or microblogs. The tutorial is designed for students, engineers, researchers, and data scientists who are new to MIR and want to get introduced to the field."
</td>
<td>[<a href="http://mtg.upf.edu/node/3556">link</a>]</td>
</tr>
</table>
</br>
</div>
<?php include 'footer.php'; ?>
</div>
</div>
</body>
</html>