-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy patholaf_result_utils.rb
210 lines (176 loc) · 7.43 KB
/
olaf_result_utils.rb
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#!/usr/bin/env ruby
# Olaf: Overly Lightweight Acoustic Fingerprinting
# Copyright (C) 2019-2023 Joren Six
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# This script provides some utilities to deal with the csv output.
# Due to threading the CSV output is likely to be scrambled: lines of simultaneous
# queries are interleaved. This script is able to sort the lines.
#
# cat result_output.csv | ruby eval/olaf_result_utils.rb sort
#
# Also the results can be filtered for a minimum duration. Short duration results can be
# false postitives.
#
# cat result_output.csv | ruby eval/olaf_result_utils.rb filter
#
# Subsequent matching fragments can be merged with the merge command.
# If fragments of 30 seconds are used and second 0 - 30 match with a reference
# item and also 30 - 60 matches with the same reference, the result lines are merged:
#
# cat result_output.csv | ruby eval/olaf_result_utils.rb merge
# #verify with:
# nl result_output.csv
# cat result_output.csv | ruby eval/olaf_result_utils.rb merge | nl
#
# To verify false or true positives it is of interest to listen to the
# matches. This script selects the matching parts of the query and reference and
# stores them in a wav file for inspection. Here a random selection of 10 results are checked:
#
# cat result_output.csv | sort --random-sort | head | ruby eval/olaf_result_utils.rb check
#
# The utilities can be combined to filter, sort and check:
#
# olaf query --threads 20 --fragmented music_directory > result_output.csv
# cat result_output.csv | ruby eval/olaf_result_utils.rb filter | ruby eval/olaf_result_utils.rb sort | sort --random-sort | head | ruby eval/olaf_result_utils.rb check
#
#
require_relative 'olaf_result_line.rb'
AUDIO_SELECT_COMMAND = proc{ |input, output, start, duration| %W[ffmpeg -hide_banner -y -loglevel panic -i #{input} -ss #{start} -t #{duration} -ac 1 #{output}] }
MIN_DURATION_IN_SECONDS = 5
MIN_MATCH_SCORE = 13
FRAGMENT_DURATION_IN_SECONDS = 30
def store_audio_part(in_audio_file, in_offset, duration, out_audio_file )
select_command = AUDIO_SELECT_COMMAND[in_audio_file, out_audio_file, in_offset, duration]
system(*select_command)
end
def result_line_to_wav(folder,duration,result_line)
line = OlafResultLine.new(result_line)
if line.valid
#if the duration is nil use the match duration
duration = (line.query_stop - line.query_start) unless duration
#Find the query, first in the same folder, then in the ref folder, then in the given folder
query = line.query
query = File.join(File.dirname(line.ref_path),line.query) unless File.exist? query
query = File.join(folder,line.query) unless File.exist? query
if File.exist? query
ref_out_name = "#{File.basename(query, File.extname(query))}_#{File.basename(line.ref_path, File.extname(line.ref_path))}.wav"
store_audio_part(query,line.query_offset + line.query_start ,duration,ref_out_name)
else
STDERR.puts("Could not find query file #{query}")
end
if File.exist? line.ref_path
ref_out_name = "#{File.basename(line.ref_path, File.extname(line.ref_path))}_#{File.basename(query, File.extname(query))}.wav"
store_audio_part(line.ref_path,line.ref_start,duration,ref_out_name)
else
STDERR.puts("Could not find ref file #{line.ref_path}")
end
else
STDERR.puts "Invalid line: '#{result_line}'"
end
end
command = ARGV[0]
if command == "sort"
lines = STDIN.read.split("\n")
result_lines = Array.new
lines.each do |line|
result_line = OlafResultLine.new(line)
result_lines << result_line if result_line.valid
end
result_lines.sort_by { |l| [l.query, l.query_offset,-l.match_count,l.query_start] }.each{|l| puts l}
elsif command == "filter"
lines = STDIN.read.split("\n")
result_lines = Array.new
min_duration = ARGV[1] # can be nil
min_duration = min_duration.to_f if min_duration
min_duration = MIN_DURATION_IN_SECONDS unless min_duration
lines.each do |line|
result_line = OlafResultLine.new(line)
if result_line.valid
name_ok = (File.basename(result_line.query).start_with? "MN" and File.basename(result_line.ref_path).start_with? "MN")
diff_ok = (result_line.query_start - result_line.ref_start).abs > 100
time_ok = (result_line.query_start > 100 and result_line.ref_start < 40 )
duration = (result_line.query_stop - result_line.query_start)
duration_ok = duration > min_duration
match_count_ok = result_line.match_count > MIN_MATCH_SCORE
puts result_line if (duration_ok and match_count_ok and name_ok and diff_ok and time_ok)
end
end
elsif command == "merge"
lines = STDIN.read.split("\n")
result_lines = Hash.new
#store in result_lines hash
lines.each do |line|
result_line = OlafResultLine.new(line)
if result_line.valid
key = [File.basename(result_line.query,File.extname(result_line.query)), File.basename(result_line.ref_path,File.extname(result_line.ref_path))].join("-_-")
result_lines[key] = Array.new unless result_lines[key]
result_lines[key] << result_line
end
end
result_lines.each do |key,lines|
#keeps only the best match for each offset
#makes sure the lines are sorted by offset and match count
lines = lines.sort_by{ |l| [l.query_offset, -l.match_count, l.query_start]}
offsets = Hash.new
lines = lines.delete_if do |l|
already_seen = offsets[l.query_offset]
offsets[l.query_offset] = true
already_seen
end
#merge the matches if offsets are forming a uninterrupted sequence
seq = Array.new
prev_query_offset = -1
lines.each do |l|
if(prev_query_offset < 0)
#start a new sequence from here
seq << l
elsif (prev_query_offset + FRAGMENT_DURATION_IN_SECONDS) == l.query_offset
#continue a sequence
seq << l
else
#end and restart a sequence
match_count = 0
seq.each do |sl|
match_count = match_count + sl.match_count
end
seq[0].match_count = match_count
seq[0].query_stop = seq[-1].query_stop
seq[0].ref_stop = seq[-1].ref_stop
puts seq[0]
##start a new sequence
seq = [l]
end
prev_query_offset = l.query_offset
#make query time absolute, not relative vs offset:
l.query_start = l.query_offset + l.query_start
l.query_stop = l.query_offset + l.query_stop
l.query_offset = 0
end
match_count = 0
seq.each do |sl|
match_count = match_count + sl.match_count
end
seq[0].match_count = match_count
seq[0].query_stop = seq[-1].query_stop
seq[0].ref_stop = seq[-1].ref_stop
puts seq[0]
end
elsif command == "check"
duration = ARGV[1] #can be nil
folder = ARGV[2] #can be nil
result_lines = STDIN.read
result_lines = result_lines.split("\n")
result_lines.each do |result_line|
puts result_line
result_line_to_wav(folder,duration,result_line)
end
end