all repos — videocr @ fe68c35cc823b70f1f83c317c7b285e30d2568b6

Extract hardcoded subtitles from videos using machine learning

Fix parsing error
Marco Andronaco andronacomarco@gmail.com
Sun, 31 Jul 2022 19:46:15 +0200
commit

fe68c35cc823b70f1f83c317c7b285e30d2568b6

parent

d15676700bb14da69667c6d08958c8c2ca44c7b9

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M videocr/models.pyvideocr/models.py

@@ -29,7 +29,7 @@ if len(word_data) < 12:

# no word is predicted continue _, _, block_num, *_, conf, text = word_data - block_num, conf = int(block_num), int(conf) + block_num, conf = int(block_num), float(conf) # handle line breaks if block < block_num: