-
Notifications
You must be signed in to change notification settings - Fork 0
/
merging_module.py
64 lines (52 loc) · 1.97 KB
/
merging_module.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# text_merging_module.py
from thefuzz import fuzz
import re
def is_valid_text(text):
# 텍스트가 None이거나 빈 문자열인 경우
if not text or not text.strip():
return False
stripped_text = text.strip()
# 텍스트 길이 기준 (3자 미만인 경우 필터링)
if len(stripped_text) < 3:
return False
# 특수 문자 또는 숫자만 있는 경우
if re.fullmatch(r'[\d\s%:/.\-+,]+', text):
return False
# 반복되는 패턴 검사
if re.fullmatch(r'(.)\1{2,}', stripped_text):
return False
return True
def merge_ocr_texts(ocr_text_data, similarity_threshold=70):
ocr_progress_data = []
current_subtitle = None
none_subtitle_interval = 0 # 이전 자막 공백 카운트
for entry in ocr_text_data:
current_time = entry['time']
ocr_text = entry['text']
# 유효하지 않은 자막은 건너뜀
if not is_valid_text(ocr_text):
none_subtitle_interval += 1
continue
if current_subtitle is None:
current_subtitle = {
'start_time': current_time,
'end_time': current_time,
'text': ocr_text
}
else:
# 자막 유사성 및 자막 공백 카운트를 고려하여 자막 병합
similarity = fuzz.ratio(current_subtitle['text'], ocr_text)
if similarity > similarity_threshold and none_subtitle_interval < 8:
current_subtitle['end_time'] = current_time
current_subtitle['text'] = ocr_text
else:
ocr_progress_data.append(current_subtitle)
current_subtitle = {
'start_time': current_time,
'end_time': current_time,
'text': ocr_text
}
none_subtitle_interval = 0
if current_subtitle:
ocr_progress_data.append(current_subtitle)
return ocr_progress_data