Questions tagged [acrcloud]

Technical questions about ACRCloud, a comprehensive automatic content recognition platform with audio fingerprinting technology.

ACRCloud is a comprehensive automatic content recognition platform with audio fingerprinting technology.

Docs: https://www.acrcloud.com/docs
Support: support@acrcloud.com

22 questions
0
votes
2 answers

ACR cloud return recent results

I'm using broadcast monitoring to return the current playing song for a radio station website by using the live result and calling with echo $song[0]['metadata']['music'][0]['artists'][0]['name'] . ' - '; echo"
Martyn G
  • 1
  • 2
0
votes
1 answer

Multiple results when identifying

When IDing the song "Love Invaders - Fatima Yamah" I get the below results: python test.py ~/MusicID/File5.mp3 https://pastebin.com/YAdAru7A None of which are actually correct, although some of the scores report 100. How can one song report back so…
Joe
  • 69
  • 6
0
votes
1 answer

ACRCloud Unity SDK Offline Recognition

I've downloaded the Unity3D ACRCloud SDK from github and works very good, now I'm trying to make it work the offline recognition, I've followed the documentation and created an offline DB, added to the assets but looks like I can't configure neither…
cauto
  • 1
0
votes
1 answer

ACRCloud external meta data and IDs not returning

When making valid requests to http://ap-southeast-1.api.acrcloud.com/v1/identify I get successful responses, however both external_ids and external_metadata always come back as empty objects. Example response: { "external_ids": {}, …
0
votes
1 answer

AcrCloud Not able to upload audio file

Getting below error even we are passing title in request body { "name": "Unprocessable entity", "message": "Lack field:title", "code": 0, "status": 422 } Any Help will be appreciable.
Sunny Garg
  • 1,073
  • 1
  • 6
  • 13
0
votes
1 answer

ACRCloud song Recognize

Hey all I have the following code from the ACRCloud c# demo: static void Main(string[] args) { var config = new Dictionary(); config.Add("host", "us-west-2.api.acrcloud.com"); config.Add("access_key", "key here...."); …
StealthRT
  • 10,108
  • 40
  • 183
  • 342
-1
votes
1 answer

Save audio record in files with ACRCloud

I have a problem with a Android app that call ACRCloud. For the work that I need to do, I want to save the recording in a MP3 file but I don't know why it doesn't work. That's my code : File f = null; try { f = createAudioFile(); …
1
2