forked from hataori-p/real-voice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
splitNote.lua
316 lines (258 loc) · 8.44 KB
/
splitNote.lua
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
SCRIPT_TITLE = "RV Split Note"
function getClientInfo()
return {
name = SV:T(SCRIPT_TITLE),
author = "Hataori@protonmail.com",
category = "Real Voice",
versionNumber = 2,
minEditorVersion = 65537
}
end
------------ Praat pitch
local praatPitch = {} -- class
do
local PitchHeader = {
{n="File_type", v="File type = \"ooTextFile\"", t="del"},
{n="Object_class", v="Object class = \"Pitch 1\"", t="del"},
{t="del"},
{n="xmin", t="num"},
{n="xmax", t="num"},
{n="nx", t="num"},
{n="dx", t="num"},
{n="x1", t="num"},
{n="ceiling", t="num"},
{n="maxnCandidates", t="num"}
}
function praatPitch:loadPitch(fnam) -- constructor, short text format
local o = {}
setmetatable(o, self)
self.__index = self
local data, header = {}, {}
local fi = io.open(fnam)
for i = 1, #PitchHeader do
local lin = fi:read("*l")
local h = PitchHeader[i]
if h.v then
assert(lin == h.v)
elseif h.t == "num" then
lin = tonumber(lin)
end
if h.n and h.t ~= "del" then
header[h.n] = lin
end
end
header["fileType"] = "ooTextFile"
header["objectClass"] = "Pitch 1"
assert(header.nx)
for i = 1, header.nx do
local pitch = { i = i }
pitch.t = (i - 1) * header.dx + header.x1
local int = fi:read("*n", "*l") -- intensity
local cand = fi:read("*n", "*l") -- candidates
for k = 1, cand do
local f = fi:read("*n", "*l")
if k == 1 then
pitch.f = f
end
fi:read("*n", "*l")
end
table.insert(data, pitch)
end;
fi:close()
o.header = header
o.data = data
return o
end
function praatPitch:getPitch(t) -- ret: f0 [Hz]
if t < self.data[1].t then return 0 end
if t > self.data[#self.data].t then return 0 end
local ll, rr = 1, #self.data
while (rr-ll) > 1 do
local cc = math.floor((rr + ll) / 2)
if t <= self.data[cc].t then
rr = cc
else
ll = cc
end
end
local pf, pt = self.data[ll].f, self.data[rr].f
if pf == 0 or pt == 0 then return 0 end
local pf, pt = math.log(pf), math.log(pt)
local fro, til = self.data[ll].t, self.data[rr].t
return math.exp(pf + (pt - pf) / (til - fro) * (t - fro))
end
end -- end class
--------- qunatization
local function HzToHalftone(hz)
if hz<=0 then return end
return 12 * math.log(hz / 440) / math.log(2)
end
local function medianNotePitch(noteStart, noteEnd, pitch) -- times in secs
local med, cnt, unvoc = {}, 0, 0
local t = noteStart
while t <= noteEnd do
local f0 = pitch:getPitch(t)
if f0 > 0 then
local qn = math.floor(HzToHalftone(f0) + 0.5)
table.insert(med, qn)
else
unvoc = unvoc + 1
end
t = t + 0.001
cnt = cnt + 1
end
if #med > 2 and (#med / cnt) > 0.5 then -- more than 50% voiced length
table.sort(med)
med = med[math.floor(#med / 2) + 1]
return med + 69
end
end
--------- project
local function getProjectPathName()
local projectFileName = SV:getProject():getFileName()
if not projectFileName then return end
local projectName, projectDir
projectFileName = projectFileName:gsub("\\", "/")
projectDir, projectName = projectFileName:match("^(.*/)([^/]+)%.svp$")
if not projectDir or not projectName then error(T("project dir or name not found")) end
return projectName, projectDir
end
---------- main
function process()
-- pitch file in project folder
local projectName, projectDir = getProjectPathName()
local fileName = projectDir..projectName.."_pitch.txt"
local fi = io.open(fileName)
if not fi then
SV:showMessageBox(SV:T("Error"), SV:T("Cannot open pitch file").." '"..fileName.."'")
return
else
fi:close()
end
local pitch = praatPitch:loadPitch(fileName) -- pitch instance
if not pitch then
SV:showMessageBox(SV:T("Error"), SV:T("wrong file format"))
return
end
local timeAxis = SV:getProject():getTimeAxis()
local scope = SV:getMainEditor():getCurrentGroup()
local group = scope:getTarget()
local playback = SV:getPlayback()
local am = group:getParameter("pitchDelta") -- pitch automation
local ph = playback:getPlayhead() -- in secs
local phb = timeAxis:getBlickFromSeconds(ph)
-- find note index
local ni
for i = 1, group:getNumNotes() do
local note = group:getNote(i)
if phb >= note:getOnset() and phb < note:getEnd() then
ni = i
break
end
end
-- note not under playhead cursor
if not ni then return end
local noteL = group:getNote(ni)
local nLpitch = medianNotePitch(timeAxis:getSecondsFromBlick(noteL:getOnset()), ph, pitch)
local nRpitch = medianNotePitch(ph, timeAxis:getSecondsFromBlick(noteL:getEnd()), pitch)
local notes = {} -- notes indexes for pitch reload
local noteCnt = group:getNumNotes()
if nLpitch and not nRpitch then
noteL:setPitch(nLpitch)
noteL:setDuration(phb - noteL:getOnset())
local ifr, ito = ni - 1, ni + 1
if ifr < 1 then ifr = 1 end
if ito > noteCnt then ito = noteCnt end
for i = ifr, ito do
table.insert(notes, i)
end
return
elseif not nLpitch and nRpitch then
noteL:setPitch(nRpitch)
noteL:setTimeRange(phb, noteL:getEnd() - phb)
local ifr, ito = ni - 1, ni + 1
if ifr < 1 then ifr = 1 end
if ito > noteCnt then ito = noteCnt end
for i = ifr, ito do
table.insert(notes, i)
end
return
elseif nLpitch and nRpitch then
local noteR = SV:create("Note")
noteR:setTimeRange(phb, noteL:getEnd() - phb)
noteR:setPitch(nRpitch)
noteR:setLyrics("-")
group:addNote(noteR)
noteL:setPitch(nLpitch)
noteL:setDuration(phb - noteL:getOnset())
local ifr, ito = ni - 1, ni + 2
if ifr < 1 then ifr = 1 end
if ito > noteCnt then ito = noteCnt end
for i = ifr, ito do
table.insert(notes, i)
end
end
-- reload pitch
for _, i in ipairs(notes) do
local note = group:getNote(i)
local npitch = note:getPitch()
local ncents = 100 * (npitch - 69) -- A4
local blOnset, blEnd = note:getOnset(), note:getEnd()
am:remove(blOnset, blEnd)
local tons = timeAxis:getSecondsFromBlick(blOnset) -- start time
local tend = timeAxis:getSecondsFromBlick(blEnd) -- end time
local df, f0
local t = tons + 0.0005
while t < tend - 0.0001 do
f0 = pitch:getPitch(t)
if f0 > 50 then -- voiced
df = 1200 * math.log(f0/440)/math.log(2) - ncents -- delta f0 in cents
am:add(timeAxis:getBlickFromSeconds(t), df)
end
t = t + 0.001 -- time step
end
local tempo = timeAxis:getTempoMarkAt(blOnset)
local compensation = tempo.bpm * 6.3417442
if i > 1 then
local pnote = group:getNote(i - 1)
local pnpitch = pnote:getPitch()
local pncents = 100 * (pnpitch - 69) -- A4
local pblOnset, pblEnd = pnote:getOnset(), pnote:getEnd()
local ptons = timeAxis:getSecondsFromBlick(pblOnset) -- start time
local ptend = timeAxis:getSecondsFromBlick(pblEnd) -- end time
if pblEnd == blOnset then
local pts = am:getPoints(blOnset, timeAxis:getBlickFromSeconds(tons + 0.010))
local pdif = ncents - pncents
for _, pt in ipairs(pts) do
local b, v = pt[1], pt[2]
local t = timeAxis:getSecondsFromBlick(b) - tons
local cor = 1 - (1 / (1 + math.exp(-compensation * t)))
am:add(b, v + pdif * cor)
end
end
end
if i < noteCnt then
local pnote = group:getNote(i + 1)
local pnpitch = pnote:getPitch()
local pncents = 100 * (pnpitch - 69) -- A4
local pblOnset, pblEnd = pnote:getOnset(), pnote:getEnd()
local ptons = timeAxis:getSecondsFromBlick(pblOnset) -- start time
local ptend = timeAxis:getSecondsFromBlick(pblEnd) -- end time
if blEnd == pblOnset then
local pts = am:getPoints(timeAxis:getBlickFromSeconds(tend - 0.010), blEnd - 1)
local pdif = pncents - ncents
for _, pt in ipairs(pts) do
local b, v = pt[1], pt[2]
local t = timeAxis:getSecondsFromBlick(b) - tend
local cor = 1 / (1 + math.exp(-compensation * t))
am:add(b, v - pdif * cor)
end
end
end
am:simplify(blOnset, blEnd, 0.0001)
end
end
function main()
process()
SV:finish()
end