Paul

Unknown's avatar

I'm the Director of Developer Community at The Echo Nest, a research-focused music intelligence startup that provides music information services to developers and partners through a data mining and machine listening platform. I am especially interested in hybrid music recommenders and using visualizations to aid music discovery.

Boston Music Hack Day is in the can.

I’ve almost recovered from the Boston Music Hack Day.  Here’s a retrospective of posts, tweets video and images about the event.  First, lots of people have written about their experiences at the hack day. Here’s a sampling:

Some Videos:

Ian Hogarth from Songkick:

Bodega Girls at the Echo Nestival

Photos:

Click for slide show

Lots of friendly tweets too.

 

,

Leave a comment

The Spotified Billboard Charts – now with real playlists

Last month I Spotified the Billboard charts by using the Billboard and Spotify APIs.  However, I wasn’t actually able to create real Spotify playlists since the Spotify web API doesn’t allow creating or manipulating playlists.  But now I’m a premium Spotify user and as a premium user I can use the libspotify / despotify API to do just about anything that the official Spotify client can do.  With my new found Spotify superpower, I revamped my Billboard charts creator to create real Spotify playlists:

The Spotified Billboard Singles Charts

Instead of having to click on every song to listen to it, just click on the chart – this will open the Spotify playlist – hit play and you’ll be in Billboard chart heaven (or hell, depending on your music taste).

To interact with Spotify I used Jotify – a Java client library (based on despotify)  for Spotify.  Jotify is  well written, full featured library written by Felix Bruns (who has been extremely helpful in answering my questions).   I highly recommend Jotify.

, ,

1 Comment

A Singular Christmas

Oh lookie – Brian has re-posted his Singular Christmas

,

Leave a comment

Visualizing the Artist Space

Take a look at Kurt’s weekend hack to make a visualization of the Echo Nest artist similarity space.  Very nice.  Can’t wait for Kurt to make it interactive and show artist info. Neat!

, , ,

3 Comments

Hypeify – a music tech company name generator

BennetK‘s 30 minute hack from the Boston Music Hack Day is a music company name generator:

I want a company named CloudCore.

2 Comments

Things I learned about organizing a hack day

Boston Music Hack Day is in the can.  I learned a lot over the last few days about what happens when you have 200+ programmers gather for a weekend.  Here’s some of the things I want to remember for next time:

  • Plan for no-shows – when the event is free,  there will be some people who sign up, but then, for whatever reason will not show up.  We had lots of people on the waiting list that could have attended if we had anticipated the no-shows.

     

    No-shows should be sitting in these empty seats

  • Buy Less Food – When people are up all night coding, they tend to skip breakfast.  We had breakfast for 250 on Sunday, we probably only needed breakfast for 100.
  • Late-night hacking with beer and music can be quite productive

     

    Late-night hacking at the Hack Nest

  • Have dueling projectors – when you have 35 demos to show, plug in time can add a half hour to a 2 hour demo session.  (By the way, thanks to the good Samaritan ubergeek who volunteered to help the presenters get the video (someone tell me who it was)).
  • Work with awesome people – Working Jon and Dave was great,  but there was also an incredible behind-the-scenes team making the Hack Day possible.  We had an awesome set of volunteers who gave their weekend to making the hack day possible.  Here are some of them:

See the guy in the back with the cap? That’s Matthew Santiago – he was a non-stop hack day machine – from moving food for 300, organizing registration,  handling and chauffeuring  the Echo Nestival talent. He worked from 7AM Saturday morning to 7PM Sunday evening with about an hour of sleep.

The secret weapon of the hack day was Elissa – Director of Stuff at the Echo Nest- she managed so many details  from booking the Echo Nestival, renting vans, carting food, finding volunteers, photoshopping badges, getting tee-shirts made, dealing  with press, photographers,  CEOs, and Founders, ordering tables and chairs for the Hack nest,  wrangling sponsors, picking  menus, ordering food,   getting swag, making extra bathroom keys, hand delivering the excess food to the local homeless shelter and so much more.  Elissa quietly managed all of the big and little details that I never would have thought of.   If you attended the hack day, be sure to give her some twitter love.

I learned a lot over the weekend about events and organizing.  I hope I get to be involved in more hack days in the future so I can use my new knowledge.

Photos by Dave Haynes

,

4 Comments

Searching for beauty and surprise in popular music

During the Boston Music Hack Day, 30 or 40 music hacks were produced. One phenomenal hack was Rob Ochshorn’s  Outlier FM.   Rob’s  goal for the weekend was to utilize  technology to search for beauty and surprise in even the most overproduced popular music.   He approached this problem by searching  musical content for the audio that “exists outside of a song’s constructed and statistical conventions”.

With Outlier FM rob can deconstruct a song into musical atoms, filter away the most common elements, leaving behind the non-conformist bits of music. This yields strange, unpredictable minimal techno-sounding music.

So how does it work?  Well, first Outlier FM uses the Echo Nest analyzer to break a song down into the smallest segments.  You can then visualize these segments using numerous filters and layout schemes to give you an idea of what the unusual audio segments are:

Next, you can filter out clusters of self-similar segments, leaving just the outliers:

Finally you can order, visualize and render that segments to yield interesting music:

Here’s an example of Outlier FM applied to Here’ Comes the Sun:

Rob’s hack was an amazing weekend effort, he combined music analysis and visualization into a tool that can be used to make interesting sounds.   Outlier.fm was voted the best hack for the music hack day weekend.  Rob chose as his prize the Sun Ultra 24 workstation with flat panel display donated by Sun Microsystems Startup Essentials.  Here’s Rob receiving his prize from Sun.

Congrats to Rob for a well done hack!

, ,

Leave a comment

Paul’s Music Wreckommender

I just posted my music hack day hack.  It is called Paul’s Music Wreckommender.  Use this Wreckommender to find anti-recommendations.  Give the wreckommender an artist that you like and it will give you a playlist of tracks from artists that are very different from the seed artist.  Some obvious use cases:

  • Your 14 year old daughter’s slumber party is getting too loud. Send the girls home by putting on the Hannah Montana Wreckommender – which yields a playlist with tracks by Glenn Gould, Dream Theater and Al Hirt.
  • It’s time to break up with your girl friend.  Give her the ‘You are the wind beneath my wings‘ wrecklist and your intentions will be clear.
  • If you like ‘everything but country’ then Garth Williams will guide the way:  Garth Williams Wreckommendations

You can try it out at Wreckommender.com.

How it works:

This was a pretty easy hack.  I already had a playlister engine with some neat properties.  It maintains a complete artist graph using Echo Nest artist similarities, so I can make  make routes through the artist space for making smooth artist/song transitions. Adapting this playlister engine to create wreckommendations was really easy.  To create the recommendations,  I find the seed node in the graph and then from this node I find the set of artists that have the longest ‘shortest path’ to the seed artist.  These are the artists that are furthest away from the seed artists.  I then select songs from this set to make my ‘wrecklist’.   However, this list isn’t the best list.  There are a small set of artists that are far away from everything. These artists become frequent wrecommendations for many many artists, which is bad.  To avoid this problem I adapted the algorithm to find far away artist clusters and then draw artists from that cluster.  This gives yields a playlist with much more variety.

This hack is primarily for fun, but I think there’s something in the wreckommendations that is worth persuing.   When asked to describe their taste in music, many people will use a negative – such as “Anything but country and rap”.  If this is really the case, then using the wreckommender to literally find ‘anything but country and rap’ – whether it is J-Pop or crabcore might actually be useful.

Inspiration

A couple of sources of inspiration for this hack. First, the name. A word like ‘wreckommendation’ clearly deserves an application.  Second, a coffee pot conversation with Reid, and finally, the LibraryThing Unsuggester, which does a similar thing for books (but in a very different way).

I hope you like the wreckommender, let me know if you find any interesting wreckommendations.

, , , ,

2 Comments

My view from the Hack Nest

Music Hack Day hacking continues at the Hack Nest. Here’s my view in the Playdar room: Tobyp, RJ, jwheare and the fingers of jherskowitz

,

Leave a comment

Boston Music Hack Day

Boston at dawn -ready for the hack day

Breakfast at the music hack day

Hardware hacking at the Boston Music Hack Day

Hardcore hacking at the Boston Music Hack day

The two faces of music discovery

Turning an altoids can into a musical instrumentation

, , ,

Leave a comment