The software is tested in Windows OS. The steps to build the project in Windows are explained below.
Open Command prompt and Clone Repository :
git clone <repository_url>
Navigate to Project Directory :
cd <project_directory>
Create and Activate Virtual Environment:
python -m venv <venv_name>
Install Dependencies:
pip install -r requirements.txt
Run the Application with the required CLI option and corresponding values:
Sample command line:
python main.py --maxEncTime 100 --maxDecTime 200 --codec vvenc --resultCsv output.csv --rmax 1080 --maxQuality 90 --jnd 5
Deactivate Virtual Environment:
deactivate
Make sure to replace <repository_url>
, <project_directory>
, and <venv_name>
with the appropriate values for the project. Step 1 and Step 4 have to be done only the first time.