huakunyang / SummerTTS

SummerTTS 是一个基于C++的独立编译的中文和英文语音合成项目,可以本地运行不需要网络,而且没有额外的依赖,一键编译完成即可用于中文和英文的语音合成。SummerTTS is a standalone Chinese and English speech synthesis(TTS) project that has almost no dependency and could be easily used for Chinese TTS with just one key build out
405 stars 71 forks source link

Successfully run on Windows #5

Open 943fansi opened 1 year ago

943fansi commented 1 year ago

The command is as follows:

  cmake -G "MinGW Makefiles" ..
  mingw32-make
  tts_test ../test.txt ../models/single_speaker_small.bin out.wav
huakunyang commented 1 year ago

The command is as follows:

  cmake -G "MinGW Makefiles" ..
  mingw32-make
  tts_test ../test.txt ../models/single_speaker_small.bin out.wav

Thanks a lot for your valuable testing with MinGW in windows for this project, i may put your above information in the next release for windows build information

futureflsl commented 1 year ago

The command is as follows:

  cmake -G "MinGW Makefiles" ..
  mingw32-make
  tts_test ../test.txt ../models/single_speaker_small.bin out.wav

I faild C:\Users\fut\Desktop\1\SummerTTS-main\src\tn\glog\src\utilities.h:80:11: fatal error: port.h: No such file or directory

include "port.h"

943fansi commented 1 year ago

@futureflsl You could try the previous version.

wzbcat commented 10 months ago

The command is as follows:

  cmake -G "MinGW Makefiles" ..
  mingw32-make
  tts_test ../test.txt ../models/single_speaker_small.bin out.wav

I faild C:\Users\fut\Desktop\1\SummerTTS-main\src\tn\glog\src\utilities.h:80:11: fatal error: port.h: No such file or directory

include "port.h"

add # include "windows/port.h"

aiaimimi0920 commented 10 months ago

@futureflsl @wzbcat @943fansi I think I have solved the issue of Windows compilation. You can try my method: https://github.com/huakunyang/SummerTTS/issues/35

Peichenxin commented 8 months ago

I failed,the second line ‘mingw32-make’ is wrong:mingw32-make:Makefile:Permission denied mingw32-make:***No targets.Stop. Why is this?