<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Classical Convert</title>
	
	<link>http://classicalconvert.com</link>
	<description>A beginners guide to classical music, by someone who switched at 23</description>
	<lastBuildDate>Fri, 20 Aug 2010 23:56:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/classicalconvert" /><feedburner:info uri="classicalconvert" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Symphony in C++</title>
		<link>http://feedproxy.google.com/~r/classicalconvert/~3/wvMVL93_CEM/</link>
		<comments>http://classicalconvert.com/2010/08/symphony-in-c/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 03:18:32 +0000</pubDate>
		<dc:creator>Me</dc:creator>
				<category><![CDATA[classical music]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[symphony in c++]]></category>

		<guid isPermaLink="false">http://classicalconvert.com/?p=1585</guid>
		<description><![CDATA[Every now and then I can&#8217;t keep my classical music and science nerd parts apart. Today was one of those days. I present: A Symphony in C++: key get_secondary_key&#40;key home_key&#41;&#123; if &#40;home_key.minor == TRUE&#41;&#123; secondary_key=relative_major&#40;home_key&#41;; &#125;else&#123; secondary_key=home_key+5; &#125; &#125; &#160; void sonata_form&#40;key home_key,tempo base_tempo&#41;&#123; //Calculate secondary key secondary_key=get_secondary_key&#40;home_key&#41;; &#160; //First get people in the mood [...]]]></description>
			<content:encoded><![CDATA[<p>Every <a href="http://www.getintoclassical.com/7-reasons-nerds-should-listen-to-classical-music/">now and then</a> I can&#8217;t keep my classical music and science nerd parts apart.</p>
<p>Today was one of those days.</p>
<p>I present: A Symphony in C++:</p>

<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;">key get_secondary_key<span style="color: #008000;">&#40;</span>key home_key<span style="color: #008000;">&#41;</span><span style="color: #008000;">&#123;</span>
    <span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span>home_key.<span style="color: #007788;">minor</span> <span style="color: #000080;">==</span> TRUE<span style="color: #008000;">&#41;</span><span style="color: #008000;">&#123;</span>
        secondary_key<span style="color: #000080;">=</span>relative_major<span style="color: #008000;">&#40;</span>home_key<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
    <span style="color: #008000;">&#125;</span><span style="color: #0000ff;">else</span><span style="color: #008000;">&#123;</span>
        secondary_key<span style="color: #000080;">=</span>home_key<span style="color: #000040;">+</span><span style="color: #0000dd;">5</span><span style="color: #008080;">;</span>
    <span style="color: #008000;">&#125;</span>
<span style="color: #008000;">&#125;</span>
&nbsp;
<span style="color: #0000ff;">void</span> sonata_form<span style="color: #008000;">&#40;</span>key home_key,tempo base_tempo<span style="color: #008000;">&#41;</span><span style="color: #008000;">&#123;</span>
    <span style="color: #666666;">//Calculate secondary key</span>
    secondary_key<span style="color: #000080;">=</span>get_secondary_key<span style="color: #008000;">&#40;</span>home_key<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
&nbsp;
    <span style="color: #666666;">//First get people in the mood</span>
    intro.<span style="color: #007788;">play</span><span style="color: #008000;">&#40;</span>home_key,base_tempo<span style="color: #000040;">--</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
&nbsp;
    <span style="color: #666666;">//start exposition, introduce the two main themes</span>
    theme_1.<span style="color: #007788;">play</span><span style="color: #008000;">&#40;</span>home_key<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
    transition.<span style="color: #007788;">play</span><span style="color: #008000;">&#40;</span>home_key,secondary_key<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
    theme_2.<span style="color: #007788;">play</span><span style="color: #008000;">&#40;</span>secondary_key<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
    codetta.<span style="color: #007788;">play</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
&nbsp;
    <span style="color: #666666;">//development, mix the themes up</span>
    <span style="color: #0000ff;">for</span><span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> i<span style="color: #000080;">=</span><span style="color: #0000dd;">0</span><span style="color: #008080;">;</span>i<span style="color: #000080;">&lt;</span>development_length<span style="color: #008080;">;</span>i<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#123;</span>
        combine_themes<span style="color: #008000;">&#40;</span>theme_1,theme_2,key<span style="color: #000080;">=</span><span style="color: #0000dd;">rand</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span>.<span style="color: #007788;">play</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span>
    <span style="color: #008000;">&#125;</span>
&nbsp;
    <span style="color: #666666;">//Recapitulation: repeat the themes but in the home key</span>
    theme_1.<span style="color: #007788;">play</span><span style="color: #008000;">&#40;</span>home_key<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
    transition.<span style="color: #007788;">play</span><span style="color: #008000;">&#40;</span>home_key,home_key<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
    theme_2.<span style="color: #007788;">play</span><span style="color: #008000;">&#40;</span>home_key<span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
&nbsp;
    <span style="color: #666666;">//Finish up</span>
    <span style="color: #0000ff;">if</span><span style="color: #008000;">&#40;</span>composer <span style="color: #000080;">==</span> <span style="color: #FF0000;">&quot;beethoven&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#123;</span>
        coda.<span style="color: #007788;">length_in_min</span><span style="color: #000080;">=</span><span style="color: #0000dd;">10</span>
    <span style="color: #008000;">&#125;</span><span style="color: #0000ff;">else</span><span style="color: #008000;">&#123;</span>
        coda.<span style="color: #007788;">length_in_min</span><span style="color: #000080;">=</span><span style="color: #0000dd;">1</span>
    <span style="color: #008000;">&#125;</span>
    coda.<span style="color: #007788;">play</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span></pre></div></div>

<p>Want to learn more about classical music but without the code? Go to <a href="http://www.getintoclassical.com/">getintoclassical.com</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/TUsiAqLW-rrNfZgYB8pkSmPOWQc/0/da"><img src="http://feedads.g.doubleclick.net/~a/TUsiAqLW-rrNfZgYB8pkSmPOWQc/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/TUsiAqLW-rrNfZgYB8pkSmPOWQc/1/da"><img src="http://feedads.g.doubleclick.net/~a/TUsiAqLW-rrNfZgYB8pkSmPOWQc/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/classicalconvert/~4/wvMVL93_CEM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://classicalconvert.com/2010/08/symphony-in-c/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://classicalconvert.com/2010/08/symphony-in-c/</feedburner:origLink></item>
		<item>
		<title>Eugh, I know the feeling…</title>
		<link>http://feedproxy.google.com/~r/classicalconvert/~3/AT8hRVrvuL4/</link>
		<comments>http://classicalconvert.com/2010/08/eugh-i-know-the-feeling/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 18:48:45 +0000</pubDate>
		<dc:creator>Me</dc:creator>
				<category><![CDATA[classical music]]></category>
		<category><![CDATA[cartoon]]></category>
		<category><![CDATA[listening to music by yourself]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[playing music for friends]]></category>

		<guid isPermaLink="false">http://classicalconvert.com/?p=1578</guid>
		<description><![CDATA[via Reddit. Anyone know where it originally comes from?]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://classicalconvert.com/wp-content/uploads/2010/08/musicwithfriends.png"><img class="aligncenter size-full wp-image-1579" title="Music with friends..." src="http://classicalconvert.com/wp-content/uploads/2010/08/musicwithfriends.png" alt="" width="418" height="621" /></a></p>
<p style="text-align: left;">via <a href="http://www.reddit.com/r/pics/comments/czpyq/playing_music_for_friends/">Reddit</a>. Anyone know where it originally comes from?</p>

<p><a href="http://feedads.g.doubleclick.net/~a/zWKrt6627-HLskv1WCgJOiAkNz8/0/da"><img src="http://feedads.g.doubleclick.net/~a/zWKrt6627-HLskv1WCgJOiAkNz8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zWKrt6627-HLskv1WCgJOiAkNz8/1/da"><img src="http://feedads.g.doubleclick.net/~a/zWKrt6627-HLskv1WCgJOiAkNz8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/classicalconvert/~4/AT8hRVrvuL4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://classicalconvert.com/2010/08/eugh-i-know-the-feeling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://classicalconvert.com/2010/08/eugh-i-know-the-feeling/</feedburner:origLink></item>
		<item>
		<title>Choose Your Own Damn Mahler Adventure</title>
		<link>http://feedproxy.google.com/~r/classicalconvert/~3/DoglZ2ZylTM/</link>
		<comments>http://classicalconvert.com/2010/08/choose-your-own-damn-mahler-adventure/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 01:10:04 +0000</pubDate>
		<dc:creator>Me</dc:creator>
				<category><![CDATA[classical music]]></category>
		<category><![CDATA[mahler]]></category>
		<category><![CDATA[streaming]]></category>

		<guid isPermaLink="false">http://classicalconvert.com/?p=1572</guid>
		<description><![CDATA[Do you love Mahler? Do you want to marry him and have his babies? Well it&#8217;s a bit late for that, but it&#8217;s not too late to participate in Deutsche Grammophon and Decca&#8217;s latest foray into the classical music social media scene. They&#8217;ve done a bang-up job arranging this one. The idea is that they [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://classicalconvert.com/wp-content/uploads/2010/08/mahler-graffitti.jpg"><img class="aligncenter size-medium wp-image-1573" title="mahler graffitti" src="http://classicalconvert.com/wp-content/uploads/2010/08/mahler-graffitti-300x165.jpg" alt="" width="300" height="165" /></a></p>
<p>Do you love Mahler? Do you want to marry him and have his babies? Well it&#8217;s a bit late for that, but it&#8217;s not too late to participate in <a href="http://www.mahler150.com/">Deutsche Grammophon and Decca&#8217;s latest foray</a> into the classical music social media scene. They&#8217;ve done a bang-up job arranging this one.</p>
<p>The idea is that they are putting together a new Mahler boxset. &#8220;But Ben! Those are a dime a dozen &#8212; well maybe a grand a dozen, but you can definitely buy 12&#8243;  I can hear you verbosely shouting at me through the internet. Well yes, but the difference here is that every symphony in the set is from a different conductor and orchestra, and it&#8217;s the voting public who get to decide which ones go in the set. &#8220;But Ben! I don&#8217;t own every single boxset, how will I compare renditions without shelling out thousands of dollars?&#8221; comes your next, sensibly thrifty proclamation.</p>
<p>Well that&#8217;s the best bit: you can stream &#8212; for free! &#8212; what appears to be their entire Mahler catalog, in order to confirm your decision.</p>
<p><a href="http://www.mahler150.com/">So go get your Gustav on</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/S1Lc3QlUKoJkNxwRn6mNV_xtUCY/0/da"><img src="http://feedads.g.doubleclick.net/~a/S1Lc3QlUKoJkNxwRn6mNV_xtUCY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/S1Lc3QlUKoJkNxwRn6mNV_xtUCY/1/da"><img src="http://feedads.g.doubleclick.net/~a/S1Lc3QlUKoJkNxwRn6mNV_xtUCY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/classicalconvert/~4/DoglZ2ZylTM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://classicalconvert.com/2010/08/choose-your-own-damn-mahler-adventure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://classicalconvert.com/2010/08/choose-your-own-damn-mahler-adventure/</feedburner:origLink></item>
		<item>
		<title>Not quite dead yet</title>
		<link>http://feedproxy.google.com/~r/classicalconvert/~3/HHe559ZS_Ko/</link>
		<comments>http://classicalconvert.com/2010/08/not-quite-dead-yet/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 01:07:55 +0000</pubDate>
		<dc:creator>Me</dc:creator>
				<category><![CDATA[non music]]></category>

		<guid isPermaLink="false">http://classicalconvert.com/?p=1568</guid>
		<description><![CDATA[Holy crap! Check this out! TEXT! Yeah, writing is mysteriously appearing in this space, and that&#8217;s because despite all the stuff that&#8217;s been happening recently my fingers have not completely broken up their relationship with the keyboard. And what &#8220;stuff&#8221; could have been happening? Well as an e.g., in an unrelated order of importance&#8230; Various [...]]]></description>
			<content:encoded><![CDATA[<p>Holy crap! Check this out! TEXT!</p>
<p>Yeah, writing is mysteriously appearing in this space, and that&#8217;s because despite all the stuff that&#8217;s been happening recently my fingers have not <em>completely</em> broken up their relationship with the keyboard. And what &#8220;stuff&#8221; could have been happening? Well as an e.g., in an unrelated order of importance&#8230;</p>
<ul>
<li>Various forays to various weddings</li>
<li>Diverse friends moving away from here forever</li>
<li>My Ph.D. defense</li>
<li>My own getting married</li>
</ul>
<p>See? Told you &#8220;stuff&#8221; was going down.</p>
<p>The last two of that list were done on the sly. We did a stealth, ninja-type wedding, and my supervisor likes to spring graduation on her students within weeks of the anticipated date. I&#8217;m still going to carry on doing pretty much the same thing for a bit though, I need to finish stuff up, and postponing the job search isn&#8217;t an entirely unattractive option. For now I&#8217;ll do a mini post-doc.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/2B48e1XHcG4km5uyV7BWQsTCNM4/0/da"><img src="http://feedads.g.doubleclick.net/~a/2B48e1XHcG4km5uyV7BWQsTCNM4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/2B48e1XHcG4km5uyV7BWQsTCNM4/1/da"><img src="http://feedads.g.doubleclick.net/~a/2B48e1XHcG4km5uyV7BWQsTCNM4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/classicalconvert/~4/HHe559ZS_Ko" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://classicalconvert.com/2010/08/not-quite-dead-yet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://classicalconvert.com/2010/08/not-quite-dead-yet/</feedburner:origLink></item>
		<item>
		<title>The audience roar their approval</title>
		<link>http://feedproxy.google.com/~r/classicalconvert/~3/0I1j8EjxnV0/</link>
		<comments>http://classicalconvert.com/2010/06/the-audience-roars-their-approval/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 19:33:15 +0000</pubDate>
		<dc:creator>Me</dc:creator>
				<category><![CDATA[classical music]]></category>

		<guid isPermaLink="false">http://classicalconvert.com/?p=1559</guid>
		<description />
			<content:encoded><![CDATA[<p><a href="http://classicalconvert.com/wp-content/uploads/2010/06/bearcello.jpg"><img class="aligncenter size-full wp-image-1560" title="Bears with cello" src="http://classicalconvert.com/wp-content/uploads/2010/06/bearcello.jpg" alt="" width="450" height="634" /></a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/YRl__6eeR6LPS8LrIADR8RyKdlw/0/da"><img src="http://feedads.g.doubleclick.net/~a/YRl__6eeR6LPS8LrIADR8RyKdlw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YRl__6eeR6LPS8LrIADR8RyKdlw/1/da"><img src="http://feedads.g.doubleclick.net/~a/YRl__6eeR6LPS8LrIADR8RyKdlw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/classicalconvert/~4/0I1j8EjxnV0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://classicalconvert.com/2010/06/the-audience-roars-their-approval/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://classicalconvert.com/2010/06/the-audience-roars-their-approval/</feedburner:origLink></item>
		<item>
		<title>A Chamber Full of Beethoven</title>
		<link>http://feedproxy.google.com/~r/classicalconvert/~3/zaT3I69P_nQ/</link>
		<comments>http://classicalconvert.com/2010/06/a-chamber-full-of-beethoven/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 02:52:12 +0000</pubDate>
		<dc:creator>Me</dc:creator>
				<category><![CDATA[classical music]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://classicalconvert.com/?p=1553</guid>
		<description><![CDATA[This morning, as I sat nursing a cup of coffee and procrastinating starting work,  a sudden Beethoven-related thought appeared: are there arrangements of his symphonies for string quartet? The answer is: sort of. Theses ones aren&#8217;t for quartet, but quintet. I discovered these via this thread, which contains a wealth of information about chamber arrangements [...]]]></description>
			<content:encoded><![CDATA[<p>This morning, as I sat nursing a cup of coffee and procrastinating starting work,  a sudden Beethoven-related thought appeared: are there arrangements of his symphonies for string quartet? The answer is: sort of.</p>
<p style="text-align: center;"><p><a href="http://classicalconvert.com/2010/06/a-chamber-full-of-beethoven/"><em>Click here to view the embedded video.</em></a></p></p>
<p style="text-align: center;"><p><a href="http://classicalconvert.com/2010/06/a-chamber-full-of-beethoven/"><em>Click here to view the embedded video.</em></a></p></p>
<p style="text-align: left;">Theses ones aren&#8217;t for quartet, but quintet. I discovered these via <a href="http://www.gyrix.com/forums/archive/index.php?t-3139.html">this thread</a>, which contains a wealth of information about chamber arrangements of Beethoven&#8217;s works.</p>
<p style="text-align: left;">It turns out that in the days before CDs and MP3s and 8-tracks, chamber arrangements were the shit. Apparently, music publishers in the 1800s were limited to selling only a certain number of copies of a hot new symphony. However, they could get around this by publishing versions arranged for smaller groups of instruments instead. This had the added bonus that the public were probably more interested in the chamber arrangements, because they could play them when their friends were over (unless you happened to be friends with a full symphony orchestra).  This resulted in lots of subpar, unauthorized arrangements of famous pieces (and a few good ones, too).</p>
<p style="text-align: left;">From liner notes reference in the thread above:</p>
<blockquote>
<p style="text-align: left;">&#8230; The present recording of two well-known works by Beethoven affords an example of &#8230; [a] practice that was once very common: that of transcribing large-scale orchestral works for chamber resources. This was a popular practice during the Classical era, when successful new symphonies or concertos were offered for sale by publishers in all manner of additional arrangements suitable for performance within a domestic setting, not only in the form of piano reductions, but also in transcriptions ranging from duets to septets and even nonets. Most of these arrangements were the work not of the composers themselves but of arrangers who specialized in this task. But in the case of Beethoven&#8217;s Symphony no. 2 in D major op. 36 we have an &#8220;authentic&#8221; arangement that Beethoven himself prepared soon after the first performance of the symphony in 1803. Whereas the majority of these transcriptions were intended on the whole to insure a wider and quicker distribution of the music, the chamber version of the Fourth Piano Concerto in G major op. 58 that was recently rediscovered and reconstructed by Hans-Werner Kuthen seems to have been intended primarily for the private use of Prince Lobowitz, one of Beethoven&#8217;s music-loving patrons in whose town mansion the concerto had first been heard in its original orchestral version in March 1807. Beethoven was involved in this transcription too. Although he entrusted a tried-and-tested acquaintance, the court violinist Franz Alexander Possinger, with the task of reducing the orchestral lines to five-part strings (two violins, two violas and cello), he himself reworked the piano part and in the outer movements alone changed more than eighty passages in order to bring it into line with the new sororities, while at the same time considerably increasing the virtuoso demands on the soloist&#8230;.</p>
</blockquote>
<p style="text-align: left;">Which is describing <a href="http://www.amazon.com/gp/product/B00008AD9T?ie=UTF8&amp;tag=livewirr-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00008AD9T">this CD</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=livewirr-20&amp;l=as2&amp;o=1&amp;a=B00008AD9T" border="0" alt="" width="1" height="1" /> of chamber arrangements of Beethoven&#8217;s piano concerto No. 4 and 2nd Symphony.</p>
<p style="text-align: left;">Phew. That&#8217;s a lot of information.</p>
<p style="text-align: left;">I;m not sure how much I like the versions in the youtube videos above. The phrasing feels a bit too over-Romanticcy. I do really like the Liszt <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref_%3Dnb%5Fsb%5Fnoss%26y%3D0%26field-keywords%3Dliszt%2520piano%2520transcriptions%2520beethoven%2520scherbakov%26url%3Dsearch-alias%253Dpopular&amp;tag=livewirr-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=390957">piano transcriptions</a><img style="border: none !important; margin: 0px !important;" src="https://www.assoc-amazon.com/e/ir?t=livewirr-20&amp;l=ur2&amp;o=1" border="0" alt="" width="1" height="1" />, though.</p>
<p style="text-align: left;">What do you think?</p>

<p><a href="http://feedads.g.doubleclick.net/~a/M9uaRSSx-0OQrZFg8FPJR0n-8O4/0/da"><img src="http://feedads.g.doubleclick.net/~a/M9uaRSSx-0OQrZFg8FPJR0n-8O4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/M9uaRSSx-0OQrZFg8FPJR0n-8O4/1/da"><img src="http://feedads.g.doubleclick.net/~a/M9uaRSSx-0OQrZFg8FPJR0n-8O4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/classicalconvert/~4/zaT3I69P_nQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://classicalconvert.com/2010/06/a-chamber-full-of-beethoven/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://classicalconvert.com/2010/06/a-chamber-full-of-beethoven/</feedburner:origLink></item>
		<item>
		<title>Free classical music! (if you’re in school…)</title>
		<link>http://feedproxy.google.com/~r/classicalconvert/~3/vH-ljP6J_bI/</link>
		<comments>http://classicalconvert.com/2010/06/free-classical-music-if-youre-in-school/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 03:29:44 +0000</pubDate>
		<dc:creator>Me</dc:creator>
				<category><![CDATA[classical music]]></category>

		<guid isPermaLink="false">http://classicalconvert.com/?p=1551</guid>
		<description><![CDATA[If you are in one of those fine institutes of learning known as &#8220;a university&#8221; then you might already have access to bazillions of online classical music recordings. Naturally I only worked this out in the last half-year (please please please oh god) of my PhD. You can check it out by going to your [...]]]></description>
			<content:encoded><![CDATA[<p>If you are in one of those fine institutes of learning known as &#8220;a university&#8221; then you might already have access to bazillions of online classical music recordings. Naturally I only worked this out in the last half-year (please please please oh god) of my PhD. You can check it out by going to your library website and finding the database section. Have a nose around in there for classical music related stuff. I found out we have the entire Naxos music library!</p>
<p>(<a href="http://www.reddit.com/r/classicalmusic/">via r/classicalmusic</a>)</p>

<p><a href="http://feedads.g.doubleclick.net/~a/HNjL_irNZ1QP41fpN4a7Yi_eLI8/0/da"><img src="http://feedads.g.doubleclick.net/~a/HNjL_irNZ1QP41fpN4a7Yi_eLI8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/HNjL_irNZ1QP41fpN4a7Yi_eLI8/1/da"><img src="http://feedads.g.doubleclick.net/~a/HNjL_irNZ1QP41fpN4a7Yi_eLI8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/classicalconvert/~4/vH-ljP6J_bI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://classicalconvert.com/2010/06/free-classical-music-if-youre-in-school/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://classicalconvert.com/2010/06/free-classical-music-if-youre-in-school/</feedburner:origLink></item>
		<item>
		<title>(W)Here I’ve Been</title>
		<link>http://feedproxy.google.com/~r/classicalconvert/~3/Atfd3tIR9iU/</link>
		<comments>http://classicalconvert.com/2010/05/where-ive-been/#comments</comments>
		<pubDate>Wed, 26 May 2010 02:57:56 +0000</pubDate>
		<dc:creator>Me</dc:creator>
				<category><![CDATA[classical music]]></category>

		<guid isPermaLink="false">http://classicalconvert.com/?p=1542</guid>
		<description><![CDATA[10 states, 6 days, ~2000 miles of driving: Biggest surprise: The landscape in South Dakota is like a cross between Yorkshire and Scotland, not jagged and full of fear like I imagined it to be. Biggest disappointment: Phoenix; hot and gross and pockmarked with interstate.]]></description>
			<content:encoded><![CDATA[<p>10 states, 6 days, ~2000 miles of driving:</p>
<p style="text-align: center;"><a href="http://classicalconvert.com/wp-content/uploads/2010/05/trip.jpg"><img class="aligncenter size-full wp-image-1543" title="all state" src="http://classicalconvert.com/wp-content/uploads/2010/05/trip.jpg" alt="" width="484" height="279" /></a></p>
<p style="text-align: left;"><strong>Biggest surprise</strong>: The landscape in South Dakota is like a cross between Yorkshire and Scotland, not jagged and full of fear like I imagined it to be.</p>
<p style="text-align: left;"><strong>Biggest disappointment</strong>: Phoenix; hot and gross and pockmarked with interstate.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/85YH5HJ0G019i-0QHpqg8ajQMaA/0/da"><img src="http://feedads.g.doubleclick.net/~a/85YH5HJ0G019i-0QHpqg8ajQMaA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/85YH5HJ0G019i-0QHpqg8ajQMaA/1/da"><img src="http://feedads.g.doubleclick.net/~a/85YH5HJ0G019i-0QHpqg8ajQMaA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/classicalconvert/~4/Atfd3tIR9iU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://classicalconvert.com/2010/05/where-ive-been/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://classicalconvert.com/2010/05/where-ive-been/</feedburner:origLink></item>
		<item>
		<title>ADHD+Opera</title>
		<link>http://feedproxy.google.com/~r/classicalconvert/~3/HEMi5t1OTiY/</link>
		<comments>http://classicalconvert.com/2010/04/adhdopera/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 03:17:58 +0000</pubDate>
		<dc:creator>Me</dc:creator>
				<category><![CDATA[classical music]]></category>

		<guid isPermaLink="false">http://classicalconvert.com/?p=1538</guid>
		<description><![CDATA[In our modern age, everything is available in snack form. The internet has drained our attention spans. Any wall of text longer than a couple of paragraphs is a challenge that needs to be planned, and packed, and mapped out well in advance. We&#8217;ve moved from writing letters, to phonecalls, to emails, to instant messenging. [...]]]></description>
			<content:encoded><![CDATA[<p>In our modern age, everything is available in snack form. The internet has drained our attention spans. Any wall of text longer than a couple of paragraphs is a challenge that needs to be planned, and packed, and mapped out well in advance. We&#8217;ve moved from writing letters, to phonecalls, to emails, to instant messenging. The quicker and less the investment of time, the better. The most recent methods of communicating don&#8217;t even leave the briefness up to us, text messaging and Twitter both have abbreviation built in, and we love it. The lack of freedom is a feature.</p>
<p>Not that that&#8217;s a bad thing. When I was a kid we&#8217;d sometimes get to go into work with our parents. In the morning, before we all packed into the little VW Polo (that&#8217;s one size down from the Golf, for the US readers) my sister and I would raid the big box of Legos that lived under the bed. We&#8217;d each put together a 10 or 20 piece model and take it in with us. Then we&#8217;d spend the whole day taking apart and rebuilding them, trying to make as many different things out of those handful of pieces as possible. In a way it was more exciting to be limited to just those pieces, than to have the run of the huge box at home. That&#8217;s when I first understood the adage &#8220;necessity is the mother of invention&#8221;.</p>
<p>Now here&#8217;s your chance to be a mother&#8230;. of invention&#8230; of Opera&#8230; on Twitter. The idea is to describe the entire plot of an opera in 160 characters. The outcome is you can win fabulous prizes. Examples from last year:</p>
<ul>
<li><a href="http://twitter.com/leboyfriend" target="_blank">@leboyfriend </a>– There was a young lady called Fricka Who . . . who . . . *snore* &#8216;Wake up &#8212; it&#8217;s over.&#8217; It&#8217;s good, I just wish it were quicka.  [The Ring]</li>
<li><a href="http://twitter.com/jessicaduchen" target="_blank">@wordsmusic</a> – Here&#8217;s my castle. Are you afraid? No, I&#8217;m going to open all those damn doors! Are you afraid? No, let me in! Who&#8217;s that? Oh shit. [Bluebeard]</li>
<li><a href="http://twitter.com/musicbizkid" target="_blank">@musicbizkid</a> – Let me get this straight: unfathomable treasure if I betroth my loopy daughter to a ghost? Deal. She&#8217;ll meet you by the fjord. [The Flying Dutchman]</li>
<li><a href="http://twitter.com/drgeoduck" target="_blank">@DrGeoduck</a> – Who wants to live forever? Me! No, wait, i changed my mind. *dies* [The Makropolus Case]</li>
<li><a href="http://twitter.com/voxdixit" target="_blank">@voxdixit</a> – Monk: Repent, courtesan! (Meditation) Courtesan: Okay! Monk: Wait, there is no God after all! Courtesan: Too late, I&#8217;m dead! [Thais]</li>
</ul>
<p>Interest piqued? Full details on Miss. M&#8217;s site, <a href="http://theomniscientmussel.com/2010/04/operaplot-2010-rules-and-faq/">here</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/HILLjROomellWpMBNdS2YRZb80A/0/da"><img src="http://feedads.g.doubleclick.net/~a/HILLjROomellWpMBNdS2YRZb80A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/HILLjROomellWpMBNdS2YRZb80A/1/da"><img src="http://feedads.g.doubleclick.net/~a/HILLjROomellWpMBNdS2YRZb80A/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/classicalconvert/~4/HEMi5t1OTiY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://classicalconvert.com/2010/04/adhdopera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://classicalconvert.com/2010/04/adhdopera/</feedburner:origLink></item>
		<item>
		<title>Temper Tantrum</title>
		<link>http://feedproxy.google.com/~r/classicalconvert/~3/jIsFSaWzuC4/</link>
		<comments>http://classicalconvert.com/2010/04/temper-tantrum/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 03:04:30 +0000</pubDate>
		<dc:creator>Me</dc:creator>
				<category><![CDATA[classical music]]></category>

		<guid isPermaLink="false">http://classicalconvert.com/?p=1536</guid>
		<description><![CDATA[Does arguing the finer points of tuning systems get you in a bit of a bother? Do perfect fifths make you need to loosen up your collar? If so, I recommend a cold shower, and a trip to Slate to read this article on temperament, though possibly not in that order.]]></description>
			<content:encoded><![CDATA[<p>Does arguing the finer points of tuning systems get you in a bit of a bother? Do perfect fifths make you need to loosen up your collar? If so, I recommend a cold shower, and a trip to Slate to read <a href="http://www.slate.com/id/2250793/">this article on temperament</a>, though possibly not in that order.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/p_GCqPV-tgpDj_Z8AyhvnpNNSfA/0/da"><img src="http://feedads.g.doubleclick.net/~a/p_GCqPV-tgpDj_Z8AyhvnpNNSfA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/p_GCqPV-tgpDj_Z8AyhvnpNNSfA/1/da"><img src="http://feedads.g.doubleclick.net/~a/p_GCqPV-tgpDj_Z8AyhvnpNNSfA/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/classicalconvert/~4/jIsFSaWzuC4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://classicalconvert.com/2010/04/temper-tantrum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://classicalconvert.com/2010/04/temper-tantrum/</feedburner:origLink></item>
	</channel>
</rss>
