Parcourir la source

fix eng problem

ming il y a 3 ans
Parent
commit
f25b63f12f
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      OpenshotService/openshot_video_generator.py

+ 3 - 3
OpenshotService/openshot_video_generator.py

@@ -137,7 +137,7 @@ def file_prepare(name, name_hash,text_content,image_urls,lang='zh'):
     language = 'zh-tw'
     txt_idx = 0
     for txt in text_content:
-        if lang==1:
+        if lang=='eng':
             tts = gTTS(txt)
             tts.save(dir_sound+name_hash+"/"+str(txt_idx)+".mp3")
         else:
@@ -154,7 +154,7 @@ def txt2image(content, save_target,lang='zh'):
     if lang=='zh':
         font = ImageFont.truetype(font="font/DFT_B7.ttc", size=38)
     else :
-        font = ImageFont.truetype(font="font/arial.ttf", size=38)
+        font = ImageFont.truetype(font="font/arial.ttf")
     text_width, text_height = font.getsize(unicode_text)
     canvas = Image.new('RGBA', (700, 500), (255, 0, 0, 0) )
     draw = ImageDraw.Draw(canvas)
@@ -168,7 +168,7 @@ def txt2image_title(content, save_target, lang='zh'):
     if lang=='zh':
         font = ImageFont.truetype(font="font/DFT_B7.ttc", size=38)
     else :
-        font = ImageFont.truetype(font="font/arial.ttf", size=38)
+        font = ImageFont.truetype(font="font/arial.ttf")
     text_width, text_height = font.getsize(unicode_text)
     canvas = Image.new('RGBA', (510, 500), (255, 0, 0, 0) )
     draw = ImageDraw.Draw(canvas)