Quantcast
Channel: The Echo Nest Developer Forum
Viewing all 1582 articles
Browse latest View live

TasteProfile#Update difficulty

$
0
0

Thanks Paul - I swear I tried that too, but it seems to be working now! Thanks for the help.

I was working through the issue this morning, putting together a test case to show that this wasn't working for me, but since it is now working I suppose it can serve as a bit of reference for anyone else who runs in to the same sort of issues.

It's in Ruby with some external dependencies, but it's pretty easy to read and apply the concept to other languages.

Echonest Spotify Gist

Sam


TasteProfile#Update difficulty

$
0
0

Well, may have jumped the gun.

Now I'm getting Unknown Errors consistently on the taste profile update call.

Is this just a status / reliability thing? Or am I still doing something wrong?

song/identify vs. Movies & TV

$
0
0

I'm attempting to use codegen + song/identify to id music heard in TV shows and Movies in mp4/m4v format. I can get correct responses back from the original album recording mp3's all day but so far no luck when testing the same songs heard within TV shows and Movies.

For example: I'm hashing 20 seconds of audio starting at an offset in the TV show where I know the theme song is "Won't get fooled again." Codegen works perfectly but unfortunately I don't get a hit from song/identify. However if I do the same operation against the original mp3 from the Who album it works every time.

I'm fearing/assuming there are enough subtle differences between the original recording and the TV show version that would prevent song/identify from getting a hit.

Are there any suggestions for how I could make song/identify work against recorded shows?

Thanks. I really like this product and would love to see it work in this fashion.

song/identify vs. Movies & TV

$
0
0

Are you using echoprint or ENMFP?

song/identify vs. Movies & TV

$
0
0

I'm using ENMFP- mostly because I read it has the ability to id 30M songs vs 200K songs with echoprint. Do you recommend echoprint?

MaxMSP?

song/identify vs. Movies & TV

$
0
0

I would not expect ENMFP to work in that scenario. Try Echoprint.

song/identify vs. Movies & TV

$
0
0

Ok. I'll give it a whirl. More soon.


song/identify vs. Movies & TV

$
0
0

Ok I just built the echoprint-codegen binary and ran it against a few TV show recordings. It works as expected but I get no match against the song/identify API servers. The other album mp3 songs that came back correctly using ENMFP (codegen.Darwin) are no longer returning results either.

Originally I steered away from echoprint because I was under the impression that I would not be able to match against as many songs as ENMFP but now I see I'm using the same API end points in both scenarios, so is echoprint querying the same data as ENMFP?

TasteProfile#Update difficulty

$
0
0

sbauch - We just pushed a fix for the taste profile update errors.

-Eric

iOS Trouble Parsing ENAPIRequest Response

$
0
0

An ENAPIRequest returns a NSDictionary as the response (request.response), I'm having a lot of trouble trying to parse it, specifically if I get multiple results for track for songs (example response below), how can I get the values for a specific track since dictionaries are not indexable?

Doing something like [response valueForKeyPath@"response.songs.tracks.foreign_id"] gives me both foreign ids, how can I just get the first one?

{ response = { songs = ( { "artist_foreign_ids" = ( { catalog = spotify; "foreign_id" = "spotify:artist:6vWDO969PvNqNYHIOW5v0m"; } ); "artist_id" = AR65K7A1187FB4DAA4; "artist_name" = "BeyoncU00e9"; id = SOUTJIT142F256C3B5; title = "Partition (Explicit Version)"; tracks = ( { catalog = spotify; "foreign_id" = "spotify:track:2vPTtiR7x7T6Lr17CE2FAE"; //HOW CAN I JUST GET THIS ID? "foreign_release_id" = "spotify:album:1hq4Vrcbua3DDBLhuWFEVQ"; id = TRLHJRD1460052F846; }, { catalog = spotify; "foreign_id" = "spotify:track:6m4ZFQb3zPt3IdRDTN3tfb"; "foreign_release_id" = "spotify:album:5KPpho7rztJrZVA9yXjk8K"; id = TRYMBSK146005C3A46; } ); } ); status = { code = 0; message = Success; version = "4.2"; }; }; }

Also I apologize if the dictionary didn't maintain it's formatting

iOS Trouble Parsing ENAPIRequest Response

$
0
0

Here it is well-formatted:

{
    response =     {
        songs =         (
                        {
                "artist_foreign_ids" =                 (
                                        {
                        catalog = spotify;
                        "foreign_id" = "spotify:artist:6vWDO969PvNqNYHIOW5v0m";
                    }
                );
                "artist_id" = AR65K7A1187FB4DAA4;
                "artist_name" = "Beyonc\U00e9";
                id = SOUTJIT142F256C3B5;
                title = "Partition (Explicit Version)";
                tracks =                 (
                                        {
                        catalog = spotify;
                        "foreign_id" = "spotify:track:2vPTtiR7x7T6Lr17CE2FAE";
                        "foreign_release_id" = "spotify:album:1hq4Vrcbua3DDBLhuWFEVQ";
                        id = TRLHJRD1460052F846;
                    },
                                        {
                        catalog = spotify;
                        "foreign_id" = "spotify:track:6m4ZFQb3zPt3IdRDTN3tfb";
                        "foreign_release_id" = "spotify:album:5KPpho7rztJrZVA9yXjk8K";
                        id = TRYMBSK146005C3A46;
                    }
                );
            }
        );
        status =         {
            code = 0;
            message = Success;
            version = "4.2";
        };
    };
}

Song Data: Closest or Exact Match?

$
0
0

I'm a startup founder debating whether to use EchoNest or iTunes. To prompt a song preview in our app, will the EchoNest API return the closest match (as YouTube does) or only an exact match (as iTunes does) from our search query?

With complicated search queries that include remixes and different versions of songs in parentheses and/or brackets, iTunes often doesn't return the remixes, but does return the simplified, basic song. Is this also what EchoNest will do?

Thanks so much.

OTA android

$
0
0

Hi friends i m currently using the android demo to perform OTA recognition.

however the code i have generated from the recording does not give me the correct song when i query the echonest server.

if i hardcode the code by generating from the original song the query works fine and returns me with the correct data.

any suggestion to improve OTA success? or any special setting that i have to set during recording that i may have missed out? or is it still a work in development?

thanks for your help. cheers

song/identify vs. Movies & TV

$
0
0

First, the public Echoprint database has close to 2M songs in it, so coverage of popular songs should be better than in the past.

Second, while you use the same song/identify endpoint with Echoprint, you need to add the "&version=4.12" parameter to the request.

David


Is it possible to search for songs from a specific year?

$
0
0

Hi, I'm wondering if it is possible to search for songs from a specific year? For example, if I want to get a list of songs from 2010, is there anyway I can do that? Active artist year isn't specific enough, I'm looking for the song itself to be from the same year I'm searching for. Thanks!

Waveform API

Waveform API

$
0
0

roger - no current plans for this, sorry. -- P

Temporary outage

Bảo hiểm phi nhân thọ Bảo Minh

$
0
0

Công ty bảo hiểm Bảo Minh chuyên cung cấp các loại bảo hiểm lên đến hơn 100 loại khác nhau. Mọi đối tượng đều có thể sử dụng và đáp ứng đầy đủ mọi điều kiện của cá nhận và tổ chức. Chúc tôi chuyên phục vụ các loại bảo hiểm chính như: Bảo hiểm du lịch châu âu, bảo hiểm con người, bảo hiểm xe cơ giới, bảo hiểm ô tô, bảo hiểm du lịch quốc tế....

Viewing all 1582 articles
Browse latest View live