Does anybody know which language or technology was used to develop the Spotify desktop application? It's stable, good-looking and lightweight.

link|improve this question
feedback

8 Answers

Here's the list of third-party components they use (on top of C++ of course):

  • Boost
  • Expat
  • FastDelegate
  • giflib
  • libjpeg
  • libogg
  • libvorbis
  • Mersenne Twister
  • zlib
  • NSIS (Windows only)
  • Windows Template Library (Windows only)
  • Growl (Max OS X only)
  • MATrackingArea (Mac OS X only)
link|improve this answer
Is any of this a GUI library? – Jonas Jul 6 '10 at 8:29
Nope, it looks like they use their own GUI elements based on native ones on Windows and Mac separately. – Rafael Jul 10 '10 at 14:45
any samples source code about it ? – Kiquenet Jan 13 '11 at 15:35
How did you determine this list? Do you have the inside scoop, or can you deduce this from the binary? – Drew Noakes Feb 20 '11 at 13:12
Open Spotify and go to Help > Show Licenses – Rafael Mar 12 '11 at 17:19
show 1 more comment
feedback

It's a plain Windows executable, with only two obvious dependencies (according to Dependency Walker): kernel32.dll and ntdll.dll.

So it probably loads any other dependencies dynamically. My guess would be that it's simply written in straight C++ by people who know what they're doing.

link|improve this answer
feedback

According to a Spotify designer:

http://twitter.com/#!/tobiasahlin/status/96483609799692288

"Some of it is in C++, and some of it is in a HTML-ish markup language called Spider" "It's built solely to be used within Spotify"

link|improve this answer
feedback

Given it's running on windows, clearly not .NET (Process explorer is telling me that), didn't follow a AIR install process, I'd say C++ using cross platform libraries.

Everything is compiled down into one executable, which indicates they had access to the source of all dependencies.

W.r.t to Techno...i think they used Hardhouse Electronica

link|improve this answer
feedback

compiling down to one exe doesn't mean you've got access to the source of everything your libraries can be pre compiled.

"My guess would be that it's simply written in straight C++ by people who know what they're doing."

I don't think the author of this comment has written a line of c++ in their life! 1) c++ is far from simple 2) straight C++ - which revision of the standard would we be talking about here??

link|improve this answer
C++ is not a simple language, but it is cross-platform, has lightweight runtime, great performance, and allows to do tricky stuff that are sometimes needed. So it may still be the most convenient language for solving hard problems. – kotlinski Jul 23 '11 at 14:19
feedback

I don't think it is FLEX, as suggested previously. FLEX's font rendering is the worst.

Ex: http://appsheriff.com/wp-content/uploads/2009/10/restfulx.png

Unless he was talking about a different FLEX.

link|improve this answer
feedback

from their website-

"Spotify is built mostly in Python and C++"

link|improve this answer
The desktop application doesn't use Python. It is C++. Python is used on the server side. – Moraru Lilian Mar 12 at 10:52
feedback

The frontend is written in FLEX, checkout the sources on your mac or windows machine. You will see a lot of xml file which are in the flex file format.

Off course the connection to the server and platform integration is probably written natively in c++. But the UI part is just FLEX...

link|improve this answer
I dont know who voted this down but it is true. – TjerkW Jan 29 '11 at 18:27
feedback

Your Answer

 
or
required, but never shown