I want to convert spx file to WAV file use speexdec command in MAC terminal. find OtherResources -name "*.spx" -execdir sh -c 'spx={};speexdec $spx ${spx%.*}.wav' \
and got sh: speexdec: command not found
I used Macports to install speex sudo port install speex
. I am searching for a long time on net. But no use. Please help or try to give some ideas how to achieve this.
Asked
Active
Viewed 212 times
0
1 Answers
0
It seems that both homebrew and Macports install speex doesn't solove this problem on Mac. You should build speex from source code .
Follow these steps :
- Download source code from here
- Open terminal in source code folder
- ./configure
- make
- sudo make install
- Then run your convert command.
PS: You can find this problem in pyglossary issue

ORZ2333
- 1
- 1