作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前只是与 Praat 合作,我正在尝试编写一个脚本来使用 3 个声音(叙述)文件的集合来执行以下操作。我已经做到了 c),脚本部分相对容易。我没有得到的是如何将其写入具有这些列的文本文件。任何帮助都会很棒!
a) 创建一个程序,提取每个叙述 1-3 的音素层上的所有间隔,这些间隔代表标签为单个字母的元音,保持时间。我需要每个生成的声音都有一个适当的标签来标识相关的元音
b) 创建对应于这些间隔中的每一个的共振峰 (burg) 对象
c) 计算每个共振峰对象的中点
c) 在每个中点获取共振峰 1、2 和 3 的值
d) 写入具有以下标题的文本文件:
Narrative# 标签中点时间 F1 F2 F3
在此之下,每个元音的适当信息
最佳答案
简单的方法
最简单的方法是将输出写入 Table
对象,然后使用 Praat 的 Save to comma-separated file
命令将其保存到外部文件。下面的示例使用新的(稍微更合理的)新语法,因此请确保在尝试之前更新 Praat(或尝试此答案的编辑历史记录中的速记版本)。
这是一个例子:
# Create a Table with no rows
table = Create Table with column names:
..."table", 0, "Narrative Label Midpoint Time F1 F2 F3"
for i to number_of_intervals
# Assuming you have your Formant objects in an array named "burg"
selectObject(burg[i])
# Run your analysis here
# For this example, I'm assuming values for the columns are in
# variables called narrative$, label$, midpoint, time, f1, f2 and f3
selectObject(table)
Append row
current_row = Get number of rows
# Insert your values
Set string value: current_row, "Narrative", narrative$
Set string value: current_row, "Label", label$
Set numeric value: current_row, "Midpoint", midpoint
Set numeric value: current_row, "Time", time
Set numeric value: current_row, "F1", f1
Set numeric value: current_row, "F2", f2
Set numeric value: current_row, "F3", f3
endfor
# Save it!
# Remember to select it if the table is not the active selection at
# the end of the loop
Save to comma-separated file: /path/to/file
# And then you can get rid of it
removeObject(table)
Save to tab-separated file: /path/to/file
sep$ = ","
# sep$ = tab$
# Create / overwrite file and write header
writeFileLine: "/path/to/file",
..."Narrative#" + sep$ +
..."Label" + sep$ +
..."Midpoint" + sep$ +
..."Time" + sep$ +
..."F1" + sep$ +
..."F2" + sep$ +
..."F3"
for i to number_of_intervals
selectObject(burg[i])
# Run your analysis here
appendFileLine: "/path/to/file",
...narrative$ + sep$ +
...label$ + sep$ +
...string$(midpoint) + sep$ +
...string$(time) + sep$ +
...string$(f1) + sep$ +
...string$(f2) + sep$ +
...string$(f3)
endfor
关于scripting - Praat 脚本 : creating a text file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10975727/
我是一名优秀的程序员,十分优秀!