ACRCloud
Visit WebsiteConsole
  • Introduction
  • Get Started
  • Console Tutorials
    • Recognize Music
    • Recognize Custom Content
    • Broadcast Monitoring for Music
    • Broadcast Monitoring for Custom Content
    • Detect Live & Timeshift TV Channels
    • Recognize Custom Content Offline
    • Recognize Live Channels and Custom Content
    • Find Potential Detections in Unknown Content Filter
  • SDK REFERENCE
    • Mobile SDK
      • iOS
      • Android
      • Unity
    • Backend SDK
      • Python
      • PHP
      • Go
      • Java
      • C/C++
      • C#
    • Error Codes
  • API Reference
    • Identification API
    • Console API
      • Access Token
      • Buckets
        • Audio Files
        • Live Channels
        • Dedup Files
      • Base Projects
      • OfflineDBs
      • BM Projects
        • Custom Streams Projects
          • Streams
          • Streams Results
          • Streams State
          • Recordings
          • Analytics
          • User Reports
        • Broadcast Database Projects
          • Channels
          • Channels Results
          • Channels State
          • Recordings
          • Analytics
          • User Reports
      • File Scanning
        • FsFiles
      • UCF Projects
        • BM Streams
        • UCF Results
    • Metadata API
  • Tools
    • Audio File Fingerprinting Tool
    • Local Monitoring Tool
    • Live Channel Fingerprinting Tool
    • File Scan Tool
  • Metadata
    • Music
    • Music (Broadcast Monitoring with Broadcast Database)
    • Custom Files
    • Live Channels
    • Humming
  • FAQ
    • Definition of Terms
  • Service Usage
Powered by GitBook
On this page
  • JSON structure
  • Metadata fields
  1. Metadata

Humming

Example of JSON result: music with ACRCloud Music bucket with Audio & Video Recognition project.

JSON structure

{
    "status": {
        "msg": "Success",
        "code": 0,
        "version": "1.0"
    },
    "metadata": {
        "timestamp_utc": "2015-10-26 07:55:09",
        "humming": [
            {
                "external_ids": {},
                "title": "As Long As You Love Me",
                "artists": [
                    {
                        "name": "Backstreet Boys"
                    }
                ],
                "external_metadata": {},
                "acrid": "d4c6ff541580d20c7f35ef4a390eac41",
                "album": {
                    "name": ""
                },
                "score": "0.88"
            },
            {
                "external_ids": {},
                "external_metadata": {},
                "score": "0.87",
                "title": "As Long As You Love Me",
                "duration_ms": "213093",
                "genres": [
                    {
                        "name": "Pop"
                    }
                ],
                "acrid": "2167d4c8d51d2944881be2fc128372f6",
                "album": {
                    "name": "Beautiful"
                },
                "artists": [
                    {
                        "name": "Backstreet Boys"
                    }
                ]
            },
            {
                "external_ids": {},
                "title": "If You Love Me",
                "artists": [
                    {
                        "name": "Kys"
                    }
                ],
                "external_metadata": {},
                "acrid": "103fc2e9df3712151bb9601189fe3751",
                "album": {
                    "name": ""
                },
                "score": "0.67"
            },
            {
                "external_ids": {},
                "external_metadata": {},
                "score": "0.64",
                "title": "Hurt (Album Version)",
                "duration_ms": "243626",
                "genres": [
                    {
                        "name": "Pop"
                    }
                ],
                "acrid": "2c7939c273ac5b83922b0d7be45d0743",
                "album": {
                    "name": "Hurt"
                },
                "artists": [
                    {
                        "name": "Christina Aguilera"
                    }
                ]
            },
            {
                "external_ids": {},
                "title": "打开爱",
                "artists": [
                    {
                        "name": "Vee"
                    }
                ],
                "external_metadata": {},
                "acrid": "7c23c2f6b9d7c8eb5cc0b877e1782691",
                "album": {
                    "name": ""
                },
                "score": "0.62"
            },
            {
                   "external_ids": {
                       "isrc": "USSM10603618",
                       "upc": "888880170897"
                   },
                   "external_metadata": {
                       "spotify": {
                           "album": {
                               "id": "0JLv6iVbeiy4Dh2eIw6FKI"
                           },
                           "artists": [
                               {
                                   "id": "6vWDO969PvNqNYHIOW5v0m"
                               }
                           ],
                           "track": {
                               "id": "3qSMg1lhn4jDwWlI9xCVyK"
                           }
                       },
                       "itunes": {
                           "album": {
                               "id": 464320979
                           },
                           "artists": [
                               {
                                   "id": 1419227
                               }
                           ],
                           "track": {
                               "id": 464321089
                           }
                       },
                       "deezer": {
                           "album": {
                               "id": 72429
                           },
                           "artists": [
                               {
                                   "id": 145
                               }
                           ],
                           "genres": [
                               {
                                   "id": 132
                               }
                           ],
                           "track": {
                               "id": 551232
                           }
                       }
                   },
                   "title": "Listen (From the Motion Picture \"Dreamgirls\")",
                   "duration_ms": "217786",
                   "album": {
                       "name": "B'Day Deluxe Edition"
                   },
                   "acrid": "4660601066a3153acf15eabe2868572b",
                   "genres": [
                       {
                           "name": "Pop"
                       }
                   ],
                   "artists": [
                       {
                           "name": "Beyoncé"
                       }
                   ]
                   "score": "0.61"
               }
        ]
    }
}

Metadata fields

Name

Description

humming

Humming Recognition fields

acrid

ACRCloud unique identifier

timestamp_utc

Server time of sending results, UTC time zone

score

Humming score

title

Track title

album

Album fields

id

Identifier of the artists or album

name

Name of the artists or album

artists

Artists fields

duration_ms

Duration of the track in millisecond

play_offset_ms

Position of the recognition in millisecond

external_ids

External standard code

isrc

ISRC code

upc

UPC code

external_metadata

External 3rd party IDs and metadata

track

Track fields

genres

Genres fields

Only ACRID, Title, Artist and Score are required fields.

Last updated 9 months ago