我正在开发一个ASP.net Web应用程序,我希望它能够与Praat脚本合作。 例如,我在Web应用程序中有2个参数(字符串文本,字符串文件名),我想将这两个参数提供给脚本,它只是将“文本”的内容写入名为“文件名”的文件中。 我怎么能管理这个?
答案 0 :(得分:0)
我不确定我是否完全理解这个问题,但是如果你问如何运行一个praat
脚本,它将一个字符串从一个命令行写入一个文件(我猜这可能已经足够了) ),有这样的脚本
# Contents of script.praat
form Output to file...
sentence String Your awesome string with spaces
word Filename /path/to/file
endform
# These are the same variable names as in the form
# but with a lowercase initial
string$ > 'filename$'
应该这样做。然后,您可以从命令行运行此命令(如果您从asp.net执行此操作可能类似于this?)
praat script.praat "some other string with spaces" new_filename.txt