ming 3 년 전
부모
커밋
a194954acb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      OpenshotService/openshot_video_generator.py

+ 1 - 1
OpenshotService/openshot_video_generator.py

@@ -476,7 +476,7 @@ def adjustSub_by_text_similarity(gts_in,gens_raw):
     alls_tag = gts_in + combine2_tag + combine3_tag
     for idx in range(len(adjusted)):
         match_text = difflib.get_close_matches(adjusted[idx], alls_tag, cutoff=0.1)
-        adjusted[idx] = match_text
+        adjusted[idx] = match_text[0]
     return adjusted
 
 def trim_punctuation(s):