gracenote

Gracenote Entourage Crashing

喜欢而已 提交于 2020-01-16 13:20:12
问题 I have downloaded the demo app from the Gracenote Developer website but its crashing for me and gives Exe_Bad_access on below line in ViewDidLoad method of GNViewController.m. self.sdkManager = [[GnSdkManager alloc] initWithLicense:LICENSE_INFO error:nil]; What's going wrong? This is the demo applicaiton I am referring to. I am using xcode 5 and testing in iPhone 4S with iOS 7.0.3. 来源: https://stackoverflow.com/questions/20149973/gracenote-entourage-crashing

Gracenote API - No track link data

我的梦境 提交于 2020-01-07 04:38:16
问题 Currently, in my AppDelegate, I have an instance variable declared for GNConfig that is set up with all properties I would like to receive. This instance of GNconfig is used by any class that makes a gracenote request. The requests I am using are recognition from an audio stream, recognition by local file and a text search which populates an array. The array is then used for track lookups by id for the corresponding array item. I am able to get all the content I need, except for track and

Gracenote GNSDK is not retrieving genre on Android

こ雲淡風輕ζ 提交于 2020-01-06 14:01:12
问题 I'm studiyng gracenote gnsdk in an android application. With the developer key I have, I can retrieve basic information about the music, but I can't retrieve info such as mood and genre. Does anyone knows a way to get this information? I'm following the example, like this: String genre = gnAlbum.trackMatched().genre(GnDataLevel.kDataLevel_1); if(genre == null || genre.isEmpty()){ genre = gnAlbum.genre(GnDataLevel.kDataLevel_1); } Thanks in advance! 回答1: according to the docs you have to load

Gracenote Entourage Error 130/74

天涯浪子 提交于 2020-01-04 09:05:12
问题 I first created my Gracenote developer account last night, and without issue, was able to match TV shows using the sample applications. However today, I'm receiving the following error continuously: ERROR GCSP: Hello error: [130] Please contact Gracenote ODP 06176 [Name: Mark Pringle] [App: Echos Imterface] support. [Gracenote Error 130/74] (0x90160165) Any help would be much appreciated! 回答1: The GNSDK error code is the last 4 digits of the hex number at the end. If you check out the gnsdk

Configuration property to specify after how many milliseconds the “recognizeMIDFileFromFile” should start fingerprinting

吃可爱长大的小学妹 提交于 2019-12-25 06:55:56
问题 as the title says , I think it will be nice if there was config property that we can set in order to specify after how many milliseconds(or seconds ) the fingerprinting should be done on the file. According to the documentation, it is done at the start of the song but after playing for a while with the " GNOperations.recognizeMIDFileFromFile" method, I did realized that some songs that couldn't be identified where strangely identifiable by " GNOperations.recognizeMIDStreamFromMic" method. I

Gracenote Error: Invalid User

送分小仙女□ 提交于 2019-12-24 21:07:23
问题 Problem to implement Gracenote api in iOS provide invalid User & manager not initialised . GN_Entourage_Demo[24927:70b] getUserACR: ERROR: Manager not initialized 2014-03-10 19:05:20.509 GN_Entourage_Demo[24927:70b] Error: Invalid User (lldb) following problem when i am implement // Initialize the Entourage SDK self.sdkManager = [[GnSdkManager alloc] initWithLicense:LICENSE_INFO error:nil]; self.acrUser = [self getUserACR]; if (!self.acrUser) { NSLog(@"Error: Invalid User"); } // Create a

Using Gracenote SDK (GNSDK) to read a file and perform a fingerprint recognition

∥☆過路亽.° 提交于 2019-12-12 02:49:13
问题 I'm trying to read a 16bit 16KHz wav (20 seconds long) from on iOS and perform a fingerprint identification. I tried following the guide "GNSDK-for-Mobile-iOS-Developers-Guide" but it doesn't have an objective-c example on page 53 (only C#). My code reads in the whole file and then writes 2K blocks to the function fingerprintWrite (I've also tried passing a pointer to the whole file). The variable "result' is never set to 1 - indicating insufficient data has been passed - but 20 seconds

Gracenote (GNSDK) on Android Wear

别等时光非礼了梦想. 提交于 2019-12-11 19:27:15
问题 I'm trying to develop an Android Wear app that can identify songs with Gracenote's GNSDK. I'm building upon their sample app. I'm having trouble with the Wifi on the wearable device. The sample app is working in terms of a song identification attempt but misses an internet connection. (Although other apps work perfectly.) So what happens: When the watch is in Wifi and not connected to the phone via bluetooth but solely via Wifi it works. Now connecting the phone to the watch via bluetooth the

Gracenote SDK giving error: User not registered for online use

自闭症网瘾萝莉.ら 提交于 2019-12-11 13:54:44
问题 I am currently trying to get the sample application working from the GNSDK called "musicid_file_trackid" but it is not working and constantly giving the error "User not registered for online use"... I am using the C# Wrapper coming with the SDK. I have registered my application on the Gracenote website and filled in the correct clientId and clientIdTag. I can use the Gracenote Web API without problems using these client details but when I use the GNSDK it gives that user not registered error.

How to recognize a music sample using Python and Gracenote?

二次信任 提交于 2019-12-04 12:24:49
问题 I recently discovered the GNSDK (Gracenote SDK) that seems to provide examples in several programming languages to recognize music samples by fingerprinting them, and then to request their audio database to get the corresponding artist and song title. But the documentation is horrible. How can I, using Python and the GNSDK, perform a recognition of an audio sample file? There isn't any examples or tutorials in the provided docs. Edit: I really want to use the GNSDK with Python. Don't post