Last active
January 9, 2025 00:56
-
Star
(251)
You must be signed in to star a gist -
Fork
(20)
You must be signed in to fork a gist
-
-
Save pnc/b7fb38d70f157cd40595d9e52bebc055 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
CONTENTS=$(tesseract -c language_model_penalty_non_dict_word=0.8 --tessdata-dir /usr/local/share/tessdata/ "$1" stdout -l eng | xml esc) | |
hex=$((cat <<EOF | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<string>$CONTENTS</string> | |
</plist> | |
EOF | |
) | plutil -convert binary1 - -o - | xxd -p | tr -d '\n') | |
xattr -w -x com.apple.metadata:kMDItemFinderComment "$hex" "$1" | |
mdimport "$1" |
why cannot Automator run the workflow, asserting "line 4 tesseract command not found"?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This script is very helpful - thank you for sharing it.
I'm running macos 10.13.6 and needed to modify ocr-shot.sh to specify
--tessdata-dir /usr/local/share/tessdata/
vs
--tessdata-dir /usr/local/share/
ocr-shot.sh is now working as designed.
two notes:
macos-native and Firefox screenshots are 72 dpi. I'll look into where I can set that explicitly.