A demo project of the file_processing_tools library: https://github.com/hc-sc-ocdo-bdpd/file-processing-tools
To begin installation, clone this repository and then follow one of the below options.
Pre-requisite(s):
Python (v3),ffmpeg,Tesseract. See here for installation. These are not hard requirements; they are used for transcription (audio-to-text) and OCR (image-to-text)
Create the virtual environment in VSCode: View (top left of the screen) > Command Palette > Python: Create Environment > Venv > your-python-version > requirements.txt
Pre-requisite(s): Docker
- Install the VSCode extension:
Remote Development(by Microsoft) - In the top navigation menu:
View>Command Palette>Dev Containers: Rebuild and Reopen in Container
If step 2 does not work, then try after replacing the code in .devcontainer/devcontainer.json with the following:
{
"name": "Your Dev Container",
"image": "docker.io/benjaminluohc/file_processing_tools:latest"
}