Skip to content

Commit

Permalink
Tesseract engine use default setting (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tentacule committed Dec 13, 2021
1 parent 71e4d9d commit b9a4013
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PgsToSrt/PgsOcr.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private bool DoOcr()
return false;
}

using (var engine = new TesseractEngine(TesseractDataPath, TesseractLanguage, EngineMode.TesseractOnly))
using (var engine = new TesseractEngine(TesseractDataPath, TesseractLanguage))
{
for (var i = 0; i < _bluraySubtitles.Count; i++)
{
Expand Down

0 comments on commit b9a4013

Please sign in to comment.