For the complete documentation index, see llms.txt. This page is also available as Markdown.

Accura Scan Voice Biometrics

Accura Scan Voice Biometrics solution matches the source voice .wav file with the target voice .wav file.

Steps to Install and Run the Voice Docker

Step 1:

Pull AccuraVoice Docker image using the command docker pull accurascan/voice:<latest tag>

Visit https://hub.docker.com/r/accurascan/voice to check the latest available version of AccuraVoice

Example:
docker pull accurascan/voice:1.0.0

Step 2:

Run the docker by using the command: sudo docker run -dp port-you-want-accuravoice-to-run-on:80 --restart=always accurascan/voice:<latest tag>

Example
sudo docker run -dp 8010:80 --restart=always accurascan/voice:1.0.0

Step 3:

To generate your Accura Scan license contact sales@accurascan.com

Upload your license accessing "https://<yourdomain:port>" using a browser, Example is shown in the image below.

Step 4:

Use “https://yourdomain:port/voice_liveness.php” (POST request) to access the API, an example post request is shown below.

POST https://yourdomain:port/voice_liveness.php

Request Body

Name
Type
Description

source*

file

Upload your .wav voice image file

target*

file

Upload your .wav voice image file

The Preferred Score describes the matching percentage between the source and target voice files.

Last updated