0

I have done a simple tutorial to identify a raw song, it detects the song through gracenote GNSDK and returns the GDO,

But I want to play(i.e. stream) that detected song through the gnsdk, IS IT POSSIBLE???

Nadeem Iqbal
  • 2,357
  • 1
  • 28
  • 43
  • Sorry, I know this isn't the right place to ask, but what tutorial did you use? I'm curious to follow it as well. Thanks. – jamesmstone May 07 '16 at 06:18
  • @jamesmstone follow these links for guidance https://github.com/richadams/java-gracenote https://developer.gracenote.com/web-api – Nadeem Iqbal May 10 '16 at 04:41

1 Answers1

1

Gracenote does not provide audio streams, just metadata and recommendations. You need to use APIs from streaming music services like Deezer, Spotify, Rdio, and others to play the actual songs. If you configure GNSDK to return XID's with the GDO, you can get Deezer ID's that link directly to the Deezer API.

cweichen
  • 493
  • 3
  • 5
  • I am not getting the XIDs, but I can get the XID's with the GDO, but how to use it with as you say DEEZER api? – Nadeem Iqbal Aug 20 '14 at 09:00
  • Thanks for the answer, I am thinking to stream the detected song with the SoundCloud api, can Gracenote returns XID for SoundCloud? – Nadeem Iqbal Aug 20 '14 at 09:00
  • 1
    We do not return XIDs for SoundCloud. But you can use the artist and track title returned from Gracenote to do a text search with the SoundCloud API , as documented at https://developers.soundcloud.com/docs/api/guide#search – cweichen Aug 21 '14 at 18:29