-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvalence.m
181 lines (159 loc) · 6.39 KB
/
valence.m
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
function vf = valence(soundfile,varargin)
vf=zeros(1,5);
if ~isempty(varargin);
if strcmp(varargin{1},'plot');
doplots = 1;
else strcmp(varargin{1},'noplot') || strcmp(varargin{1},'noplots');
doplots = 0;
end
else
doplots = 1;
end
%% Standard Deviation of the RMS
disp('Computing Sd of RMS')
soundfile = miraudio(soundfile);
rm = get(mirrms(soundfile,'Frame',.046,.5),'Data');
rmdata = rm{1}{1};
meanrmdata = mean(rmdata);
stdrmdata = std(rmdata);
breakpoint = .024254;
contribution = .015667/.3161;
vf(1) = -0.3161 * ((std(rmdata) - 0.024254)./0.015667);
maxcont = -0.3161 * ((0 - 0.024254)./0.015667);
if doplots
subplot(3,2,1)
plot(rmdata,'r--','LineWidth',1)
hold on
lenrmdata = length(rmdata);
plot([0 lenrmdata], repmat(meanrmdata+stdrmdata,1,2), '--','LineWidth',3); % plot the horizontal line
plot([0 lenrmdata], repmat(meanrmdata,1,2), 'r:'); % plot the horizontal line
%plot([0 lenrmdata], repmat(meanrmdata+breakpoint,1,2), 'k--'); % plot the horizontal line
title('RMS Standard Deviation Valence Contribution')
%text(lenrmdata/20, meanrmdata,strcat('+',num2str(round(maxcont*100)/100)),'FontWeight','Bold','BackgroundColor',[1 1 1])
text(lenrmdata/20,meanrmdata+breakpoint,'+/- 0','FontWeight','Bold','BackgroundColor',[1 1 1])
text(lenrmdata/20,meanrmdata+stdrmdata, num2str(round(vf(1)*100)/100),'FontWeight','Bold','BackgroundColor',[1 1 1])
legend('RMS','Standard Deviation','Mean RMS')
xlabel('Frame')
hold off
end
%% Maximum Value of the Summarized Fluctuation
disp('Computing Fluctuation')
fl = mirfluctuation(soundfile,'Summary');
fldata = get(fl,'Data');
flpos = get(fl,'Pos');
peak = mirpeaks(fl,'Total',1);
peakdata = get(peak,'PeakVal');
peakpos = get(peak,'PeakPosUnit');
breakpoint = 13270.1836;
contribution = 10790.655/.6099;
vf(2) = (peakdata{1}{1}{1}-breakpoint)/contribution;
if doplots
subplot(3,2,3)
plot(flpos{1}{1},fldata{1}{1})
hold on
plot(peakpos{1}{1}{1},peakdata{1}{1}{1}, 'rx','MarkerSize',15,'LineWidth',3)
plot([0 10], repmat(breakpoint,1,2), 'k--'); % plot the horizontal line
plot([0 10], repmat(breakpoint+contribution,1,2), 'k:'); % plot the horizontal line
text(max(peakpos{1}{1}{1})/10,breakpoint,'+/- 0','FontWeight','Bold','BackgroundColor',[1 1 1])
text(max(peakpos{1}{1}{1})/10,breakpoint+contribution,'+ 1','FontWeight','Bold','BackgroundColor',[1 1 1])
text(peakpos{1}{1}{1}+0.3,peakdata{1}{1}{1},num2str(round(vf(2)*100)/100),'FontWeight','Bold','BackgroundColor',[1 1 1])
title('Summarized Flucutation Valence Contribution')
xlabel('Frequency (Hz)')
hold off
end
%% Key Clarity
disp('Computing Key Clarity')
%soundfile = miraudio('white');
ks = mirkeystrength(mirchromagram(soundfile,'Frame',0.046,0.5,'Wrap',0,'Pitch',0));
[k kc] = mirkey(ks);
kc = get(kc,'Data');
kcdata = kc{1}{1};
breakpoint = 0.5123;
contribution = .091953/0.8802;
vf(3) = (mean(kcdata) - breakpoint)/contribution;
if doplots
subplot(3,2,4)
plot(kcdata,'r--','LineWidth',1)
lenkcdata = length(kcdata);
hold on
title('Key Clarity Valence Contribution')
plot([0 lenkcdata], repmat(mean(kcdata),1,2), '--','LineWidth',3); % plot the horizontal line
plot([0 lenkcdata], repmat(breakpoint,1,2), 'k--'); % plot the horizontal line
plot([0 lenkcdata], repmat(breakpoint+contribution,1,2), 'k:','LineWidth',1); % plot the horizontal line
text(lenkcdata/20,breakpoint,'+/- 0','FontWeight','Bold','BackgroundColor',[1 1 1])
text(lenkcdata/20,breakpoint+contribution,' + 1','FontWeight','Bold','BackgroundColor',[1 1 1])
text(lenkcdata/20,mean(kcdata),num2str(round(vf(3)*100)/100),'FontWeight','Bold','BackgroundColor',[1 1 1])
legend('KeyClarity','Mean')
xlabel('Frame')
hold off
end
%% Mode
disp('Computing Mode')
mo = mirmode(ks);
mo = get(mo,'Data');
modata = mo{1}{1};
meanmodata=mean(modata);
breakpoint = -.0019958;
contribution = .048664/.4565;
vf(4) = (meanmodata - breakpoint)/contribution;
if doplots
subplot(3,2,6)
plot(modata,'r--','LineWidth',1)
lenmodata=length(modata);
hold on
title('Mode Valence Contribution')
plot([0 lenmodata], repmat(meanmodata,1,2), '--','LineWidth',3); % plot the horizontal line
plot([0 lenmodata], repmat(breakpoint,1,2), 'k--'); % plot the horizontal line
plot([0 lenmodata], repmat(breakpoint+contribution,1,2), 'k:','LineWidth',1); % plot the horizontal line
text(lenmodata/20,breakpoint,'+/- 0','FontWeight','Bold','BackgroundColor',[1 1 1])
text(lenmodata/20,breakpoint+contribution,' + 1','FontWeight','Bold','BackgroundColor',[1 1 1])
text(lenmodata/20,meanmodata,num2str(round(vf(4)*100)/100),'FontWeight','Bold','BackgroundColor',[1 1 1])
legend('Mode','Mean')
xlabel('Frame')
hold off
end
%% Novelty
disp('Computing Novelty')
ns = mirnovelty(mirspectrum(soundfile,'Frame',.1,.5,'Max',5000),'Normal',0);
ns = get(ns,'Data');
nsdata = ns{1}{1};
lenns=length(nsdata);
% Have to plot first because of NaNs
if doplots
subplot(3,2,5)
plot(nsdata,'r--','LineWidth',1)
hold on
end
% Now remove them and find the mean:
nsdata(isnan(nsdata))=[];
breakpoint = 131.9503;
contribution = 47.6463/.4015;
vf(5) = (mean(nsdata) - breakpoint)/contribution;
if doplots
title('Novelty Valence Contribution')
plot([0 lenns], repmat(mean(nsdata),1,2), '--','LineWidth',3); % plot the horizontal line
plot([0 lenns], repmat(breakpoint+contribution,1,2), 'k:','LineWidth',1); % plot the horizontal line
text(lenns/20,breakpoint+contribution,' + 1','FontWeight','Bold','BackgroundColor',[1 1 1])
text(lenns/20,mean(nsdata),num2str(round(vf(5)*100)/100),'FontWeight','Bold','BackgroundColor',[1 1 1])
legend('Novelty','Mean')
xlabel('Frame')
hold off
end
%% Bar Graph Summary
if doplots
subplot(3,2,2)
factors = {'SdRMS', 'MaxFluc', 'KeyClarity', 'Mode', 'Novelty'};
bar(vf)
hold on
plot([0 6], 2, 'k:','LineWidth',1); % plot the horizontal line
plot([0 6], -2, 'k:','LineWidth',1); % plot the horizontal line
%set(gca,'YLim',[-2.5 2.5])
colormap(cool)
title(strcat('Valence = ',num2str(round((5.2749+sum(vf))*100)/100)),'FontSize', 14,...
'FontWeight','Bold','HorizontalAlignment','center','BackgroundColor',[1 1 1])
%text(2.6,2.2,strcat('Valence = ',num2str(round((5.2749+sum(vf))*100)/100)),'BackgroundColor',[1 1 1])
text(1/6,0,'+ 5.28','BackgroundColor',[1 1 1])
set(gca,'XTickLabel',factors)
hold off
end
end