ORAVYS - Voice deepfake detection SDK. Analyze any audio in 5 lines of Python. Thousands of forensic engines. ORAVYS is a trademark of Oravys Inc.
Project description
ORAVYS™ - Voice Deepfake Detection SDK
Detect synthetic and cloned voices in 5 lines of Python. Thousands of forensic engines.
ORAVYS™ is a trademark of Oravys Inc. (Delaware, USA). All rights reserved. INPI 25 5212037.
Install
pip install oravys
For local analysis with advanced DSP:
pip install oravys[local]
Quick Start
API Mode (thousands of engines)
from oravys import Detector
det = Detector(api_key="sk-oravys-...")
result = det.analyze("call_recording.wav")
print(result.verdict) # "SYNTHETIC" or "AUTHENTIC"
print(result.confidence) # 0.97
print(result.engines_fired) # 847
Local Mode (offline, ~11 DSP engines)
from oravys import Detector
det = Detector(mode="local")
result = det.analyze("voice.wav")
print(result.is_synthetic) # True/False
print(result.confidence_pct) # "72.7%"
CLI
# Local analysis
oravys detect voice.wav --verbose
# API analysis
oravys detect voice.wav --api-key sk-oravys-... --json
# Version
oravys version
Local Engines
The local mode runs these lightweight DSP engines (CPU-only, no GPU needed):
| Engine | Domain | What it detects |
|---|---|---|
| silence_ratio | temporal | Unnatural silence patterns |
| zero_crossing_rate | temporal | Synthetic signal characteristics |
| spectral_flatness | spectral | Noise-like spectrum (codec artifacts) |
| pitch_stability | prosodic | Unnaturally stable pitch (TTS signature) |
| harmonic_noise_ratio | spectral | Overly clean harmonics |
| spectral_bandwidth | spectral | Bandwidth consistency anomalies |
| energy_contour | temporal | Robotic energy patterns |
| formant_transition | articulatory | Missing natural articulation |
| micro_pause | prosodic | Absence of natural hesitations |
| breathiness | phonatory | Missing breath variation |
| tremor | neuromotor | Missing natural vocal tremor |
The full API mode runs thousands of engines across 16 forensic domains.
Get an API Key
Sign up at app.oravys.com to get your API key.
License
Proprietary. Copyright (c) 2026 Oravys Inc. All rights reserved.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file oravys-0.1.1.tar.gz.
File metadata
- Download URL: oravys-0.1.1.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6debfa62d50d6703955f414e40a476c7c49228537dd1be76c0f5a50c34fc1440
|
|
| MD5 |
d5cea3a9be67c7b6a2e9a7a3d1e78083
|
|
| BLAKE2b-256 |
310e326a6cd07b491562ab3a4b6f0069566f04b5c9cb39b3e972957463329477
|
File details
Details for the file oravys-0.1.1-py3-none-any.whl.
File metadata
- Download URL: oravys-0.1.1-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d703c9d0ee9a75e0308a60384ab0061941e361dc652109cad6320ba9608e4e7
|
|
| MD5 |
bc7a24764cedc62f487a3e14f2dddbae
|
|
| BLAKE2b-256 |
9a824a7d54c9309f3f9be9091bb671bc4c2ddcfe41571f695825fb5725f75aca
|