Daniel@0
|
1 # Part of DML (Digital Music Laboratory)
|
Daniel@0
|
2 # Copyright 2014-2015 Steven Hargreaves; Samer Abdallah, University of London
|
Daniel@0
|
3
|
Daniel@0
|
4 # This program is free software; you can redistribute it and/or
|
Daniel@0
|
5 # modify it under the terms of the GNU General Public License
|
Daniel@0
|
6 # as published by the Free Software Foundation; either version 2
|
Daniel@0
|
7 # of the License, or (at your option) any later version.
|
Daniel@0
|
8 #
|
Daniel@0
|
9 # This program is distributed in the hope that it will be useful,
|
Daniel@0
|
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
Daniel@0
|
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
Daniel@0
|
12 # GNU General Public License for more details.
|
Daniel@0
|
13 #
|
Daniel@0
|
14 # You should have received a copy of the GNU General Public
|
Daniel@0
|
15 # License along with this library; if not, write to the Free Software
|
Daniel@0
|
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
Daniel@0
|
17
|
Daniel@0
|
18 # -*- coding: utf-8 -*-
|
Daniel@0
|
19 __author__="hargreavess, abdallahs"
|
Daniel@0
|
20
|
Daniel@0
|
21 import sys
|
Daniel@0
|
22 from csvutils import *
|
Daniel@0
|
23 from pitchutils import *
|
Daniel@0
|
24 from aggregate import *
|
Daniel@0
|
25 from rdflib import RDF, RDFS
|
Daniel@0
|
26 from rdfutils import parse_xsd_duration, event_ns, tl_ns, af_ns
|
Daniel@0
|
27 from n3Parser import get_rdf_graph_from_n3
|
Daniel@0
|
28
|
Daniel@0
|
29 # map from pitch names to pitch class numbers in 0..11
|
Daniel@0
|
30 pitch_map = { pitch_name(i,oct):i for oct in range(0,9) for i in range(0,12) }
|
Daniel@0
|
31
|
Daniel@0
|
32 # data conversions to a list of (pitch_name:string,duration:float) pairs representation
|
Daniel@0
|
33
|
Daniel@0
|
34 def transcription_from_csv(filename):
|
Daniel@0
|
35 # we assume format time, duration, pitch, velocity, note_name
|
Daniel@0
|
36 return csv_map_rows(filename,5,lambda row:(row[4],float(row[1])))
|
Daniel@0
|
37
|
Daniel@0
|
38 def transcription_from_n3(filename):
|
Daniel@0
|
39 graph=get_rdf_graph_from_n3(filename)
|
Daniel@0
|
40 notes = [ ( graph.value(ev, RDFS.label),
|
Daniel@0
|
41 parse_xsd_duration(graph.value(graph.value(ev,event_ns.time), tl_ns.duration)) )
|
Daniel@0
|
42 for ev in subject((RDF.type, af_ns.Note)) ]
|
Daniel@0
|
43
|
Daniel@0
|
44 def notes_histogram(notes):
|
Daniel@0
|
45 hist = 12*[0]
|
Daniel@0
|
46 for note in notes: hist[pitch_map[note[0]]] += note[1]
|
Daniel@0
|
47 return hist
|
Daniel@0
|
48
|
Daniel@0
|
49 # Compute aggregate pitch histogram from a list of input transcriptions.
|
Daniel@0
|
50 def aggregate(transcriptions):
|
Daniel@0
|
51 parser_table = { 'n3':transcription_from_n3,
|
Daniel@0
|
52 'csv':transcription_from_csv }
|
Daniel@0
|
53
|
Daniel@0
|
54 hist = 12*[0] # will be aggragate histogram
|
Daniel@0
|
55 def accum(f):
|
Daniel@0
|
56 h = notes_histogram(decode_tagged(parser_table,f))
|
Daniel@0
|
57 total = sum(h)
|
Daniel@0
|
58 for x in range(0, 12): hist[x] += h[x]/total
|
Daniel@0
|
59 stats=for_each(transcriptions,accum)
|
Daniel@0
|
60 return { 'result': discrete_hist(pitch_class_names,hist), 'stats':stats }
|