This commit is contained in:
JMARyA 2024-02-23 04:22:49 +01:00
parent fa3a6340cc
commit 7ee19657e5
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -0,0 +1,58 @@
{
"custom_adapters": [
{
"name": "tesseract",
"version": 1,
"description": "Uses Tesseract OCR to recognize text in image files",
"extensions": [
"jpg",
"jpeg",
"jpe",
"png",
"webp",
"gif",
"tif",
"tiff",
"jp2",
"j2k",
"jpf",
"jpm",
"jpg2",
"jpg2000",
"jpeg2000",
"j2c",
"jpc",
"jpx",
"bmp",
"pnm"
],
"mimetypes": [
"image/jpeg",
"image/png",
"image/webp",
"image/gif",
"image/tiff",
"image/jp2",
"image/jpx",
"image/jpm",
"image/bmp",
"image/x-portable-anymap"
],
"binary": "tesseract",
"args": ["--psm", "1", "-", "-"],
"disabled_by_default": false,
"match_only_by_mime": false
},
{
"args": [],
"binary": "gron",
"description": "Transform JSON into discrete JS assignments",
"disabled_by_default": false,
"extensions": ["json", "jsonc"],
"match_only_by_mime": false,
"mimetypes": ["application/json"],
"name": "gron",
"version": 1
}
]
}