我想允許praatscript打開praat對象行。這將允許我打開praat,然後自動允許腳本將對象加載到對象窗口中。如何從praatscript打開praat
例如腳本
run_something.praat 1.wav 1.TextGrid 0.1 0.2
可以打開普瑞特然後打開音頻文件「1.wav」 <編輯器0.1和0.2,這是容易的,我做
我只是不能事先打開插入我需要的東西。
現在我的腳本是這樣的:
form Info
text Sound
text Textgrid
real Start
real End
endform
if sound$ != "" and textgrid$ != ""
Read from file: sound$
Read Strings from raw text file: textgrid$
@read_lab()
selectObject: 1, 3
View & Edit
editor = 3
editor: editor
Select: start , end
Zoom to selection
endeditor
endif
當然它會告訴我,查看和編輯不起作用,因爲GUI不開。我不能使用環境,因爲它必須在Windows和Linux上工作
我不認爲你可以在腳本中打開Praat,但是可以在運行腳本之前從終端打開它。 – Stefano
它仍然給我同樣的錯誤,如果我打開praat在一個終端,並在另一個腳本runt腳本 – badner
錯誤:命令「查看和編輯」不適用於當前選擇。 腳本行245沒有執行或完成: «查看並編輯» – badner