0

我正在开发一个 ASP.net Web 应用程序,我希望它与 Praat 脚本配合使用。例如,我在 Web 应用程序中有 2 个参数(字符串文本,字符串文件名),我想将这两个参数提供给脚本,它只是将“文本”的内容写入名为“文件名”的文件中。我怎么能管理这个?

4

1 回答 1

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 执行的,可能是这样的?)作为

praat script.praat "some other string with spaces" new_filename.txt
于 2013-02-28T15:01:10.390 回答