Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1.21 KB

File metadata and controls

34 lines (21 loc) · 1.21 KB

file_processing_tools_template

A demo project of the file_processing_tools library: https://github.com/hc-sc-ocdo-bdpd/file-processing-tools


Installation

To begin installation, clone this repository and then follow one of the below options.


Option 1: venv

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


Option 2: Dockerfile

Pre-requisite(s): Docker

  1. Install the VSCode extension: Remote Development (by Microsoft)
  2. 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"
}