<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace Site Server v5.11.81 (http://www.squarespace.com/) on Sun, 27 May 2012 23:39:48 GMT--><feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"><title>cutDek Productions</title><subtitle>Blog</subtitle><id>http://www.cutdek.com/blog/</id><link rel="alternate" type="application/xhtml+xml" href="http://www.cutdek.com/blog/"/><link rel="self" type="application/atom+xml" href="http://www.cutdek.com/blog/atom.xml"/><updated>2012-02-18T18:46:35Z</updated><generator uri="http://www.squarespace.com/" version="Squarespace Site Server v5.11.81 (http://www.squarespace.com/)">Squarespace</generator><entry><title>SoundExchange reporting problems</title><category term="Business"/><category term="Music"/><id>http://www.cutdek.com/blog/2012/1/20/soundexchange-reporting-problems.html</id><link rel="alternate" type="text/html" href="http://www.cutdek.com/blog/2012/1/20/soundexchange-reporting-problems.html"/><author><name>cutDek</name></author><published>2012-01-20T10:00:00Z</published><updated>2012-01-20T10:00:00Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I mistakenly received a check from <a href="http://www.soundexchange.com/">SoundExchange</a> for royalties from 2009. Lots of errors (over 70) in the report due to grouping many of movie soundtracks under the same artist name. Notice how all of the artist names are given as MT while the track names are "XMSDTK-NP-MTS (MOVIE TITLE)". The dollar amounts vary greatly with the most going to the <a href="http://www.amazon.com/gp/product/B00471JSRE/ref=as_li_ss_tl?ie=UTF8&amp;tag=cutdek-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00471JSRE">Star Trek</a> soundtrack. Just a couple of typos can cause massive delays in payments. If I never had signed up for SoundExchange, I'm not sure any of these errors would have been discovered. And that leads to the question, why don't more places require/support <a href="http://en.wikipedia.org/wiki/International_Standard_Recording_Code">ISRC</a>'s.</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.cutdek.com/storage/SoundExchangeXmBad.png?__SQUARESPACE_CACHEVERSION=1326578864596" alt="" /></span></span></p>]]></content></entry><entry><title>Exporting your Rhapsody library to CSV</title><category term="Music"/><category term="Tech"/><id>http://www.cutdek.com/blog/2011/6/23/exporting-your-rhapsody-library-to-csv.html</id><link rel="alternate" type="text/html" href="http://www.cutdek.com/blog/2011/6/23/exporting-your-rhapsody-library-to-csv.html"/><author><name>cutDek</name></author><published>2011-06-23T04:12:00Z</published><updated>2011-06-23T04:12:00Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>This is a tutorial on how to export the songs in your <a href="http://www.rhapsody.com/">Rhapsody</a> library to a <a href="http://en.wikipedia.org/wiki/Comma-separated_values">CSV</a> format for backup purposes or to possibly import to another music service.&nbsp; This article assumes you are using the PC-based version of Rhapsody and not the web-based version.&nbsp; You also need <a href="http://www.mozilla.com/">Firefox</a> installed.</p>
<ol>
<li>Rhapsody uses a <a href="http://www.sqlite.org/">SQLite</a> file to store the library info. Now it is time to look for a file called local3.seb. On Windows XP, it goes under the <strong>C:\Documents and Settings\USERNAME\Application Data\Real\rhapsody\1.sqlite</strong> folder. Of course, replace USERNAME with your Windows logon username.<span class="full-image-block ssNonEditable"><span><img src="http://www.cutdek.com/storage/rhapsodySqlitePath.png?__SQUARESPACE_CACHEVERSION=1307842830266" alt="" /></span></span></li>
<li>Copy this file to the desktop and rename it local3.sqlite</li>
<li>To export the Rhapsody library, install the <a href="https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/">SQLite Manager</a> add-on for Firefox.</li>
<li>After Firefox restarts, go to the Tools menu -&gt; SQLite Manager.<br /><span class="full-image-block ssNonEditable"><span><img src="http://www.cutdek.com/storage/firefoxSqliteManager.png?__SQUARESPACE_CACHEVERSION=1307841867661" alt="" /></span></span></li>
<li>From the menu choose Database -&gt; Connect Database and choose the local3.sqlite file that was copied to you desktop.<br /><span class="full-image-block ssNonEditable"><span><img src="http://www.cutdek.com/storage/sqliteManagerConnectDb.png?__SQUARESPACE_CACHEVERSION=1308053745085" alt="" /></span></span></li>
<li>Click on the "Execute SQL" tab on the right side of the screen. Type in the text "SELECT ARTIST_NAME, ALBUM_NAME, TRACK_NAME FROM TRACK ORDER BY ARTIST_NAME, ALBUM_NAME, TRACK_NAME" and select "Run SQL"<span class="full-image-block ssNonEditable"><span><img src="http://www.cutdek.com/storage/sqliteManagerExecuteSql.png?__SQUARESPACE_CACHEVERSION=1308888001454" alt="" /></span></span></li>
<li>To export this data as a <span>CSV</span> file, click on Actions -&gt; Save Result (CSV) to File. The file will be called output.csv by default.<br /><span class="full-image-block ssNonEditable"><span><img src="http://www.cutdek.com/storage/sqliteManagerSaveResult.png?__SQUARESPACE_CACHEVERSION=1308054320884" alt="" /></span></span></li>
<li>This csv file can be opened in Excel to add/remove new songs.&nbsp; There can be problems exporting songs with characters not in the English alphabet.&nbsp; These have to be fixed manually.</li>
<li>There are some sites that can take this file (or a slightly modified version) to create playlists on other music services like <a href="http://www.spotify.com/int/about/spotify-on-the-web/playlist-converters/">Spotify</a>. </li>
<li>UPDATE 8/15/2011 - You can export your playlists by using the sql "SELECT PLAYLIST.PLAYLIST_NAME, TRACK.ARTIST_NAME, TRACK.ALBUM_NAME, TRACK.TRACK_NAME FROM TRACK, PLAYLIST, PLAYLIST_TRACK WHERE (PLAYLIST.PLAYLIST_ID = PLAYLIST_TRACK.PLAYLIST_ID AND PLAYLIST_TRACK.TRACK_ID = TRACK.TRACK_ID) ORDER BY PLAYLIST.PLAYLIST_NAME, PLAYLIST_TRACK.SEQUENCE"</li>
</ol>
<p>&nbsp;</p>]]></content></entry><entry><title>Review of Spotify</title><category term="Music"/><id>http://www.cutdek.com/blog/2011/3/14/review-of-spotify.html</id><link rel="alternate" type="text/html" href="http://www.cutdek.com/blog/2011/3/14/review-of-spotify.html"/><author><name>cutDek</name></author><published>2011-03-15T03:43:27Z</published><updated>2011-03-15T03:43:27Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I've been fortunate enough to get a preview of <a href="http://www.spotify.com">Spotify</a>. Here's a review while comparing it to Rhapsody and Last.fm.&nbsp; I'm mostly a Rhapsody user having rated over 5000 tracks.&nbsp; Last.fm has just seen a few months of use from me.</p>
<p><strong>Search</strong></p>
<ul>
<li>The search is blazing fast.&nbsp; Much faster than Rhapsody and slightly better than Last.fm.&nbsp; One annoying thing I've noticed is that certain artists with odd spellings. <a href="http://open.spotify.com/artist/1mmehjf7eHA10uHMisZGJg">!!!</a>, <a href="http://open.spotify.com/artist/6ShtlvyrPTWA37zB5k01Nj">M/A/R/R/S</a>, and <a href="http://open.spotify.com/artist/6LqNN22kT3074XbTVUrhzX">Ke$ha</a> are impossible to find if you don't remember to type in the symbols.&nbsp; This is also a problem on Rhapsody but Last.fm seems to get it right most of the time.</li>
<li>While the search is fast, an autocomplete feature would be greatly appreciated to help with typos. Rhapsody and Last.fm have it.</li>
<li>An annoying issue that seems to pop up on all music searches is the lack of an artist ID. This causes confusion when you see a new album by an artist only to see that it's from another group with the same name. Spotify isn't immune to this problem and related problems (<a href="http://open.spotify.com/artist/74oJ4qxwOZvX6oSsu1DGnw" target="_blank">Cream</a>, <a href="http://open.spotify.com/artist/3QzObGaPEBRA5cBWi0Xo5P">MT</a>, <a href="http://open.spotify.com/artist/5vRObFGFczPeUiPR2uUyqR" target="_blank">Beethoven</a> or <a href="http://open.spotify.com/artist/2wOqMjp9TyABvtHdOSOTUS" target="_blank">Ludwig van Beethoven</a>) but they do a good job (<a href="http://open.spotify.com/artist/7dIxU1XgxBIa3KJAWzaFAC" target="_blank">Nirvana</a> vs <a href="http://open.spotify.com/artist/6olE6TJLqED3rqDCT0FyPh" target="_blank">Nirvana</a>) of fixing it when it happens.</li>
</ul>
<p><strong>Listings</strong></p>
<ul>
<li>For each artist, all of the albums and tracks are listed on one enormous page which isn't a problem for more recent artists... but when you start playing artists from before 1970 it can become a pain to keep scrolling through giant lists of compilation albums (<a href="http://open.spotify.com/artist/1eYhYunlNJlDoQhtYBvPsi" target="_blank">Ray Charles</a>, <a href="http://open.spotify.com/artist/43ZHCT0cAZBISjO8DG9PnE" target="_blank">Elvis</a>, <a href="http://open.spotify.com/artist/5jLiA5oiYai4xDSqJPMdhU" target="_blank">Mozart</a>). Shortcuts/filters are going to be needed here to go through so much data.</li>
</ul>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.cutdek.com/storage/spotifyListings.png?__SQUARESPACE_CACHEVERSION=1300159222333" alt="" /></span></span></p>
<p><strong>On Demand</strong></p>
<ul>
<li>The ability to play any song on demand is how I use Rhapsody the majority of the time.&nbsp; Spotify kind of allows this but has no instant queue meaning if I just want to listen to three songs, I have to create a playlist first (not convenient). I say kind of because there is a "Play queue" that you can drag songs into but if you start playing an album directly, then all of the songs in the album get added to the queue.&nbsp; It feels like it tries to figure out your queue based on context but if you can't clear the queue and it ends up being rather awkward.</li>
</ul>
<p><strong>Rating System</strong></p>
<ul>
<li>Ratings are kept simple, similar to Last.fm. You give stars to songs that you like. There is no banning tracks like Last.fm allows for in the radio station. There isn't the overly complex rating system of Rhapsody. The KISS principle rules here and for much of the UI.</li>
</ul>
<p><strong>Radio Station</strong></p>
<ul>
<li>&nbsp;The UI for the customizing the radio is one of the nicest around. You can choose the artist radio which plays music similar to that artist or you can choose a custom radio based on any combination of genre/time period (e.g. Funk/Techno/1990's or Heavy Metal/Hip-Hop/1970's/1980's).&nbsp; The only missing hole here is deeper level genres and allowing users to save radio presets so as to not manually re-enter different radio station settings.</li>
</ul>
<p><span class="full-image-block ssNonEditable"><span><img src="http://www.cutdek.com/storage/spotifyRadio.png?__SQUARESPACE_CACHEVERSION=1300158938267" alt="" /></span></span></p>
<p>- MT</p>]]></content></entry><entry><title>Music Watch 11/8/10</title><category term="Music"/><category term="Video"/><id>http://www.cutdek.com/blog/2010/11/8/music-watch-11810.html</id><link rel="alternate" type="text/html" href="http://www.cutdek.com/blog/2010/11/8/music-watch-11810.html"/><author><name>cutDek</name></author><published>2010-11-08T17:01:41Z</published><updated>2010-11-08T17:01:41Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>The Juliets - The Juliets</p>
<p><a href="http://www.amazon.com/gp/product/B0044F9IQO?ie=UTF8&amp;tag=cutdek-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0044F9IQO"><img src="http://ecx.images-amazon.com/images/I/413v6pxmYOL._SL160_.jpg" border="0" alt="" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=cutdek-20&amp;l=as2&amp;o=1&amp;a=B0044F9IQO" border="0" alt="" width="1" height="1" /></p>
<ul>
<li>Sweetheart</li>
<li>The Letter</li>
</ul>
<p><iframe src="http://player.vimeo.com/video/10195708" width="400" height="225" frameborder="0"></iframe></p>]]></content></entry><entry><title>Music Watch 10/31/10</title><category term="Music"/><category term="Video"/><id>http://www.cutdek.com/blog/2010/10/31/music-watch-103110.html</id><link rel="alternate" type="text/html" href="http://www.cutdek.com/blog/2010/10/31/music-watch-103110.html"/><author><name>cutDek</name></author><published>2010-10-31T15:49:42Z</published><updated>2010-10-31T15:49:42Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>The Fool - Warpaint</p>
<p><a href="http://www.amazon.com/gp/product/B0045AGUSW?ie=UTF8&amp;tag=cutdek-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0045AGUSW"><img src="http://ecx.images-amazon.com/images/I/61lnvekZJ0L._SL160_.jpg" border="0" alt="" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=cutdek-20&amp;l=as2&amp;o=1&amp;a=B0045AGUSW" border="0" alt="" width="1" height="1" /></p>
<ul>
<li>Undertow</li>
<li>Set Your Arms Down</li>
</ul>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/BMkqbY0oGKQ?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/BMkqbY0oGKQ?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>]]></content></entry></feed>
