<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>My Wushu Blog &#187; Music</title>
	<atom:link href="http://www.mywushublog.com/category/music/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mywushublog.com</link>
	<description></description>
	<lastBuildDate>Wed, 28 Jul 2010 05:05:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Creating an Audio Bootleg from YouTube</title>
		<link>http://www.mywushublog.com/2010/05/creating-an-audio-bootleg-from-youtube/</link>
		<comments>http://www.mywushublog.com/2010/05/creating-an-audio-bootleg-from-youtube/#comments</comments>
		<pubDate>Sun, 09 May 2010 06:30:11 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[buckethead]]></category>

		<guid isPermaLink="false">http://www.mywushublog.com/?p=953</guid>
		<description><![CDATA[Tools required: The internet A quality *nix OS (FreeBSD in this case) youtube-dl, available in FreeBSD under ports/www/youtube_dl/ ffmpeg, available in FreeBSD under ports/multimedia/ffmpeg/ First thing is first, find a really cool youtube clip. If you dont know of one already, use a Buckethead Song (Volume warning, this clip was mixed &#8220;hot&#8221;, so turn your [...]]]></description>
			<content:encoded><![CDATA[<p>Tools required:</p>
<ul>
<li>The internet</li>
<li>A quality *nix OS (FreeBSD in this case)</li>
<li><a href="http://bitbucket.org/rg3/youtube-dl/wiki/Home">youtube-dl</a>, available in FreeBSD under ports/www/youtube_dl/ </li>
<li><a href="http://www.ffmpeg.org/">ffmpeg</a>, available in FreeBSD under ports/multimedia/ffmpeg/ </li>
</ul>
<p>First thing is first, find a really cool youtube clip. If you dont know of one already, use a Buckethead Song (Volume warning, this clip was mixed &#8220;hot&#8221;, so turn your speakers down):<br />
<object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/61k041I4aEo&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/61k041I4aEo&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object><br />
Watch the drummer (Bryan Mantia) go crazy in the background, pretty intense.</p>
<p>Now, use &#8216;youtube-dl&#8217;, which is pretty simple, the main argument it accepts is a URL of the youtube clip in question, and it saves it as a Flash Video file.</p>
<pre>
[server] 3:41pm: ~>youtube-dl 'http://www.youtube.com/watch?v=61k041I4aEo'
[youtube] Setting language
[youtube] 61k041I4aEo: Downloading video info webpage
[youtube] 61k041I4aEo: Extracting video information
[download] Destination: 61k041I4aEo.flv
[download] 100.0% of 8.04M at   57.33k/s ETA 00:00
</pre>
<p>Next, use ffmpeg to save the audio stream as a mp3 file:</p>
<pre>
[server] 3:45pm: ~>ffmpeg -i 61k041I4aEo.flv -ab 128000 -ar 44100 interworld_and_the_new_innocence.mp3
FFmpeg version 0.5.1, Copyright (c) 2000-2009 Fabrice Bellard, et al.
  libavutil     49.15. 0 / 49.15. 0
  libavcodec    52.20. 1 / 52.20. 1
  libavformat   52.31. 0 / 52.31. 0
  libavdevice   52. 1. 0 / 52. 1. 0
  libavfilter    0. 4. 0 /  0. 4. 0
  libswscale     0. 7. 1 /  0. 7. 1
  libpostproc   51. 2. 0 / 51. 2. 0
  built on May  8 2010 15:43:57, gcc: 4.2.1 20070719  [FreeBSD]

Seems stream 0 codec frame rate differs from container frame rate: 1000.00 (1000/1) -> 29.92 (359/12)
Input #0, flv, from '61k041I4aEo.flv':
  Duration: 00:03:38.24, start: 0.000000, bitrate: 306 kb/s
    Stream #0.0: Video: flv, yuv420p, 320x218, 242 kb/s, 29.92 tbr, 1k tbn, 1k tbc
    Stream #0.1: Audio: mp3, 22050 Hz, mono, s16, 64 kb/s
Output #0, mp3, to 'interworld_and_the_new_innocence.mp3':
    Stream #0.0: Audio: libmp3lame, 44100 Hz, mono, s16, 128 kb/s
Stream mapping:
  Stream #0.1 -> #0.0
Press [q] to stop encoding
size=    3411kB time=218.31 bitrate= 128.0kbits/s
video:0kB audio:3411kB global headers:0kB muxing overhead 0.000916%
</pre>
<p>Verify the file with file(1), or listen to the newly saved mp3 file over and over and over and over and over and over again.</p>
<pre>
[server] 3:45pm: ~>file interworld_and_the_new_innocence.mp3
interworld_and_the_new_innocence.mp3: Audio file with ID3 version 2.4.0, contains: MPEG ADTS, layer III, v1, 128 kbps, 44.1 kHz, Monaural
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.mywushublog.com/2010/05/creating-an-audio-bootleg-from-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gibson SG work</title>
		<link>http://www.mywushublog.com/2010/04/gibson-sg-work/</link>
		<comments>http://www.mywushublog.com/2010/04/gibson-sg-work/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 06:06:48 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Geekyness]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.mywushublog.com/?p=825</guid>
		<description><![CDATA[Last month when I helped my Friend Glenn,who now works at An Olde Town Tattoo Parlour in Monterey, move he was cool enough to lighten his load by giving me a very cool cream and black Gibson SG. The original heavy metal guitar made popular by Toni Iommi and Angus Young. The guitar&#8217;s neck was [...]]]></description>
			<content:encoded><![CDATA[<p>Last month when I helped my Friend <a href="http://www.myspace.com/peepeehedtattoo">Glenn</a>,who now works at <a href="http://oldetowntattoos.com/">An Olde Town Tattoo Parlour</a> in Monterey, move he was cool enough to lighten his load by giving me a very cool cream and black Gibson SG. The original heavy metal guitar made popular by Toni Iommi and Angus Young.</p>
<p>The guitar&#8217;s neck was broken at the body, and thankfully someone who knew what they were doing successfully glued it back on. Glenn put some heavy .11 gauge strings on it to keep a good amount of tension to help maintain structural integrity. I normally play with .10&#8242;s, so its really fun playing with the heavy strings and then switching back to my strat. I&#8217;ve decided to keep the heavy strings, and even down tune to D and C# just for fun. Keeping that in mind, I went ahead and picked up two Dimarzio X2N humbuckers, and since most of the brass parts on the SG went through some heavy usage, I also picked up a new tail-piece, bridge, and a new all black faceplate.</p>
<p>Replacing pickups is pretty easy, it required a little (de)soldering but that is the hardest part. What probably took me the most time was figuring out HOW I was supposed to re-wire the new 4 wire X2N pickups in a setup that only had 1 wire&#8230;</p>
<p>It seems modern humbuckers are REALLY fancy, and if you have a 5-way selector you can activate them in different combinations. Whereas the SG pickups had only 1 loop for the humbucker, the DiMarzio&#8217;s had a north loop and a south loop, and you could either wire them in series or parallel. There is no right way, its a matter of preference I guess, but since I&#8217;ve never hear either one, I chose a guide I found on Semour Duncan&#8217;s site.</p>
<p>I should point this out, even though I bought DiMarzio Pickups, I actually found more useful documentation on Seymour Duncan&#8217;s site. Not only did they have a really nice support section (http://www.seymourduncan.com/support/wiring-diagrams/), they also have color-code diagrams for each pickup vendor. So a big kudo&#8217;s for SD, maybe I&#8217;ll get those next time.</p>
<p>Okay, onto the work, let&#8217;s take a look at what we are working with:<br />
<a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.08.37.jpg"><img class="aligncenter size-medium wp-image-828" title="gibson-2010.04.17_13.08.37" src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.08.37-e1271568646390-200x300.jpg" alt="I'm going to need another wall mount now that I have two sweet guitars." width="200" height="300" /></a></p>
<div id="attachment_829" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.09.04.jpg"><img class="size-medium wp-image-829" title="gibson-2010.04.17_13.09.04" src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.09.04-300x200.jpg" alt="" width="300" height="200" /></a><p class="wp-caption-text">It is hard to see, but there is a good amount of corrosion on the pickup and the frets</p></div>
<div id="attachment_830" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.09.34.jpg"><img class="size-medium wp-image-830" title="gibson-2010.04.17_13.09.34" src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.09.34-300x200.jpg" alt="" width="300" height="200" /></a><p class="wp-caption-text">The saddles look very fragile from all the wear and tear</p></div>
<div id="attachment_831" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.09.55.jpg"><img class="size-medium wp-image-831" title="gibson-2010.04.17_13.09.55" src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.09.55-300x200.jpg" alt="" width="300" height="200" /></a><p class="wp-caption-text">A faded tail piece</p></div>
<div id="attachment_832" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.10.14.jpg"><img class="size-medium wp-image-832" title="gibson-2010.04.17_13.10.14" src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.10.14-300x200.jpg" alt="" width="300" height="200" /></a><p class="wp-caption-text">This is where the neck was broken, but I won&#39;t tackle that here. Or ever really <img src='http://www.mywushublog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></div>
<p>Here are the new parts:</p>
<div id="attachment_833" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_14.16.46.jpg"><img class="size-medium wp-image-833" title="gibson-2010.04.17_14.16.46" src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_14.16.46-300x200.jpg" alt="" width="300" height="200" /></a><p class="wp-caption-text">Two black/black DiMarzio X2N&#39;s</p></div>
<div id="attachment_834" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.15.56.jpg"><img class="size-medium wp-image-834" title="gibson-2010.04.17_13.15.56" src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.15.56-300x200.jpg" alt="" width="300" height="200" /></a><p class="wp-caption-text">Old and New tail piece</p></div><br />
<div id="attachment_835" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.23.17.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.23.17-300x200.jpg" alt="" title="gibson-2010.04.17_13.23.17" width="300" height="200" class="size-medium wp-image-835" /></a><p class="wp-caption-text">Old and new bridge, which turned out to be a problem</p></div>
<p>The real work begins:<br />
<div id="attachment_836" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.28.23.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_13.28.23-300x200.jpg" alt="" title="gibson-2010.04.17_13.28.23" width="300" height="200" class="size-medium wp-image-836" /></a><p class="wp-caption-text">Original wiring, two Humbuckers, Two Volumes and Two Tones...</p></div><br />
<div id="attachment_837" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_14.01.07.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_14.01.07-300x200.jpg" alt="" title="gibson-2010.04.17_14.01.07" width="300" height="200" class="size-medium wp-image-837" /></a><p class="wp-caption-text">Old faceplate and pickups de-soldered and removed</p></div><br />
<div id="attachment_838" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_14.01.17.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_14.01.17-300x200.jpg" alt="" title="gibson-2010.04.17_14.01.17" width="300" height="200" class="size-medium wp-image-838" /></a><p class="wp-caption-text">Front...</p></div><br />
<div id="attachment_839" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_14.10.44.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_14.10.44-300x200.jpg" alt="" title="gibson-2010.04.17_14.10.44" width="300" height="200" class="size-medium wp-image-839" /></a><p class="wp-caption-text">Since I only have one contact point, the ground and bottom south loop are wired together, as well as the top south and bottom north. That spot-light you see is my kick ass hiking head-lamp. I haven't used mine hiking yet, but it helped me out a LOT during all of this.</p></div><br />
<div id="attachment_840" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_14.17.27.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_14.17.27-300x200.jpg" alt="" title="gibson-2010.04.17_14.17.27" width="300" height="200" class="size-medium wp-image-840" /></a><p class="wp-caption-text">The Neck pickup finished...</p></div><br />
<div id="attachment_841" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_14.28.40.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_14.28.40-300x200.jpg" alt="" title="gibson-2010.04.17_14.28.40" width="300" height="200" class="size-medium wp-image-841" /></a><p class="wp-caption-text">... and the bridge pickup</p></div><br />
<div id="attachment_842" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_16.39.34.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_16.39.34-300x200.jpg" alt="" title="gibson-2010.04.17_16.39.34" width="300" height="200" class="size-medium wp-image-842" /></a><p class="wp-caption-text">Faceplate is installed with the pickups attached.</p></div></p>
<p>Let me just say, getting the pickups screwed on to the face plate was HARD. There are two tension springs that keep the pickup stationary, and getting those compressed so the screw could reach the faceplate took a lot of effort. I almost lost two of the four twice since they would shoot off while I was struggling to screw the pickup on.<br />
<div id="attachment_843" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_16.51.42.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_16.51.42-300x200.jpg" alt="" title="gibson-2010.04.17_16.51.42" width="300" height="200" class="size-medium wp-image-843" /></a><p class="wp-caption-text">New bridge and tail piece</p></div></p>
<p>I had a problem with the two screws that are used to adjust the bridge, the were slightly bigger than the old screws. I actually had to re-drill the holes for them, and this makes me a little uncomfortable. If it ever needs to be replaced, there is now a good chance the holes will have to be filled and re-drilled. Oh well.<br />
<div id="attachment_844" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_16.51.54.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_16.51.54-300x200.jpg" alt="" title="gibson-2010.04.17_16.51.54" width="300" height="200" class="size-medium wp-image-844" /></a><p class="wp-caption-text">Another shot</p></div><br />
<div id="attachment_845" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_18.50.26.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_18.50.26-300x200.jpg" alt="" title="gibson-2010.04.17_18.50.26" width="300" height="200" class="size-medium wp-image-845" /></a><p class="wp-caption-text">After cleaning the neck with mineral oil (finally found a use for that stuff), I re-strung it with a new set of .11's</p></div><br />
<div id="attachment_846" class="wp-caption aligncenter" style="width: 210px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_18.50.16.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2010/04/gibson-2010.04.17_18.50.16-200x300.jpg" alt="" title="gibson-2010.04.17_18.50.16" width="200" height="300" class="size-medium wp-image-846" /></a><p class="wp-caption-text">All done, AND it works, two sometimes mutually exclusive outcomes <img src='http://www.mywushublog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></div></p>
<p>This was a great way to spend a Saturday afternoon, working on a guitar while listening to a Buckethead/Praxis playlist on Pandora. I spent most of the evening playing the guitar, those new pickups are very hot! They are going to require special attention so they don&#8217;t overload the amp. The sound is killer though, nice and low, a stark contrast to the Stratocaster&#8217;s sound.</p>
<p>Reference Material:<br />
<a href='http://www.mywushublog.com/wp-content/uploads/2010/04/2h_2v_2t_3w.pdf'>2h_2v_2t_3w</a><br />
<a href='http://www.mywushublog.com/wp-content/uploads/2010/04/color_codes.pdf'>color_codes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mywushublog.com/2010/04/gibson-sg-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buckethead</title>
		<link>http://www.mywushublog.com/2010/02/buckethead/</link>
		<comments>http://www.mywushublog.com/2010/02/buckethead/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 05:01:52 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[buckethead]]></category>

		<guid isPermaLink="false">http://www.mywushublog.com/?p=752</guid>
		<description><![CDATA[One of my Christmas gifts was a magazine subscription to Guitar Player. The biggest enjoyment I get out of a magazine like this, is I get to read about bands and musicians I normally wouldn&#8217;t hear about. I live in a musical vacuum, which is odd since I seem to like it so much. I [...]]]></description>
			<content:encoded><![CDATA[<p>One of my Christmas gifts was a magazine subscription to Guitar Player. The biggest enjoyment I get out of a magazine like this, is I get to read about bands and musicians I normally wouldn&#8217;t hear about. I live in a musical vacuum, which is odd since I seem to like it so much. I don&#8217;t listen to the radio, watch MTV, and for some reason I don&#8217;t like computer software telling me what I might like (like iTunes, Pandora, Google, etc&#8230;). Over the past decade I&#8217;ve probably &#8216;discovered&#8217; 3 or 4 groups or albums that I actually like. However, in the past two months I&#8217;ve found that many artists or groups I&#8217;m really digging because now I get to read about them more.</p>
<p>One artist I came across is Buckethead. The first image that comes to your mind when you read that name is exactly what you should think of. He is a man who wears a bucket on his head, and he, Brian Patrick Carrol, has been doing this for 20 years. That sort of fascinates me, because the only picture of buckethead with out the mask on was taken before he created the character. When he is interviewed, he will either talk through a hand puppet ( a gruesome head ), or he will write down what he wants to say.</p>
<p>But you know, considering how your typical rock start tends to look (especially 20 years ago):</p>
<div id="attachment_764" class="wp-caption aligncenter" style="width: 369px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/02/WeWantMore.jpg"><img class="size-full wp-image-764" title="WeWantMore" src="http://www.mywushublog.com/wp-content/uploads/2010/02/WeWantMore.jpg" alt="" width="359" height="336" /></a><p class="wp-caption-text">Flashy!</p></div>
<p>Or, what other soloist guitar &#8220;Virtuoso&#8217;s&#8221; look and act like:</p>
<div id="attachment_763" class="wp-caption alignleft" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/02/Steve_Vai_2_-_Crossroads_Guitar_Fest_2004_-_lg.6297735.jpg"><img class="size-medium wp-image-763 " title="Steve_Vai_2_-_Crossroads_Guitar_Fest_2004_-_lg.6297735" src="http://www.mywushublog.com/wp-content/uploads/2010/02/Steve_Vai_2_-_Crossroads_Guitar_Fest_2004_-_lg.6297735-300x231.jpg" alt="" width="300" height="231" /></a><p class="wp-caption-text">I just did something in my pants!</p></div>
<div id="attachment_762" class="wp-caption alignright" style="width: 200px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/02/yngwie.jpg"><img class="size-medium wp-image-762 " title="yngwie" src="http://www.mywushublog.com/wp-content/uploads/2010/02/yngwie-238x300.jpg" alt="" width="190" height="240" /></a><p class="wp-caption-text">I&#39;m so good I can pout and play</p></div><br />
<br/><br />
<br/><br />
<br/><br />
<br/><br />
<br/><br />
<br/><br />
<br/><br />
<br/><br />
I&#8217;m just sayin&#8217;, I don&#8217;t mind this as much as the above examples:</p>
<p><div id="attachment_768" class="wp-caption aligncenter" style="width: 235px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/02/buckethead.jpg"><img class="size-medium wp-image-768" title="buckethead" src="http://www.mywushublog.com/wp-content/uploads/2010/02/buckethead-225x300.jpg" alt="" width="225" height="300" /></a><p class="wp-caption-text">This is what happens when Mike Myers puts his energy into music... greatness!</p></div>
<p>Besides the look to make him stand out, he is WICKEDLY talented! I&#8217;ve seen a LOT of footage by now on youtube, and I&#8217;ve purchased a few of his solo albums, and this guys plays on another level. Some of it is pure shred, and its almost obnoxious, but it just doesn&#8217;t feel like he&#8217;s jerking his guitar off in your ear like Yngwie or Steve Vai. I offer the follow clips to explain what I mean, and why I&#8217;m really getting into this guys music. Yeah, I&#8217;ve found something else to fixate on <img src='http://www.mywushublog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  His guitar is a serious piece of wood too, it&#8217;s a chambered over-sized Les Paul with 24 frets (awesome, most guitars have 21 or 22) and two kill switches which he uses a lot. </p>
<p>He can bust out a pretty traditional rock song, and it makes sense why he was Slash&#8217;s replacement for Guns and Roses (I think he&#8217;s much better than Slash, but I was never a big fan of GNR, and Axl is another rock star dick).<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/xy1OoeM4s28&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/xy1OoeM4s28&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Then, he can have something thats really mellow and full of soul<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/8akmP6Sjv2o&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/8akmP6Sjv2o&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Those arn&#8217;t technical breakthroughs, so here is a &#8220;Lesson&#8221; by Buckethead. It is not so much a lesson, because you can&#8217;t learn this. I would say he&#8217;s a robot, but I think even a robot would screw this up. Check out the 4 note tapping, then the really cool riff afterwards.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/yaCErlW-3p8&amp;hl=en_US&amp;fs=1&amp;start=74" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/yaCErlW-3p8&amp;hl=en_US&amp;fs=1&amp;start=74" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>It&#8217;s not all rock n roll though, he also plays some amazing chicken pickin&#8217;&#8230;<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/VcBbWxKBr44&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/VcBbWxKBr44&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>&#8230;and break out the Nunchaku&#8217;s followed up by a Robot Dance&#8230; Because he just couldn&#8217;t come off any more scarier.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Dz9FKIIaoQU&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/Dz9FKIIaoQU&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I read in an old interview that he wears the mask because he wants his performance to be about the music, and not him. That, and it lets him feel like to can do more and take more risks on stage (like dance). I can understand that, and appreciate the emphasis on it being about the music. He is also a horror movie fan, and that shows. Most of his music would make a killer soundtrack, he should do one of the Silent Hill games. I&#8217;m adding him to my short list of concerts I want to make an effort to see.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mywushublog.com/2010/02/buckethead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>recent music purchases</title>
		<link>http://www.mywushublog.com/2010/01/recent-music-purchases/</link>
		<comments>http://www.mywushublog.com/2010/01/recent-music-purchases/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 00:09:01 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.mywushublog.com/?p=696</guid>
		<description><![CDATA[Not an instrument,  but albums. I enjoy listening to music a lot, it makes my commute better, it makes jogging a lot of fun, and sometimes I don&#8217;t mind running errands because it gives me a good reason to listen to a new album. So, here are a few albums that I&#8217;ve recently picked up [...]]]></description>
			<content:encoded><![CDATA[<p>Not an instrument,  but albums.</p>
<p>I enjoy listening to music a lot, it makes my commute better, it makes jogging a lot of fun, and sometimes I don&#8217;t mind running errands because it gives me a good reason to listen to a new album.</p>
<p>So, here are a few albums that I&#8217;ve recently picked up and really enjoyed.</p>
<div id="attachment_698" class="wp-caption aligncenter" style="width: 510px"><a href="http://en.wikipedia.org/wiki/Amused_to_Death"><img class="size-full wp-image-698 " title="AmusedtoDeath" src="http://www.mywushublog.com/wp-content/uploads/2010/01/AmusedtoDeath.jpg" alt="" width="500" height="500" /></a><p class="wp-caption-text">Roger Waters - Amused to Death</p></div>
<p>Fist off, check out that cover, that looks like a movie poster of something I&#8217;d watch. If I saw that in a video store (or on twitchfilm.net), I&#8217;d be too excited to click on it, I&#8217;d be paralyzed in the anticipation of a subtitled movie. There was a short story of a similar title which inspired this album. Or, so Wikipedia says.</p>
<p>I could lament over the fact that its just a Roger Waters album, and without David Gilmour playing guitar, it is only a shadow of what it could have been&#8230; I&#8217;d be lying if I said that though. This is a pretty awesome album, and while there is no Sir David Gilmour, there is Jeff freakin&#8217; Beck. That guy creates some really unique sounds out of his guitar, where I cannot even tell what he is doing. I&#8217;m not a guitar virtuoso by any means, I know about enough techniques that while I can&#8217;t do it smoothly, I at least know the fundamentals of what a musician is doing. Not with this album. I can&#8217;t tell if he&#8217;s using a slide, his magical fingers, a whammy bar&#8230; its all mixed together.</p>
<p>Besides the music, which I do like, it is a Roger Waters album, and that means it is very satirical and the entire album is really one LOOONG song. The biggest downside to that is you cannot really appreciate one song at a time, you have to listen to the entire album. In the era of digital music with random track selection, or buying songs at a time, it can really kill a high concept album like this. Like the other Pink Floyd albums, such as The Wall, Dark Side of The Moon, Animals, etc&#8230; the entire album flowed together. They were also produced in the days of records (which now a days means a piece of information in a database <img src='http://www.mywushublog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ), where you pretty much had to listen to the entire album (I was always really bad at finding a track without hitting another song). It almost seems like albums like this wouldn&#8217;t be very successful in todays market, where you have to have a few radio-friendly hits and your album has to be modular enough to accommodate one-off iTunes downloads.</p>
<p>So, albums like this make me appreciate my commute to work. It gives me a large chunk of time to give the entire album its due respect, because after all, driving is for paying close attention to music and podcasts, not the road&#8230;</p>
<div id="attachment_699" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/01/cage-the-elephant-cage-the-elephant.jpg"><img class="size-full wp-image-699" title="cage-the-elephant-cage-the-elephant" src="http://www.mywushublog.com/wp-content/uploads/2010/01/cage-the-elephant-cage-the-elephant.jpg" alt="" width="400" height="400" /></a><p class="wp-caption-text">Cage The Elephant</p></div>
<p>I heard a song off of it called &#8216;No Rest for The Wicked&#8217;, and it&#8217;s pretty rockin&#8217;, so I got the entire album.</p>
<p>It&#8217;s not bad at all, it has a few tracks that I really like, and others are a little too fast paced for my liking, but all around it has a nice classic rock/blues feel to it. I have one of the songs on my jogging play list, and it has the perfect tempo to run too. Its just right where if I follow it with my gate, I run a bit faster than normal.</p>
<div id="attachment_700" class="wp-caption aligncenter" style="width: 410px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/01/anamanaguchi.jpg"><img class="size-full wp-image-700" title="anamanaguchi" src="http://www.mywushublog.com/wp-content/uploads/2010/01/anamanaguchi.jpg" alt="" width="400" height="400" /></a><p class="wp-caption-text">Anamanaguchi - Dawn Metropolis</p></div>
<p>This group makes their music with a hacked Nintendo Classic. It seems like they use real instruments, then let the 8-bit MIDI sound processor re-encode it. So, it sounds like the music to a 80&#8242;s video game. Being that is when I started playing games, it really hits the nostalgia spot. I like the bleeps and boops of old games, so naturally this album is good.</p>
<div id="attachment_701" class="wp-caption aligncenter" style="width: 510px"><a href="http://en.wikipedia.org/wiki/Sometimes_I_Wish_We_Were_An_Eagle"><img class="size-full wp-image-701" title="billcallahan_coversometimesiwish" src="http://www.mywushublog.com/wp-content/uploads/2010/01/billcallahan_coversometimesiwish.jpg" alt="" width="500" height="500" /></a><p class="wp-caption-text">Sometimes I Wish We Were an Eagle</p></div>
<p>This album cover reminds me of something my Grandma would listen too. Or, when I used to go to the Salvation Army to look for records (Look, I didn&#8217;t have any disposable income as a teenager, and I was big on 70&#8242;s music. I could only afford used records, and even then I couldn&#8217;t even afford that), and every album had a cover like this&#8230; Maybe thats the joke of it, its pretty deceptive. That, and I think the dude likes animals a lot.</p>
<p>Over a year ago, I watched a very good movie called &#8220;<a href="http://www.mywushublog.com/2008/08/dead-mans-shoes/">Dead Mans Shoes</a>&#8220;, which featured a Bill Callahan track (its under his previous band name, Smog) called &#8220;Vessel in Vain&#8221;. I&#8217;m not a country or folk fan. I might find a Johnny Cash song appealing, ormaybe one Bob Dillon song, but that is more of an artifact than me liking the two genres. Even though I don&#8217;t really like the majority of that type of music, there is something about Smog/Bill Callahan&#8217;s music that hooks me.</p>
<p>So, I&#8217;ve gone though every Smog/Bill album, and each album varies enough from indie to country that I tend to like one or two songs, and the rest are kind of &#8216;meh&#8217;. This one was no exception, there are about three songs I REALLY like, and the rest just don&#8217;t do anything for me.</p>
<div id="attachment_702" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/01/bbking.jpg"><img class="size-full wp-image-702" title="bbking" src="http://www.mywushublog.com/wp-content/uploads/2010/01/bbking.jpg" alt="" width="500" height="495" /></a><p class="wp-caption-text">B.B. King - The Ultimate Collection</p></div>
<p>I got this album specifically to try and learn some classic B.B. King songs. I&#8217;ve been working on &#8220;The Thrill is Gone&#8221;, and its pretty amazing how he can work just a few positions on the strings, yet create a whole sound scape. He also has a different playing style than I&#8217;m used to, so I had to build up my index finger&#8217;s strength just to try and hit the same quarter and full bends that he does.</p>
<p>Blues is still iffy for me. It seems if I like it, I REALLY like it, but not all of it catches my attention. Like this album, some of it is really REALLY good, and the rest feels like its just filler music. Maybe because to me, some of it starts to sounds too much alike, and I can&#8217;t remember it.</p>
<div id="attachment_704" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.mywushublog.com/wp-content/uploads/2010/01/King-Crimson-In-THe-court-of-The-Crimson-King.jpg"><img class="size-full wp-image-704" src="http://www.mywushublog.com/wp-content/uploads/2010/01/King-Crimson-In-THe-court-of-The-Crimson-King.jpg" alt="King Crimson - In The Court of The Crimson King" width="500" height="500" /></a><p class="wp-caption-text">King Crimson - In The court of The Crimson King</p></div>
<p style="text-align: left;">This cover is on the right on the precipice of giving me nightmares, freaky right? That and the weird almost anagram like mix of the Band name, and the Title name (which is almost backwards) breaks my brain like a divide by zero error. I can&#8217;t remember if the band is King Crimson or Crimson King now&#8230;</p>
<p style="text-align: left;">I&#8217;ve never heard of King Crimson, and the only reason why I got it was because it was categorized with Pink Floyd (as &#8220;Progressive Rock&#8221;) on the hilarious show &#8220;The Venture Brothers&#8221;. With that in mind, I decided to give it a shot.</p>
<p style="text-align: left;">It&#8217;s not bad considering the era (Ha, does that make you feel old Dad?? I referenced your generations music like a historian would <img src='http://www.mywushublog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ), it talks about flower power, moon children, it has flutes in the mix, and the entire album is 4 tracks, each track is 12 minutes long. I don&#8217;t like flutes in my rock, so there are bits and pieces that I like about it. It seems it would have been a good soundtrack to a movie, as it doesn&#8217;t have the typical structure as most music.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mywushublog.com/2010/01/recent-music-purchases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NOOOO-GASP-OOOOO</title>
		<link>http://www.mywushublog.com/2009/12/noooo-gasp-ooooo/</link>
		<comments>http://www.mywushublog.com/2009/12/noooo-gasp-ooooo/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 20:46:26 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[guitar]]></category>

		<guid isPermaLink="false">http://www.mywushublog.com/?p=639</guid>
		<description><![CDATA[!!! I came home with Owen last night, it was dark in the house. I was going to Owen&#8217;s room to get him ready for bed, and I went to the corner of the room to turn the light on. What I forgot, and didn&#8217;t see, was my guitar that I left of the floor. [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_640" class="wp-caption aligncenter" style="width: 210px"><a href="http://www.mywushublog.com/wp-content/uploads/2009/12/guitar-2009.12.12_21.16.10.jpg"><img class="size-medium wp-image-640" title="guitar-2009.12.12_21.16.10" src="http://www.mywushublog.com/wp-content/uploads/2009/12/guitar-2009.12.12_21.16.10-200x300.jpg" alt="NOOOOOO" width="200" height="300" /></a><p class="wp-caption-text">NOOOOOO</p></div>
<div id="attachment_641" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2009/12/guitar-2009.12.12_21.16.26.jpg"><img class="size-medium wp-image-641" title="guitar-2009.12.12_21.16.26" src="http://www.mywushublog.com/wp-content/uploads/2009/12/guitar-2009.12.12_21.16.26-300x200.jpg" alt="OOOOOOOO" width="300" height="200" /></a><p class="wp-caption-text">OOOOOOOO</p></div>
<div id="attachment_642" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2009/12/guitar-2009.12.13_11.48.35.jpg"><img class="size-medium wp-image-642" title="guitar-2009.12.13_11.48.35" src="http://www.mywushublog.com/wp-content/uploads/2009/12/guitar-2009.12.13_11.48.35-300x200.jpg" alt="OOOOOOOOO" width="300" height="200" /></a><p class="wp-caption-text">OOOOOOOOO</p></div>
<div id="attachment_643" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2009/12/guitar-2009.12.13_11.48.49.jpg"><img class="size-medium wp-image-643" title="guitar-2009.12.13_11.48.49" src="http://www.mywushublog.com/wp-content/uploads/2009/12/guitar-2009.12.13_11.48.49-300x200.jpg" alt="OOOOO!!!!!" width="300" height="200" /></a><p class="wp-caption-text">OOOOO!!!!!</p></div>
<p>!!!<br />
I came home with Owen last night, it was dark in the house. I was going to Owen&#8217;s room to get him ready for bed, and I went to the corner of the room to turn the light on. What I forgot, and didn&#8217;t see, was my guitar that I left of the floor. I normally lean it up against my computer, or the wall, but sometimes I&#8217;ll leave it on the floor to encourage Owen to play with it. I guess that wasn&#8217;t such a good habit to get into.</p>
<p>Repairing a neck like that would cost about as much as I bought that guitar for, so I&#8217;ll pull down Michele&#8217;s old acoustic guitar.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mywushublog.com/2009/12/noooo-gasp-ooooo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>David Gilmour: A Night to Remember</title>
		<link>http://www.mywushublog.com/2009/07/david-gilmour-a-night-to-remember/</link>
		<comments>http://www.mywushublog.com/2009/07/david-gilmour-a-night-to-remember/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 05:24:41 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[a night to remember]]></category>
		<category><![CDATA[Blu Ray]]></category>
		<category><![CDATA[david gilmour]]></category>

		<guid isPermaLink="false">http://www.mywushublog.com/?p=448</guid>
		<description><![CDATA[Let&#8217;s get this out of the way: My favorite band is Pink Floyd, and Sir David Gilmour&#8217;s guitar work still gives me goose-bumps. There will be little criticism of this concert, in fact, there will be only high praise. With once exception, there was a TERRIBLE audio delay on the concert disc. That really annoyed [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_451" class="wp-caption aligncenter" style="width: 624px"><a href="http://www.mywushublog.com/wp-content/uploads/2009/07/david_gilmour1.jpg"><img class="size-large wp-image-451 " title="david_gilmour1" src="http://www.mywushublog.com/wp-content/uploads/2009/07/david_gilmour1-1023x767.jpg" alt="David Gilmour" width="614" height="460" /></a><p class="wp-caption-text">David Gilmour</p></div>
<p>Let&#8217;s get this out of the way:</p>
<p>My favorite band is Pink Floyd, and Sir David Gilmour&#8217;s guitar work still gives me goose-bumps.</p>
<p>There will be little criticism of this concert, in fact, there will be only high praise. With once exception, there was a TERRIBLE audio delay on the concert disc. That really annoyed me, mostly since I pay very close attention to how he plays the guitar. The show itself was good, it wasn&#8217;t the typical Pink Floyd production (no large circular projections screen, crazy laser lights and flying pigs), it was very basic. It also had a really cool guest line-up, including David Bowie during Comfortably Numb. Funny, David Bowie talked about his parents taking him to a PF show when he was about 10&#8230; David Gilmour is freakin&#8217; old! My only concern is that I&#8217;ll never get to see him in concert (I did at least catch Roger Waters in 99), other than that, his age has no other relevance.</p>
<p>This concert was to promote his solo album, On an Island, which was released on 2006. It&#8217;s a decent album, some songs are cheesy, and it always feels like each song is an excuse to belt out a super long guitar solo. Even when he plays the sax, he still treats it like a guitar. This is a contrast from the old Pink Floyd dynamic, where Roger Waters was completely focused on the message, while David seemed to be all about the tone of the music. This is why, in their stride, they worked very well together. Anyway, the first half of the concert was his latest solo album, the second half was a lot of classic PF songs, Echo&#8217;s being one of my favorites (I once copied a VHS version of their Pompeii concert, and learned how to play it by watching it over and over again).</p>
<p>The real gem of this Blu Ray concert is the second disc, with all the behind the scenes footage of the entire tour. It was incredible, and I have a new level of respect for the entire team that performed. Here was my favorite part:</p>
<div id="attachment_476" class="wp-caption aligncenter" style="width: 624px"><a href="http://www.mywushublog.com/wp-content/uploads/2009/07/wineglass.001.png"><img class="size-large wp-image-476 " title="wineglass.001" src="http://www.mywushublog.com/wp-content/uploads/2009/07/wineglass.001-1024x576.png" alt="a tuner attached to a wine glass" width="614" height="346" /></a><p class="wp-caption-text">a tuner attached to a wine glass</p></div>
<p>That is a tuner attached to the flute of a wine glass. Why is that cool?</p>
<p>They were at dinner, drinking wine, and they decided to play around with the wine glasses. Cool right? Then it cuts over to a sound check, and David is there with a handful of wine glasses, tuning them, and showing someone else how to play the beginning of &#8220;Shine on You Crazy Diamond Part I&#8221;, with the wine glasses tuned accordingly.</p>
<div id="attachment_477" class="wp-caption aligncenter" style="width: 624px"><a href="http://www.mywushublog.com/wp-content/uploads/2009/07/wineglass.002.png"><img class="size-large wp-image-477 " title="wineglass.002" src="http://www.mywushublog.com/wp-content/uploads/2009/07/wineglass.002-1024x576.png" alt="I think they all made the chords together" width="614" height="346" /></a><p class="wp-caption-text">I think they all made the chords together</p></div>
<p>Thats the kind of awesomeness I always liked about the band. It gets better, because then in Venice, David stumbles across a street performer who uses wine glasses (and he&#8217;s really good, he&#8217;s playing Fur Elise with them). He then asks the guy if he would like to play a show with him the following night.. and the guy actually hesitates until Gilmour says &#8220;I&#8217;ll pay you of course&#8230;&#8221; <img src='http://www.mywushublog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I really enjoyed this box set, from the concert to the bonus footage, and it has further fueled my enjoyment of playing the guitar. It also prompted me to search YouTube, and I came across this recording of &#8220;Theres No Way Out of Here&#8221;, from his first solo album in 1978:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ZaSSK09_mBc&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/ZaSSK09_mBc&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I like it, even the cheesy chorus is cool with me. I bought that album and have really liked a few songs on it. Him and Roger need to get back together though because it still doesn&#8217;t beat &#8220;Dark Side of The Moon&#8221;, &#8220;Wish You Were Here&#8221;, &#8220;Animals&#8221;, etc&#8230; Those are some really fascinating albums and I could post a full length post for each album.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mywushublog.com/2009/07/david-gilmour-a-night-to-remember/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
