This tool facilitates editing transcripts that are generated by ASR (Auto Speech Recognition) model.
To build the tool you'll need a few things to get started
- Qt 5 installed on your system with base and multimedia packages.
- Codec support for media playback (different for different operating systems).
- A C++ compiler corresponding to the Qt toolchain that you installed.
- Cmake to build the project.
- Make sure cmake can find Qt5 multimedia package cmake lists file.
- Clone the repo or download as zip
- Qt creator can be used to skip steps below and build the tool
git clone https://github.com/R-ohit-B-isht/Transcriptor.git
cd asr-post-editor
# The '-j flag' will help building the tool faster
# by using more than one job to build but 'can be ignored'
# This number is usually set equal to the number of virtual
# cores your system contains
cmake . -B build -j <no of jobs>
cmake --build build