<?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; buckethead</title>
	<atom:link href="http://www.mywushublog.com/tag/buckethead/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mywushublog.com</link>
	<description></description>
	<lastBuildDate>Tue, 31 Jan 2012 18:42:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>More Fun with ffmpeg</title>
		<link>http://www.mywushublog.com/2011/07/more-fun-with-ffmpeg/</link>
		<comments>http://www.mywushublog.com/2011/07/more-fun-with-ffmpeg/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 05:28:24 +0000</pubDate>
		<dc:creator>Mike Carlson</dc:creator>
				<category><![CDATA[Geekyness]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[buckethead]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://www.mywushublog.com/?p=1481</guid>
		<description><![CDATA[To follow up on two previous posts, the Buckethead concert and making your own YouTube bootlegs, I&#8217;m going to add just a little more. As I mentioned, the concert was great. If I were to pick out one part, it would have been this lengthy untitled (as far as I ...]]></description>
			<content:encoded><![CDATA[<p>To follow up on two previous posts, the <a href="http://www.mywushublog.com/2011/07/buckethead-live-gamh/">Buckethead concert</a> and making your own <a href="http://www.mywushublog.com/2010/05/creating-an-audio-bootleg-from-youtube/">YouTube bootlegs</a>, I&#8217;m going to add just a little more.</p>
<p>As I mentioned, the concert was great. If I were to pick out one part, it would have been this lengthy untitled (as far as I know) freestyle jam he did with a simple looping beat.</p>
<p>I cannot think of anything worse than falling in love with a song at a concert, and not knowing the name of it.</p>
<p>Thankfully, a lot of people have <a href="http://www.youtube.com/watch?v=l_bApGe0a0U">recorded the entire show</a>. So Friday at work, while I was beating my head against MediaWiki&#8217;s new installer (that silently fails to populate the database with stock data because they tried to import a poorly escaped text blob&#8230; sheesh), I played the entire concert in the background. When my ears finally picked up the wonderful peice I heard at our SF show, I took note of the time.</p>
<p>The song starts around the 29 minute mark, and its nearly 8 minutes and 40 seconds long.</p>
<p>Once again, the first thing is to extract the audio from YouTube with youtube-dl:</p>
<pre>[server]-[mcarlson] 11:55am: /SafeKeg/Music/Buckethead&gt;youtube-dl --extract-audio --audio-format="aac" 'http://www.youtube.com/watch?v=l_bApGe0a0U'
[youtube] Setting language
[youtube] l_bApGe0a0U: Downloading video webpage
[youtube] l_bApGe0a0U: Downloading video info webpage
[youtube] l_bApGe0a0U: Extracting video information
[download] Destination: l_bApGe0a0U.mp4
[download] 100.0% of 519.25M at    1.51M/s ETA 00:00
[ffmpeg] Destination: l_bApGe0a0U.aac
Time spent in user mode   (CPU seconds) : 5.831s
Time spent in kernel mode (CPU seconds) : 9.170s
Total time                              : 5:49.83s
CPU utilisation (percentage)            : 4.2%</pre>
<p>Now I have a nice aac file to work with. That clip is almost 50 minutes long though, and I just want one song.</p>
<p>FFMPEG TO THE RESCUE!!</p>
<p>ffmpeg is an exceptional tool, and how it ties into a LOT of other codecs and filters make it really useful. You can even cut up an audio file, like I did here.</p>
<p>The command,</p>
<pre>ffmpeg -i l_bApGe0a0U.aac -ss 00:29:01 -t 00:08:41 -ab 128000 -ar 44100 sweet-new-song.mp3</pre>
<p>specifies the following:</p>
<ul>
<li>-i l_bApGeoaoU.aac : This is the input file, out audio that youtube-dl extracted for us</li>
<li>-ss 00:29:01 : Seek to 29 minutes a 1 second</li>
<li>-t 00:08:41 : The total &#8220;time&#8221;, or duration, of this file will be 8 minutes and 41 seconds</li>
<li>-ab 128000 : The bitrate to use</li>
<li>-ar 44100 : Sets the audio sampling rate to 44.1K hz</li>
<li>sweet-new-song.mp3 is the final output name</li>
</ul>
<pre>[server]-[mcarlson] 10:03pm: /SafeKeg/Music/Buckethead&gt;ffmpeg -i l_bApGe0a0U.aac -ss 00:29:01 -t 00:08:41 -ab 128000 -ar 44100 sweet-new-song.mp3
FFmpeg version 0.6.1, Copyright (c) 2000-2010 the FFmpeg developers
  built on Apr  2 2011 08:09:07 with gcc 4.2.1 20070719  [FreeBSD]
[aac @ 0x803c22010]max_analyze_duration reached
[aac @ 0x803c22010]Estimating duration from bitrate, this may be inaccurate
Input #0, aac, from 'l_bApGe0a0U.aac':
  Duration: 00:53:04.07, bitrate: 126 kb/s
    Stream #0.0: Audio: aac, 44100 Hz, stereo, s16, 126 kb/s
Output #0, mp3, to 'sweet-new-song.mp3':
  Metadata:
    TSSE            : Lavf52.64.2
    Stream #0.0: Audio: libmp3lame, 44100 Hz, stereo, s16, 128 kb/s
Stream mapping:
  Stream #0.0 -&gt; #0.0
Press [q] to stop encoding
size=    8144kB time=521.22 bitrate= 128.0kbits/s    ts/s
video:0kB audio:8144kB global headers:0kB muxing overhead 0.000396%
Time spent in user mode   (CPU seconds) : 27.280s
Time spent in kernel mode (CPU seconds) : 0.340s
Total time                              : 0:27.74s
CPU utilisation (percentage)            : 99.5%
</pre>
<p>And if anyone wants to listen to the final product, here you go:<br />
<a class="wpaudio" href='http://www.mywushublog.com/wp-content/uploads/2011/07/sweet-new-song.mp3'>sweet-new-song</a></p>
<p>The whole thing is a work of art, and to me, the second half (around 4:30) is the absolute best. So beautiful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mywushublog.com/2011/07/more-fun-with-ffmpeg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.mywushublog.com/wp-content/uploads/2011/07/sweet-new-song.mp3" length="8339572" type="audio/mpeg" />
		</item>
		<item>
		<title>Buckethead &#8211; Live @ GAMH</title>
		<link>http://www.mywushublog.com/2011/07/buckethead-live-gamh/</link>
		<comments>http://www.mywushublog.com/2011/07/buckethead-live-gamh/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 01:09:17 +0000</pubDate>
		<dc:creator>Mike Carlson</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[buckethead]]></category>
		<category><![CDATA[kickassery]]></category>

		<guid isPermaLink="false">http://www.mywushublog.com/?p=1469</guid>
		<description><![CDATA[Since I say this after almost every concert I go to, I&#8217;ll not forget to repeat it again: This was the BEST show I&#8217;ve ever seen. There are many aspects why: smaller venue, and our seats were on the balcony. This gave us a great view of the show, and ...]]></description>
			<content:encoded><![CDATA[<div id="attachment_1470" class="wp-caption aligncenter" style="width: 234px"><a href="http://www.mywushublog.com/wp-content/uploads/2011/07/IMG_20110707_194251.jpg"><img class="size-medium wp-image-1470" title="IMG_20110707_194251" src="http://www.mywushublog.com/wp-content/uploads/2011/07/IMG_20110707_194251-224x300.jpg" alt="" width="224" height="300" /></a><p class="wp-caption-text">Outside the GAMH</p></div>
<p>Since I say this after almost every concert I go to, I&#8217;ll not forget to repeat it again:</p>
<p>This was the BEST show I&#8217;ve ever seen.</p>
<p>There are many aspects why: smaller venue, and our seats were on the balcony. This gave us a great view of the show, and we were pretty darn close to everything. Oh, and you know, it is one of my favorite artist doing what he does best. Not to mentioned good food and beverages at a incredible price. The sound was great as well, not too loud, but enough to rumble you chest.</p>
<p>Even more triumphant, was the fact that Michele not only liked it, she LOVED it and requested that I load up her music devices with his music. His loud and insanely complex music, not the sweet stuff. There was only two mellow songs in that set, the rest were hair raising shred-fests. This is such an accomplishment, because leading up to this, she would ask me to play it in the car just so she could bitterly acclimate to it. Like it was cough medicine, she would sort of grimace, and roll her eyes, or take a jab at me and play the air guitar with a goofy face like &#8220;this is what you two look like!&#8221;</p>
<p>In the end, great music conquers all, and there is something powerful about live music. Living, breathing music in the air that you can almost taste. </p>
<p>Before I dive into that, lets get to the opening two man band, <a href="http://www.wolffandtuba.com/">Wolff</a>. A drummer and a tuba, and that tuba is a multi-purpose device. The musician uses it as a percussion instrument, a mic, and a sample device all at once. The sheer amount of skill he displayed creating and mixing samples of the sounds he made from it was incredible. He was mixing and looping effects on the fly for the entire set.</p>
<p>I also like watching drummers play. I told Michele that every time I see an opening band, I always like the drums. It makes me want to take lessons, or live vicariously though my kids and make one (or both!) of them pick up the drums. I think I&#8217;m also envious because I struggle with timing and rhythm. Total white-boy stereotype shining through.</p>
<p>So Wolff was cool, even though when they announced that there were only two more songs until Buckethead came out, I literally screamed inside my own head, &#8220;YAY!!!&#8221;</p>
<p>There is something about his music that resonates with me on a very deep level, more than any other artists. Despite what is observed by most, I do enjoy a lot of different music, but from the the ~140 artists currently on my &#8220;shuffle all&#8221; selection, not a one comes close.</p>
<p>Think about that, for yourself. Think of all the music you have heard, and narrow down the artists that give you goosebumps, or make your heart race, and make you smile really big.</p>
<p>I dunno, it seems to map well with my brain and how I see music. So I sat very still and very focused the entire set, except during Jordan, when I had to use the restroom.</p>
<p>That was funny because there was a line outside, and the guy behind me peeked in the Ladies room, looked back at me and said &#8220;What? *laughs* There are no ladies here, its all guys&#8230;&#8221;</p>
<p>Totally true. There were maybe 5 or 6 women there, and I would have guessed that most of them were like Michele (dates or spouses). Guitar players attract guys, period.</p>
<p>Anyway, the point is, I was mesmerized. A few times I would just shake my head in awe. Michele laughed because during the song Siege Engine, there is a <a href="http://www.youtube.com/watch?v=T5IygpwUqUs#t=02m11s">part</a> where Buckethead goes from the low E open note, hammers on the 3rd fret (G), hammers on the 8th fret (C). Then does the reverse ( pulls off the 8th fret, to the 3rd, and pulls off the 3rd back to open). This is all done in one very smooth rhythm, and if you have never laid your fingers across a guitar fret board, that is a LOOONG stretch. It always puts a smile on my face, I&#8217;ve worked at it many times, and it is demanding.</p>
<p>As far as his guitar work and accuracy, my goodness&#8230; the command he has over that instrument is ridiculous. I&#8217;m also amazed that he plays along with a MP3 player. That means he doesn&#8217;t get to take a break, or improvise a bit longer, he has to know his set inside and out without missing the next song. Sprinkle in the sweet robot dance moves, dispensing toys to the crowd (and getting a few back from his fans), and he wears a MASK. I actually don&#8217;t know how he can see much of anything with that on. It was so impressive that the both of us reminisced on the drive home. Michele even mentioned not only looking forward to seeing him again, but joked that we should go the next night. I would have, except it was sold out :)</p>
<p>The venue staff asked that no photographs (especially flash) or videos be taken, so I compromised&#8230; I took one photo without the flash:<br />
<div id="attachment_1472" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.mywushublog.com/wp-content/uploads/2011/07/buckethead-07-07-2011.jpg"><img src="http://www.mywushublog.com/wp-content/uploads/2011/07/buckethead-07-07-2011-300x215.jpg" alt="" title="buckethead-07-07-2011" width="300" height="215" class="size-medium wp-image-1472" /></a><p class="wp-caption-text">The lighting just happened to be perfect for this shot. My phone isn&#039;t the best at taking low-light pictures</p></div></p>
<p>Otherwise, it was me scrunched up against the balcony so I could get as close as possible.</p>
<p>To finally wrap this up, I enjoyed it. I even heard a few new songs (Final Wars, pretty flippin&#8217; awesome), so mre music to enjoy! Also the minimum age at GAMH is 6, guess who I&#8217;ll be taking in the future?</p>
<p>Oh don&#8217;t be so judgmental! My first concert was the Highwaymen, a &#8220;country super-group&#8221;, on the grassy field at the Concord Pavilion. It was terrible, this couldn&#8217;t be any worse and I&#8217;m pretty sure there was less pot smoked at the Buckethead show than at The Highwaymen&#8217;s show.</p>
<p>For an artist who doesn&#8217;t use any words, he knows how to say a lot. To me at least.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mywushublog.com/2011/07/buckethead-live-gamh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<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 Carlson</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 ...]]></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>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 Carlson</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 ...]]></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 :) 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>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.mywushublog.com/tag/buckethead/feed/ ) in 0.35124 seconds, on Feb 7th, 2012 at 8:47 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 7th, 2012 at 9:47 am UTC -->
