Your Name 3 년 전
부모
커밋
9ab1bf5a47
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      apis/proc_video.py

+ 5 - 1
apis/proc_video.py

@@ -12,7 +12,11 @@ txt=lines[0].strip()
 
 engine = pyttsx3.init()
 voices = engine.getProperty('voices')
-print(voices)
+for v in voices:
+    print(v.gender)
+    print(v.name)
+    print(v.age)
+    print(v.languages)
 sys.exit()
 engine.setProperty('voice', voices[1].id)