我正在尝试获取一些我在网上找到的代码,以使用 README.md 文件中给出的用法示例。这些工具的目的是从单独的事件中合成一个音频场景。我不知道如何运行给出的使用示例,它们是:
* ./simscene.py -h
Displays command line syntax and option descriptions.
* ./simscene.py example/sound/ output/ 10 -e example/forest_events.xls -b example/forest_backgrounds.xls -N 10 -v
Creates wavefiles and plots of 10 instances of scenes for which events are described in example/forest_events.xls and
background sounds in example/forest_backgrounds.xls
我试过在终端上运行这些行(我使用的是 PyCharm),但错误是“simscene.py 未被识别为内部或外部命令、可运行程序或批处理文件”,即使我尝试运行“simscene” .py" 单独没有输入。
我已经能够通过导入功能 simscene 从另一个脚本运行它,但随后遇到错误。看起来文件 simscene.py 使用行argparse来提示用户,但我似乎无法激活这些提示以开始运行。
使用示例如何将指定的输入传递给函数,我如何才能运行使用示例?
整个项目的链接在这里: https://bitbucket.org/mlagrange/simscene/src/master/python/
一只萌萌小番薯
相关分类