Speaker Verification

FREEMIUM
Durch PresentID | Aktualisiert 5 days ago | Artificial Intelligence/Machine Learning
Popularität

9 / 10

Latenz

3,392ms

Service Level

96%

Health Check

N/A

Zurück zu allen Tutorials (1)

Speaker Verification

Python Quick Start

import requests

 api_url = 'Speaker Verification URL'
 api_key = 'Your API Key'

sound1_path = 'Path to sound1 directory'
 sound1_name = 'Sound name1'
 sound2_path = 'Path to sound2 directory'
 sound2_name = 'Sound name2'

 files = {'sound1': (sound1_name, open(sound1_path + sound1_name, 'rb'), 'multipart/form-data'), 
          'sound2': (sound2_name, open(sound2_path + sound2_name, 'rb'), 'multipart/form-data')}
 header = {
     "x-rapidapi-host": "speaker-verification1.p.rapidapi.com",
     "x-rapidapi-key": api_key
 }
 response = requests.post(api_url, files=files, headers=header)