Voice Gender Recognition

FREEMIUM
Por PresentID | Atualizado hace 12 días | Artificial Intelligence/Machine Learning
Popularidade

8.8 / 10

Latência

493ms

Nível de serviço

100%

Health Check

N/A

Voltar para todos os tutoriais (1)

Voice Gender Detection

Python quick start

import requests

url = "https://voice-gender-recognition.p.rapidapi.com/api/gender"

payload = "-----011000010111000001101001\r
Content-Disposition: form-data; name=\"sound\"\r
\r
\r
-----011000010111000001101001--\r
\r
"
headers = {
    'content-type': "multipart/form-data; boundary=---011000010111000001101001",
    'x-rapidapi-key': "APIKEY",
    'x-rapidapi-host': "voice-gender-recognition.p.rapidapi.com"
    }

response = requests.request("POST", url, data=payload, headers=headers)

print(response.text)