Pārlūkot izejas kodu

更新 'OpenshotService/openshot_video_generator.py'

oak 2 gadi atpakaļ
vecāks
revīzija
5b62b5b021
1 mainītis faili ar 41 papildinājumiem un 7 dzēšanām
  1. 41 7
      OpenshotService/openshot_video_generator.py

+ 41 - 7
OpenshotService/openshot_video_generator.py

@@ -1078,13 +1078,47 @@ def anchor_video_eng(name_hash,name,text_content, image_urls,sub_titles,avatar,f
     #line notifs
 
 import pyttsx3
-def make_speech(text):
-    engine = pyttsx3.init()
-    #voices = engine.getProperty('voices')
-    engine.setProperty('voice', 'Mandarin')
-    engine.save_to_file(text, '/app/speech.mp3')
-    engine.runAndWait()
-
+#def make_speech(text):
+    #engine = pyttsx3.init()
+    ##voices = engine.getProperty('voices')
+    #engine.setProperty('voice', 'Mandarin')
+    #engine.save_to_file(text, '/app/speech.mp3')
+    #engine.runAndWait()
+    
+import json
+def make_speech(text,output="/app/speech.mp3",voice="zh-CN-XiaoyouNeural"):
+    my_data = {
+    "voice": voice,
+    "content": [str(text)]  #["你好,很高興認識你","喜歡","討厭"]
+      # "ssml": string[]
+      #  "title": string,          // Optional
+      # "narrationStyle": string, // Optional         
+      # "globalSpeed": string,    // Optional      
+      # "pronunciations": { key: string, value: string }[], // Optional
+      # "trimSilence": boolean,   // Optional
+
+      }
+    headers =  {
+    # 'User-Agent':'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.62 Safari/537.36',
+    "Authorization":"84e1df1b61114e75b134b5ec496b8922",
+    "X-User-ID":'HEQLQR1WgpYtN0SEyKoWBsLiZXX2',
+    "Content-Type": "application/json"
+    }
+    # 將資料加入 POST 請求中
+    r = requests.post('https://play.ht/api/v1/convert',headers=headers,data=json.dumps(my_data))
+    c1 = r.json()['transcriptionId']
+    # print(c1)
+
+    time.sleep(len(text))
+    r = requests.get('https://play.ht/api/v1/articleStatus?transcriptionId=%s'%c1, headers=headers)
+
+    # print(r.status_code)
+
+    file = requests.get(r.json()['audioUrl'])
+    with open(output,"wb") as f:
+        for chunk in file.iter_content(chunk_size=1024):
+            if chunk:
+                f.write(chunk)
     
 class video_service(rpyc.Service):
     def exposed_call_video(self,name_hash,name,text_content, image_urls,multiLang,avatar,freeTrial):