|
Hi Anselm - glad to hear from you.
You can get analysis for tracks without uploading them via the song/search song/profile APIs. Use song/search
http://beta.developer.echonest.com/song.html#search
to find the song that you want. Request the audio_summary bucket to get info for the track including a URL for the detailed analysis. For example, the query:
http://beta.developer.echonest.com/api/v4/song/search?api_key=8TPE3VC60ODJTNTFE&format=json&results=1&artist=lady+gaga&title=bad+romance&bucket=audio_summary
will return info about Lady Gaga's Bad Romance like so:
{"response": {"status": {"version": "4.1", "code": 0, "message": "Success"}, "songs": [{"id": "SOBACJG127D9789748", "title": "Bad Romance", "artist_id": "ARX6TAQ11C8A415850", "artist_name": "Lady Gaga", "audio_summary": {"key": 9, "analysis_url": "https://echonest-analysis.s3.amazonaws.com:443/TR/TRUVMND1264E51CB5B/3/full.json?Signature=SvtoAnSn2JcQnQoc17Zyu4Xkzgc%3D&Expires=1277462520&AWSAccessKeyId=AKIAJTEJGOTDLQY2E77A", "tempo": 127.961, "mode": 0, "time_signature": 4, "duration": 434.10239999999999, "loudness": -6.4969999999999999}}]}}
which incudes an analysis_url to the detailed analysis for the song.
As for your legal question, I'm not an lawyer, so I can't offer any legal advice. Sorry.
Let me know when your app is available so we can add it to our showcase.
Paul
|