Skip to content

Commit 8fe2314

Browse files
authored
Update README.md
1 parent bf6d336 commit 8fe2314

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
Scripts for processing audio and images
33

44
#### [dhashImageComparison.py](dhashImageComparison.py)
5-
Based on user input, this script creates dhashes for all of the image files in the specified directory and then compares them using a BK-tree and creates a CSV file of all dhashes matches that are below the specified threshold (e.g. '40' means the dhashes are 40% different and 60% similar).
5+
Based on user input, creates dhashes for all of the image files in the specified directory and then compares them using a BK-tree and creates a CSV file of all dhashes matches that are below the specified threshold (e.g. '40' means the dhashes are 40% different and 60% similar).
66

77
#### [ocrDirectoryOfImages.py](ocrDirectoryOfImages.py)
8-
Based on user input, this script generates an optical character recognition text file for all of the jpgs in a specified directory.
8+
Based on user input, generates an optical character recognition text file for all of the jpgs in a specified directory.
99

1010
#### [stringComparisonFromCSV.py](stringComparisonFromCSV.py)
11-
Based on a specified file and a specified threshold (e.g. '90' means the strings are 90% similar and 10% different), the script compares each string against every other string in the file, identifies all strings with a similarity above the specified threshold, and prints it to a new CSV file.
11+
Based on a specified file and a specified threshold (e.g. '90' means the strings are 90% similar and 10% different), compares each string against every other string in the file, identifies all strings with a similarity above the specified threshold, and prints it to a new CSV file.
1212

1313
#### [stringComparisonFromCSVOldAndNew.py](stringComparisonFromCSVOldAndNew.py)
14-
Based on a specified files of new and old strings and a specified threshold (e.g. '90' means the strings are 90% similar and 10% different), the script compares each string against every other string in the new strings file, identifies all strings with a similarity above the specified threshold, and prints it to a new CSV file. It also compares each string to a CSV file of old strings that have previously received an authorized form (e.g. adding new name headings to an existing authority file)
14+
Based on a specified files of new and old strings and a specified threshold (e.g. '90' means the strings are 90% similar and 10% different), compares each string against every other string in the new strings file, identifies all strings with a similarity above the specified threshold, and prints it to a new CSV file. It also compares each string to a CSV file of old strings that have previously received an authorized form (e.g. adding new name headings to an existing authority file)
1515

1616
#### [transcribeAudioFile.py](transcribeAudioFile.py)
17-
This script generates a rough, unformatted transcript of a specified MP3 using the free Wit ([https://wit.ai/](https://wit.ai/)) speech-to-text API. The script requires a secrets.py file in the same directory that must contain the following text:
17+
Generates a rough, unformatted transcript of a specified MP3 using the free Wit ([https://wit.ai/](https://wit.ai/)) speech-to-text API. The script requires a secrets.py file in the same directory that must contain the following text:
1818
```
1919
filePath ='[The file path where the source MP3]'
2020
witKey ='[The 'Server Access Token' on the 'Settings' page from your Wit.ai account]'

0 commit comments

Comments
 (0)