Incresing the number of line used for language detection in subtitles

pull/56/merge
morpheus65535 7 years ago
parent eb2dcbb283
commit 6134d88f7f

@ -36,7 +36,7 @@ def store_subtitles(file):
actual_subtitles.append([str(language), path_replace_reverse(os.path.join(os.path.dirname(file), subtitle))])
else:
with open(path_replace(os.path.join(os.path.dirname(file), subtitle)), 'r') as f:
text = list(islice(f, 20))
text = list(islice(f, 100))
text = ' '.join(text)
encoding = UnicodeDammit(text)
try:

Loading…
Cancel
Save