Upgraded to 6.1.14 version still doesn't work
Successfully installed edge-tts-6.1.14
C:\Users\Administrator\Documents\GitHub\edge-tts-master>pip show edge-tts Name: edge-tts Version: 6.1.14 Summary: Microsoft Edge's TTS Home-page: https://github.com/rany2/edge-tts Author: rany Author-email: [email protected] License: Location: C:\Users\Administrator\miniconda3\Lib\site-packages Requires: aiohttp, certifi Required-by:
C:\Users\Administrator\Documents\GitHub\edge-tts-master>cd C:\Users\Administrator\Documents\GitHub\edge-tts-master\examples
C:\Users\Administrator\Documents\GitHub\edge-tts-master\examples>python test06.py
Traceback (most recent call last):
File "C:\Users\Administrator\Documents\GitHub\edge-tts-master\examples\test06.py", line 17, in
And here is the test code: ort asyncio
import edge_tts
TEXT = "Hello World!" VOICE = "en-GB-SoniaNeural" OUTPUT_FILE = "test.mp3"
async def amain() -> None: """Main function""" communicate = edge_tts.Communicate(TEXT, VOICE) await communicate.save(OUTPUT_FILE)
if name == "main": asyncio.run(amain())
Could someone from mainland China also confirm this and help debug?
me too
Could someone from mainland China also confirm this and help debug?
I had the same problem in version 6.1.12, but when I upgraded to version 6.1.14 everything worked fine. What has been updated in this version to resolve this <WSServerHandshakeError: 403, message='Invalid response status' > issue?
I noticed this point: Location: C:\Users\Administrator\miniconda3\Lib\site-packages, which is something I installed several days ago. So when I upgraded to the lasted version, it was installed under this folder. I removed miniiconda and reinstalled the package, the problem is solved. Thanks!
yes me too