diff --git a/iped-app/pom.xml b/iped-app/pom.xml index 07d95c32e9..d9eeb19c3e 100644 --- a/iped-app/pom.xml +++ b/iped-app/pom.xml @@ -315,7 +315,7 @@ tesseract tesseract-zip - 5.3.2-24-g3922 + 5.3.2-24-g3922_1 zip false ${tools.dir} diff --git a/iped-app/resources/config/conf/OCRConfig.txt b/iped-app/resources/config/conf/OCRConfig.txt index 690c8d640b..6f4a714ca6 100644 --- a/iped-app/resources/config/conf/OCRConfig.txt +++ b/iped-app/resources/config/conf/OCRConfig.txt @@ -5,7 +5,7 @@ # You can use the parameter -ocr "bookmark_name" to restrict the OCR to a specific bookmark (just works when creating reports from cmd line). # Dictionary language to be used for OCR. You can specify multiple languages e.g. por+eng but you will pay an important processing cost. -# Languages supported: eng, por, ita, deu, spa +# Languages supported: eng, por, ita, deu, spa, fra OCRLanguage = por # Skip known files found in the hash lookup database. diff --git a/iped-parsers/iped-parsers-impl/src/test/java/iped/parsers/ocr/OCRParserTest.java b/iped-parsers/iped-parsers-impl/src/test/java/iped/parsers/ocr/OCRParserTest.java index efdb621c59..4e1a417629 100644 --- a/iped-parsers/iped-parsers-impl/src/test/java/iped/parsers/ocr/OCRParserTest.java +++ b/iped-parsers/iped-parsers-impl/src/test/java/iped/parsers/ocr/OCRParserTest.java @@ -43,7 +43,7 @@ public class OCRParserTest { @BeforeClass public static void setUpTool() throws IOException { if (osName.startsWith("windows")) { - String repoPath = "tesseract/tesseract-zip/5.3.2-24-g3922/tesseract-zip-5.3.2-24-g3922.zip"; + String repoPath = "tesseract/tesseract-zip/5.3.2-24-g3922_1/tesseract-zip-5.3.2-24-g3922_1.zip"; RepoToolDownloader.unzipFromUrl(repoPath, testRoot + "/tmp_tools/"); System.setProperty(OCRParser.TOOL_PATH_PROP, testRoot + "/tmp_tools/tesseract/"); }