Voice Gender Recognition

फ्रीमियम
द्वारा PresentID | अपडेट किया गया 14 giorni fa | Artificial Intelligence/Machine Learning
लोकप्रियता

8.9 / 10

लेटेंसी

497ms

सेवा का स्तर

100%

Health Check

N/A

सभी ट्यूटोरियल पर वापस जाएं (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)