TextGrid
标签不能直接转换为Strings
对象,因为与 a 不同TextGrid
,Strings
对象没有层。因此,您可以编写将 a 中特定层的所有标签的代码,TextGrid
并将它们推送到一个Strings
对象中。
0.创建一个空Strings
这里的问题是 Praat 不希望你Strings
自己填充对象,所以没有Create empty Strings...
. 但是,您可以颠覆现有命令之一来执行此操作:
Create Strings as tokens: ""
1. 将标签推送到Strings
对象
现在我们有一个空Strings
要填充,我们可以开始工作了:
procedure labelsToStrings: .tier
.textgrid = selected("TextGrid")
# Make sure this works with interval and point tiers
.item$ = if do("Is interval tier...", .tier) then
... "interval" else "point" fi
# Make the empty Strings
.strings = Create Strings as tokens: ""
Rename: selected$("TextGrid")
# Fetch each label, and insert it to the Strings object
selectObject: .textgrid
.n = do("Get number of " + .item$ + "s...", .tier)
for .i to .n
selectObject: .textgrid
.label$ = do$("Get label of " + .item$ + "...", .tier, .i)
# I assume you don't care about empty labels?
if .label$ != ""
selectObject: .strings
Insert string: 0, .label$
endif
endfor
# Make sure the new object is selected
selectObject: .strings
endproc
2.利润!
你可以试试:
synth = Create SpeechSynthesizer: "English", "default"
To Sound: "This is some text.", "yes"
sound = selected("Sound")
textgrid = selected("TextGrid")
selectObject: textgrid
@labelsToStrings: 4
removeObject: sound, synth
View & Edit
3.奖金
如果您有兴趣在一个更易于管理的包中获取所有标签,您可能还对插件Index specified labels...
中的命令感兴趣,我也写了该命令。(我知道:我很擅长命名)。tgutils
那个做与此类似的事情,但不是使用Strings
对象,而是将所有标签转储到 a Table
,以及点的时间戳,或间隔的开始和结束。您还可以指定要考虑使用文字匹配或正则表达式的标签子集。
有了它,你可以重新写成@labelsToStrings
这样:
procedure labelsToStrings: .tier
.name$ = selected$("TextGrid")
runScript: preferencesDirectory$ + "/plugin_tgutils/scripts/" +
... "index_specified_labels.praat", .tier, ".+", "yes"
.table = selected("Table")
Create Strings as tokens: ""
Rename: .name$
for .i to Object_'.table'.nrow
.label$ = Object_'.table'$[.i, "label"]
Insert string: 0, .label$
endfor
removeObject: .table
endproc