Your Name 4 년 전
부모
커밋
23b51ddb11
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      apis/proc_video.py

+ 2 - 1
apis/proc_video.py

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