好吧,我在开始这个时遇到了麻烦。我正在尝试在 Octave 中使用soundsc 函数,但我不断收到此错误:
error: sound.m: No command line utility found for sound playing
我在网上搜索了一些,但找不到该怎么做。这是我在网上找到的包含错误的文件源代码的链接:http: //octave-audio.sourcearchive.com/documentation/1.1.3/sound_8m-source.html
我认为的错误来自这里:
## What do we use for playing?
global sound_play_utility;
if ~isempty(sound_play_utility),
## User specified command
elseif (file_in_path(EXEC_PATH, "ofsndplay"))
## Mac
sound_play_utility = "ofsndplay -"
elseif (file_in_path(EXEC_PATH, "play"))
## Linux (sox)
sound_play_utility = "play -t AU -";
else
error("sound.m: No command line utility found for sound playing");
endif
我只是碰巧使用的是Windows 7,所以我想我必须以某种方式指定路径吗?更改源代码?我不知道我该怎么做才能让它工作!谁能告诉我?