youtube_search 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ script: "bundle exec rake"
2
+ rvm:
3
+ - ree
4
+ - 1.9.2
5
+ - 1.9.3
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source :rubygems
2
+ gemspec
3
+
4
+ group :development do
5
+ gem 'rake'
6
+ gem 'rspec', '~>2'
7
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,26 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ youtube_search (0.1.0)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.1.3)
10
+ rake (0.9.2)
11
+ rspec (2.6.0)
12
+ rspec-core (~> 2.6.0)
13
+ rspec-expectations (~> 2.6.0)
14
+ rspec-mocks (~> 2.6.0)
15
+ rspec-core (2.6.4)
16
+ rspec-expectations (2.6.0)
17
+ diff-lcs (~> 1.1.2)
18
+ rspec-mocks (2.6.0)
19
+
20
+ PLATFORMS
21
+ ruby
22
+
23
+ DEPENDENCIES
24
+ rake
25
+ rspec (~> 2)
26
+ youtube_search!
data/Rakefile ADDED
@@ -0,0 +1,20 @@
1
+ require "bundler"
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ task :default do
5
+ sh "rspec spec/"
6
+ end
7
+
8
+ rule /^version:bump:.*/ do |t|
9
+ sh "git status | grep 'nothing to commit'" # ensure we are not dirty
10
+ index = ['major', 'minor','patch'].index(t.name.split(':').last)
11
+ file = 'lib/youtube_search/version.rb'
12
+
13
+ version_file = File.read(file)
14
+ old_version, *version_parts = version_file.match(/(\d+)\.(\d+)\.(\d+)/).to_a
15
+ version_parts[index] = version_parts[index].to_i + 1
16
+ new_version = version_parts * '.'
17
+ File.open(file,'w'){|f| f.write(version_file.sub(old_version, new_version)) }
18
+
19
+ sh "bundle && git add #{file} Gemfile.lock && git commit -m 'bump version to #{new_version}'"
20
+ end
data/Readme.md ADDED
@@ -0,0 +1,40 @@
1
+ Search youtube via this simple ruby api
2
+
3
+ - just 10+ LOC
4
+ - no dependencies
5
+ - no funky stuff going on
6
+
7
+ Install
8
+ =======
9
+ sudo gem install youtube_search
10
+ Or
11
+
12
+ rails plugin install git://github.com/grosser/youtube_search.git
13
+
14
+
15
+ Usage
16
+ =====
17
+ YoutubeSearch.search('cats').first
18
+ {
19
+ "title"=>"Killer Whale Imitates Boat Motor",
20
+ "published"=>"2011-09-29T15:30:43.000Z",
21
+ "id"=>"http://gdata.youtube.com/feeds/api/videos/0b2U5r7Jwkc",
22
+ "video_id"=>"0b2U5r7Jwkc",
23
+ "content"=>"Top YouTube Videos on ...",
24
+ "updated"=>"2011-10-13T20:20:54.000Z",
25
+ ...
26
+ }
27
+
28
+ TODO
29
+ ====
30
+ - more detailed xml parsing (atm only name and value is read)
31
+ - parse dates into objects
32
+
33
+
34
+ Author
35
+ ======
36
+ [Michael Grosser](http://grosser.it)<br/>
37
+ michael@grosser.it<br/>
38
+ Hereby placed under public domain, do what you want, just do not hold me accountable...<br/>
39
+ [![Flattr](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=grosser&url=https://github.com/grosser/youtube_search&title=youtube_search&language=en_US&tags=github&category=software)
40
+ [![Build Status](https://secure.travis-ci.org/grosser/youtube_search.png)](http://travis-ci.org/grosser/youtube_search)
@@ -0,0 +1,24 @@
1
+ require 'rexml/document'
2
+ require 'cgi'
3
+ require 'open-uri'
4
+
5
+ module YoutubeSearch
6
+ def self.search(query)
7
+ xml = open("http://gdata.youtube.com/feeds/api/videos/-/#{CGI.escape(query)}").read
8
+ parse(xml)
9
+ end
10
+
11
+ def self.parse(xml)
12
+ entries = []
13
+ doc = REXML::Document.new(xml)
14
+ doc.elements.each('feed/entry') do |p|
15
+ entry = Hash[p.children.map do |child|
16
+ [child.name, child.text]
17
+ end]
18
+
19
+ entry['video_id'] = entry['id'].split('/').last
20
+ entries << entry
21
+ end
22
+ entries
23
+ end
24
+ end
@@ -0,0 +1,3 @@
1
+ module YoutubeSearch
2
+ VERSION = '0.1.0'
3
+ end
@@ -0,0 +1 @@
1
+ <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:media='http://search.yahoo.com/mrss/' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gd='http://schemas.google.com/g/2005' xmlns:gml='http://www.opengis.net/gml' xmlns:yt='http://gdata.youtube.com/schemas/2007' xmlns:georss='http://www.georss.org/georss'><id>http://gdata.youtube.com/feeds/api/videos</id><updated>2011-10-14T09:20:33.210Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><title type='text'>YouTube Videos</title><logo>http://www.youtube.com/img/pic_youtubelogo_123x63.gif</logo><link rel='alternate' type='text/html' href='http://www.youtube.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/batch'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/-/%7Bhttp%3A%2F%2Fgdata.youtube.com%2Fschemas%2F2007%2Fkeywords.cat%7Dboat?start-index=1&amp;max-results=25'/><link rel='next' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/-/%7Bhttp%3A%2F%2Fgdata.youtube.com%2Fschemas%2F2007%2Fkeywords.cat%7Dboat?start-index=26&amp;max-results=25'/><author><name>YouTube</name><uri>http://www.youtube.com/</uri></author><generator version='2.1' uri='http://gdata.youtube.com'>YouTube data API</generator><openSearch:totalResults>13399</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>http://gdata.youtube.com/feeds/api/videos/0b2U5r7Jwkc</id><published>2011-09-29T15:30:43.000Z</published><updated>2011-10-14T07:40:00.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Animals' label='Pets &amp; Animals'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Killer'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Whale'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Imitates'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Motor'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='OMG'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='cool'/><title type='text'>Killer Whale Imitates Boat Motor</title><content type='text'>Top YouTube Videos on tubecrunch.blogspot.com A killer whale swims right up to a boat and shows off his best sounding motor impression.</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=0b2U5r7Jwkc&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/0b2U5r7Jwkc/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/0b2U5r7Jwkc/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=0b2U5r7Jwkc'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/0b2U5r7Jwkc'/><author><name>RayBamBay</name><uri>http://gdata.youtube.com/feeds/api/users/raybambay</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/0b2U5r7Jwkc/comments' countHint='119'/></gd:comments><media:group><media:category label='Pets &amp; Animals' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Animals</media:category><media:content url='http://www.youtube.com/v/0b2U5r7Jwkc?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='75' yt:format='5'/><media:content url='rtsp://v3.cache5.c.youtube.com/CiILENy73wIaGQlHwsm-5pS90RMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='75' yt:format='1'/><media:content url='rtsp://v1.cache4.c.youtube.com/CiILENy73wIaGQlHwsm-5pS90RMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='75' yt:format='6'/><media:description type='plain'>Top YouTube Videos on tubecrunch.blogspot.com A killer whale swims right up to a boat and shows off his best sounding motor impression.</media:description><media:keywords>Killer, Whale, Imitates, Boat, Motor, OMG, cool</media:keywords><media:player url='http://www.youtube.com/watch?v=0b2U5r7Jwkc&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/0b2U5r7Jwkc/0.jpg' height='360' width='480' time='00:00:37.500'/><media:thumbnail url='http://i.ytimg.com/vi/0b2U5r7Jwkc/1.jpg' height='90' width='120' time='00:00:18.750'/><media:thumbnail url='http://i.ytimg.com/vi/0b2U5r7Jwkc/2.jpg' height='90' width='120' time='00:00:37.500'/><media:thumbnail url='http://i.ytimg.com/vi/0b2U5r7Jwkc/3.jpg' height='90' width='120' time='00:00:56.250'/><media:title type='plain'>Killer Whale Imitates Boat Motor</media:title><yt:duration seconds='75'/></media:group><gd:rating average='4.9313726' max='5' min='1' numRaters='408' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='278' viewCount='127761'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/ayKOlLhlQsc</id><published>2011-10-13T09:40:25.000Z</published><updated>2011-10-13T20:20:54.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Comedy' label='Comedy'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='sinks'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='launched'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Chinese'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='luxury'/><title type='text'>Luxury Chinese Boat Launches and Sinks Immediately</title><content type='text'>A Chinese Luxury boat launched. Sea views guaranteed! The downside of this boat though is it doesn't float Called the SS Jiugang, it reportedly cost over 17 million RMB (over $2.5m USD). Launched on September 29th 2011</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=ayKOlLhlQsc&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/ayKOlLhlQsc/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/ayKOlLhlQsc/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=ayKOlLhlQsc'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/ayKOlLhlQsc'/><author><name>VolcanicalThunder</name><uri>http://gdata.youtube.com/feeds/api/users/volcanicalthunder</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/ayKOlLhlQsc/comments' countHint='1'/></gd:comments><media:group><media:category label='Comedy' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Comedy</media:category><media:content url='http://www.youtube.com/v/ayKOlLhlQsc?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='40' yt:format='5'/><media:content url='rtsp://v3.cache3.c.youtube.com/CiILENy73wIaGQnHQmW4lI4iaxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='40' yt:format='1'/><media:content url='rtsp://v2.cache8.c.youtube.com/CiILENy73wIaGQnHQmW4lI4iaxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='40' yt:format='6'/><media:description type='plain'>A Chinese Luxury boat launched. Sea views guaranteed! The downside of this boat though is it doesn't float Called the SS Jiugang, it reportedly cost over 17 million RMB (over $2.5m USD). Launched on September 29th 2011</media:description><media:keywords>boat, sinks, launched, Chinese, luxury</media:keywords><media:player url='http://www.youtube.com/watch?v=ayKOlLhlQsc&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/ayKOlLhlQsc/0.jpg' height='360' width='480' time='00:00:20'/><media:thumbnail url='http://i.ytimg.com/vi/ayKOlLhlQsc/1.jpg' height='90' width='120' time='00:00:10'/><media:thumbnail url='http://i.ytimg.com/vi/ayKOlLhlQsc/2.jpg' height='90' width='120' time='00:00:20'/><media:thumbnail url='http://i.ytimg.com/vi/ayKOlLhlQsc/3.jpg' height='90' width='120' time='00:00:30'/><media:title type='plain'>Luxury Chinese Boat Launches and Sinks Immediately</media:title><yt:duration seconds='40'/></media:group><gd:rating average='5.0' max='5' min='1' numRaters='2' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='1' viewCount='319'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/fUpeIWdwYWg</id><published>2011-10-12T12:24:58.000Z</published><updated>2011-10-12T12:24:58.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='News' label='News &amp; Politics'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='12'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Donation'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Center'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='of'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Jomtien'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Operator&apos;s'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Club'/><title type='text'>Donation Center of Jomtien Boat Operator's Club.wmv</title><content type='text'/><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=fUpeIWdwYWg&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/fUpeIWdwYWg/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/fUpeIWdwYWg/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=fUpeIWdwYWg'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/fUpeIWdwYWg'/><author><name>PattayaPeopleMedia</name><uri>http://gdata.youtube.com/feeds/api/users/pattayapeoplemedia</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/fUpeIWdwYWg/comments' countHint='0'/></gd:comments><media:group><media:category label='News &amp; Politics' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>News</media:category><media:content url='http://www.youtube.com/v/fUpeIWdwYWg?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='42' yt:format='5'/><media:content url='rtsp://v8.cache4.c.youtube.com/CiILENy73wIaGQloYXBnIV5KfRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='42' yt:format='1'/><media:content url='rtsp://v1.cache4.c.youtube.com/CiILENy73wIaGQloYXBnIV5KfRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='42' yt:format='6'/><media:description type='plain'/><media:keywords>12, Donation, Center, of, Jomtien, Boat, Operator's, Club</media:keywords><media:player url='http://www.youtube.com/watch?v=fUpeIWdwYWg&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/fUpeIWdwYWg/0.jpg' height='360' width='480' time='00:00:21'/><media:thumbnail url='http://i.ytimg.com/vi/fUpeIWdwYWg/1.jpg' height='90' width='120' time='00:00:10.500'/><media:thumbnail url='http://i.ytimg.com/vi/fUpeIWdwYWg/2.jpg' height='90' width='120' time='00:00:21'/><media:thumbnail url='http://i.ytimg.com/vi/fUpeIWdwYWg/3.jpg' height='90' width='120' time='00:00:31.500'/><media:title type='plain'>Donation Center of Jomtien Boat Operator's Club.wmv</media:title><yt:duration seconds='42'/></media:group></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/OmxL5QuDX10</id><published>2011-08-13T11:06:34.000Z</published><updated>2011-10-13T21:33:55.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Entertainment' label='Entertainment'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='JOHN'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='AND'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='EDWARD'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='BIGGEST'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='FAN'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='PEDAL'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='BOAT'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='WATER'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='SUMMER'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='LIPSTICK'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='BAD'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='BEHAVIOUR'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='JEDWARD'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='PLANETJEDWARD'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='EVERYDAY'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='SURPERSTAR'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='GERMANY'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='HAIR'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='EUROVISION'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='JEDWARDTV'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='BOATS'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='WAVES'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='FOREST'/><title type='text'>JEDWARD BOAT</title><content type='text'>WE WERE IN A RANDOM SECRET LOCATION AND WE FOUND PEDAL BOATS SO WE JUST HAD TO CHECK THEM OUT REMEMBER TO ALWAYS HAVE LIFE JACKETS WE ALWAYS HAVE OUR HAIR ITS LIKE FLOATS IN WATER IT NEVER FLOPS OR SINKS</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=OmxL5QuDX10&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/OmxL5QuDX10/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/OmxL5QuDX10/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=OmxL5QuDX10'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/OmxL5QuDX10'/><author><name>JEDWARDTV</name><uri>http://gdata.youtube.com/feeds/api/users/jedwardtv</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/OmxL5QuDX10/comments' countHint='593'/></gd:comments><yt:hd/><media:group><media:category label='Entertainment' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Entertainment</media:category><media:content url='http://www.youtube.com/v/OmxL5QuDX10?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='210' yt:format='5'/><media:content url='rtsp://v3.cache1.c.youtube.com/CiILENy73wIaGQldX4ML5UtsOhMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='210' yt:format='1'/><media:content url='rtsp://v8.cache3.c.youtube.com/CiILENy73wIaGQldX4ML5UtsOhMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='210' yt:format='6'/><media:description type='plain'>WE WERE IN A RANDOM SECRET LOCATION AND WE FOUND PEDAL BOATS SO WE JUST HAD TO CHECK THEM OUT REMEMBER TO ALWAYS HAVE LIFE JACKETS WE ALWAYS HAVE OUR HAIR ITS LIKE FLOATS IN WATER IT NEVER FLOPS OR SINKS</media:description><media:keywords>JOHN, AND, EDWARD, BIGGEST, FAN, PEDAL, BOAT, WATER, SUMMER, LIPSTICK, BAD, BEHAVIOUR, JEDWARD, PLANETJEDWARD, EVERYDAY, SURPERSTAR, GERMANY, HAIR, EUROVISION, JEDWARDTV, BOATS, WAVES, FOREST</media:keywords><media:player url='http://www.youtube.com/watch?v=OmxL5QuDX10&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/OmxL5QuDX10/0.jpg' height='360' width='480' time='00:01:45'/><media:thumbnail url='http://i.ytimg.com/vi/OmxL5QuDX10/1.jpg' height='90' width='120' time='00:00:52.500'/><media:thumbnail url='http://i.ytimg.com/vi/OmxL5QuDX10/2.jpg' height='90' width='120' time='00:01:45'/><media:thumbnail url='http://i.ytimg.com/vi/OmxL5QuDX10/3.jpg' height='90' width='120' time='00:02:37.500'/><media:title type='plain'>JEDWARD BOAT</media:title><yt:duration seconds='210'/></media:group><gd:rating average='4.167742' max='5' min='1' numRaters='1240' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='284' viewCount='49188'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/7otAJa3jui8</id><published>2011-08-13T03:58:02.000Z</published><updated>2011-10-13T08:52:54.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Education' label='Education'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='row row'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='row row row'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='parents'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='education'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='kindergarten'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='preschool'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='nursery rhyme'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='lullaby'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='mother goose'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='family'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='seasons'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='water'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='row'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='life'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='love'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='happiness'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Twinkle Twinkle Little Star'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='supersimplesongs'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='ABC Song'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='nursery rhymes'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='row your boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='row row row the boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='row boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='sing a long'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='row row the boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='row row boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='preschool song'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='preschool songs'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='simple song'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='simple songs'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='sing in the round'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='life is but a dream'/><title type='text'>Row Row Row Your Boat</title><content type='text'>www.facebook.com copyright 2011 Super Simple Learning Thank you for your support! For more songs great for singing with emerging English speakers (native-speaking toddlers, EFL/ESL students, special needs children), please check out all the Super Simple Songs at www.supersimplelearning.com (This video is exclusive to YouTube and not currently for sale.) Lyrics: Row row row your boat Gently down the stream Merrily merrily merrily merrily Life is but a dream. Music and story by Troy McDonald and Devon Thagard Animation by Alberto Cerriteño Vocals by Leah Hays and Matt Stamm</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=7otAJa3jui8&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/7otAJa3jui8/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/7otAJa3jui8/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=7otAJa3jui8'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/7otAJa3jui8'/><author><name>SuperSimpleSongs</name><uri>http://gdata.youtube.com/feeds/api/users/supersimplesongs</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/7otAJa3jui8/comments' countHint='65'/></gd:comments><yt:hd/><media:group><media:category label='Education' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Education</media:category><media:content url='http://www.youtube.com/v/7otAJa3jui8?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='121' yt:format='5'/><media:content url='rtsp://v5.cache5.c.youtube.com/CiILENy73wIaGQkvuuOtJUCL7hMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='121' yt:format='1'/><media:content url='rtsp://v8.cache2.c.youtube.com/CiILENy73wIaGQkvuuOtJUCL7hMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='121' yt:format='6'/><media:description type='plain'>www.facebook.com copyright 2011 Super Simple Learning Thank you for your support! For more songs great for singing with emerging English speakers (native-speaking toddlers, EFL/ESL students, special needs children), please check out all the Super Simple Songs at www.supersimplelearning.com (This video is exclusive to YouTube and not currently for sale.) Lyrics: Row row row your boat Gently down the stream Merrily merrily merrily merrily Life is but a dream. Music and story by Troy McDonald and Devon Thagard Animation by Alberto Cerriteño Vocals by Leah Hays and Matt Stamm</media:description><media:keywords>row row, row row row, parents, education, kindergarten, preschool, nursery rhyme, lullaby, mother goose, family, seasons, boat, water, row, life, love, happiness, Twinkle Twinkle Little Star, supersimplesongs, ABC Song, nursery rhymes, row your boat, row row row the boat, row boat, sing a long, row row the boat, row row boat, preschool song, preschool songs, simple song, simple songs, sing in the round, life is but a dream</media:keywords><media:player url='http://www.youtube.com/watch?v=7otAJa3jui8&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/7otAJa3jui8/0.jpg' height='360' width='480' time='00:01:00.500'/><media:thumbnail url='http://i.ytimg.com/vi/7otAJa3jui8/1.jpg' height='90' width='120' time='00:00:30.250'/><media:thumbnail url='http://i.ytimg.com/vi/7otAJa3jui8/2.jpg' height='90' width='120' time='00:01:00.500'/><media:thumbnail url='http://i.ytimg.com/vi/7otAJa3jui8/3.jpg' height='90' width='120' time='00:01:30.750'/><media:title type='plain'>Row Row Row Your Boat</media:title><yt:duration seconds='121'/></media:group><gd:rating average='4.6977963' max='5' min='1' numRaters='953' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='2052' viewCount='856273'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/_8y8gS0BGCM</id><published>2011-09-07T06:52:48.000Z</published><updated>2011-10-13T18:06:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Shows' label='Shows'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='How'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='To'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Drive'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='chimneyswift11'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='spongebob'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='sponge'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='bob'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='patrick'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='the'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='starfish'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='idiot'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='dope'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='pickle'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='wheels'/><title type='text'>How To - Drive a Boat (HD)</title><content type='text'>It must be those pickle wheels... Game (SpongeBob SquarePants: Boat-o-Cross 2): bit.ly "Dvorak Polka Kevin MacLeod (incompetech.com) Licensed under Creative Commons "Attribution 3.0" This video will teach you: How to drive a boat How to be patrick How to kill cones How to get in an accident underwater How to get mad at Squidword How to do a flip How to have pickle wheels _______________ My Other Channels ChimneyVlogs - www.youtube.com CS11Gaming - www.youtube.com CS11Scrolls - www.youtube.com Follow me on twitter: www.twitter.com LIKE on Facebook: facebook.com Q&amp;A: www.youtube.com Outro Music: www.youtube.com</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=_8y8gS0BGCM&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/_8y8gS0BGCM/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/_8y8gS0BGCM/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=_8y8gS0BGCM'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/_8y8gS0BGCM'/><author><name>ChimneySwift11</name><uri>http://gdata.youtube.com/feeds/api/users/chimneyswift11</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/_8y8gS0BGCM/comments' countHint='288'/></gd:comments><yt:hd/><media:group><media:category label='Shows' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Shows</media:category><media:content url='http://www.youtube.com/v/_8y8gS0BGCM?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='117' yt:format='5'/><media:content url='rtsp://v5.cache1.c.youtube.com/CiILENy73wIaGQkjGAEtgbzM_xMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='117' yt:format='1'/><media:content url='rtsp://v1.cache4.c.youtube.com/CiILENy73wIaGQkjGAEtgbzM_xMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='117' yt:format='6'/><media:description type='plain'>It must be those pickle wheels... Game (SpongeBob SquarePants: Boat-o-Cross 2): bit.ly "Dvorak Polka Kevin MacLeod (incompetech.com) Licensed under Creative Commons "Attribution 3.0" This video will teach you: How to drive a boat How to be patrick How to kill cones How to get in an accident underwater How to get mad at Squidword How to do a flip How to have pickle wheels _______________ My Other Channels ChimneyVlogs - www.youtube.com CS11Gaming - www.youtube.com CS11Scrolls - www.youtube.com Follow me on twitter: www.twitter.com LIKE on Facebook: facebook.com Q&amp;A: www.youtube.com Outro Music: www.youtube.com</media:description><media:keywords>How, To, Drive, Boat, chimneyswift11, spongebob, sponge, bob, patrick, the, starfish, idiot, dope, pickle, wheels</media:keywords><media:player url='http://www.youtube.com/watch?v=_8y8gS0BGCM&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/_8y8gS0BGCM/0.jpg' height='360' width='480' time='00:00:58.500'/><media:thumbnail url='http://i.ytimg.com/vi/_8y8gS0BGCM/1.jpg' height='90' width='120' time='00:00:29.250'/><media:thumbnail url='http://i.ytimg.com/vi/_8y8gS0BGCM/2.jpg' height='90' width='120' time='00:00:58.500'/><media:thumbnail url='http://i.ytimg.com/vi/_8y8gS0BGCM/3.jpg' height='90' width='120' time='00:01:27.750'/><media:title type='plain'>How To - Drive a Boat (HD)</media:title><yt:duration seconds='117'/></media:group><gd:rating average='4.934747' max='5' min='1' numRaters='613' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='100' viewCount='33614'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/5-gfCkLFrfc</id><published>2011-03-23T18:42:01.000Z</published><updated>2011-10-13T17:37:29.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Entertainment' label='Entertainment'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='sail'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='fail'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='crash'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='kapsize'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='dock'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='cruise'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='ship'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='ocean'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='sailing'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='accident'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='compilation'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='cruiser'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='epic'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='mini'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='lol'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='owned'/><title type='text'>Boat Fails || Mini Compilation || TNL</title><content type='text'>ÏMPORTANT: Please subscribe at my 2nd channel: www.youtube.com From today I'm starting with something new. I'll now try to upload 1 new mini compilation per week. Every video has a special theme. The first one has boats. Next week there will be another theme. I will not dissapoint you. Question: What theme do you want in one of the mini compilations. Please leave a comment. I'll read them and I will make a mini compilation with your subject if there're enough submissions for them. The next fail compilation will be uploaded next week on the 30th of March. I will try to make the best fail compilation ever. See you then. Stay up 2 date with all latest news from me. I will upload some funny photo's, videos and more. You will also get background information on stuff. Like me here: www.facebook.com Follow me on Twitter: twitter.com</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=5-gfCkLFrfc&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/5-gfCkLFrfc/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/5-gfCkLFrfc/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=5-gfCkLFrfc'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/5-gfCkLFrfc'/><author><name>twisternederland7</name><uri>http://gdata.youtube.com/feeds/api/users/twisternederland7</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/5-gfCkLFrfc/comments' countHint='1051'/></gd:comments><yt:hd/><media:group><media:category label='Entertainment' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Entertainment</media:category><media:content url='http://www.youtube.com/v/5-gfCkLFrfc?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='260' yt:format='5'/><media:content url='rtsp://v6.cache1.c.youtube.com/CiILENy73wIaGQn3rcVCCh_o5xMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='260' yt:format='1'/><media:content url='rtsp://v8.cache6.c.youtube.com/CiILENy73wIaGQn3rcVCCh_o5xMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='260' yt:format='6'/><media:description type='plain'>ÏMPORTANT: Please subscribe at my 2nd channel: www.youtube.com From today I'm starting with something new. I'll now try to upload 1 new mini compilation per week. Every video has a special theme. The first one has boats. Next week there will be another theme. I will not dissapoint you. Question: What theme do you want in one of the mini compilations. Please leave a comment. I'll read them and I will make a mini compilation with your subject if there're enough submissions for them. The next fail compilation will be uploaded next week on the 30th of March. I will try to make the best fail compilation ever. See you then. Stay up 2 date with all latest news from me. I will upload some funny photo's, videos and more. You will also get background information on stuff. Like me here: www.facebook.com Follow me on Twitter: twitter.com</media:description><media:keywords>sail, fail, boat, crash, kapsize, dock, cruise, ship, ocean, sailing, accident, compilation, cruiser, epic, mini, lol, owned</media:keywords><media:player url='http://www.youtube.com/watch?v=5-gfCkLFrfc&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/5-gfCkLFrfc/0.jpg' height='360' width='480' time='00:02:10'/><media:thumbnail url='http://i.ytimg.com/vi/5-gfCkLFrfc/1.jpg' height='90' width='120' time='00:01:05'/><media:thumbnail url='http://i.ytimg.com/vi/5-gfCkLFrfc/2.jpg' height='90' width='120' time='00:02:10'/><media:thumbnail url='http://i.ytimg.com/vi/5-gfCkLFrfc/3.jpg' height='90' width='120' time='00:03:15'/><media:title type='plain'>Boat Fails || Mini Compilation || TNL</media:title><yt:duration seconds='260'/></media:group><gd:rating average='4.921391' max='5' min='1' numRaters='2099' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='1384' viewCount='930097'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/XRUczpDcVQM</id><published>2011-08-19T07:15:03.000Z</published><updated>2011-10-14T03:01:28.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Comedy' label='Comedy'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='This'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='is'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='real!'/><title type='text'>I'm On A Boat Live ft. The Roots</title><content type='text'>www.itunes.com The Dudes performed with The Roots on Late Night with Jimmy Fallon! Originally aired May 12, 2009. The Lonely Island are Andy Samberg, Akiva Schaffer &amp; Jorma Taccone.</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=XRUczpDcVQM&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/XRUczpDcVQM/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/XRUczpDcVQM/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=XRUczpDcVQM'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/XRUczpDcVQM'/><author><name>thelonelyisland</name><uri>http://gdata.youtube.com/feeds/api/users/thelonelyisland</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/XRUczpDcVQM/comments' countHint='6185'/></gd:comments><yt:hd/><yt:location>30 Rockefeller Plaza, New York, NY</yt:location><media:group><media:category label='Comedy' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Comedy</media:category><media:content url='http://www.youtube.com/v/XRUczpDcVQM?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='232' yt:format='5'/><media:content url='rtsp://v8.cache2.c.youtube.com/CiILENy73wIaGQkDVdyQzhwVXRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='232' yt:format='1'/><media:content url='rtsp://v4.cache8.c.youtube.com/CiILENy73wIaGQkDVdyQzhwVXRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='232' yt:format='6'/><media:description type='plain'>www.itunes.com The Dudes performed with The Roots on Late Night with Jimmy Fallon! Originally aired May 12, 2009. The Lonely Island are Andy Samberg, Akiva Schaffer &amp; Jorma Taccone.</media:description><media:keywords>This, boat, is, real!</media:keywords><media:player url='http://www.youtube.com/watch?v=XRUczpDcVQM&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/XRUczpDcVQM/0.jpg' height='360' width='480' time='00:01:56'/><media:thumbnail url='http://i.ytimg.com/vi/XRUczpDcVQM/1.jpg' height='90' width='120' time='00:00:58'/><media:thumbnail url='http://i.ytimg.com/vi/XRUczpDcVQM/2.jpg' height='90' width='120' time='00:01:56'/><media:thumbnail url='http://i.ytimg.com/vi/XRUczpDcVQM/3.jpg' height='90' width='120' time='00:02:54'/><media:title type='plain'>I'm On A Boat Live ft. The Roots</media:title><yt:duration seconds='232'/></media:group><gd:rating average='4.7841554' max='5' min='1' numRaters='16586' rel='http://schemas.google.com/g/2005#overall'/><yt:recorded>2009-05-12</yt:recorded><yt:statistics favoriteCount='4618' viewCount='2866075'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/6V9oTSprHrs</id><published>2011-07-12T15:54:21.000Z</published><updated>2011-10-12T02:28:48.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Howto' label='Howto &amp; Style'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='make'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='makezine'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='tiny'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='yellow'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='house'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='deek'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='diedricksen'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='plywood'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='woodworking'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='DIY'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='tutorial'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='howto'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='homeless'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='shelter'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='blue'/><title type='text'>One-Sheet Plywood Boat - Tiny Yellow House</title><content type='text'>For this episode of "Tiny Yellow House" for Make Magazine, host Derek "Deek" Diedricksen pulls another idea from his book Humble Homes, Simple Shacks. This time, its an easy wooden boat made from little more than one sheet of plywood. More info: wp.me</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=6V9oTSprHrs&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/6V9oTSprHrs/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/6V9oTSprHrs/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=6V9oTSprHrs'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/6V9oTSprHrs'/><author><name>makemagazine</name><uri>http://gdata.youtube.com/feeds/api/users/makemagazine</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/6V9oTSprHrs/comments' countHint='277'/></gd:comments><yt:hd/><media:group><media:category label='Howto &amp; Style' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Howto</media:category><media:content url='http://www.youtube.com/v/6V9oTSprHrs?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='482' yt:format='5'/><media:content url='rtsp://v4.cache7.c.youtube.com/CiILENy73wIaGQm7HmsqTWhf6RMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='482' yt:format='1'/><media:content url='rtsp://v4.cache1.c.youtube.com/CiILENy73wIaGQm7HmsqTWhf6RMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='482' yt:format='6'/><media:description type='plain'>For this episode of "Tiny Yellow House" for Make Magazine, host Derek "Deek" Diedricksen pulls another idea from his book Humble Homes, Simple Shacks. This time, its an easy wooden boat made from little more than one sheet of plywood. More info: wp.me</media:description><media:keywords>make, makezine, tiny, yellow, house, deek, diedricksen, plywood, boat, woodworking, DIY, tutorial, howto, homeless, shelter, blue</media:keywords><media:player url='http://www.youtube.com/watch?v=6V9oTSprHrs&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/6V9oTSprHrs/0.jpg' height='360' width='480' time='00:04:01'/><media:thumbnail url='http://i.ytimg.com/vi/6V9oTSprHrs/1.jpg' height='90' width='120' time='00:02:00.500'/><media:thumbnail url='http://i.ytimg.com/vi/6V9oTSprHrs/2.jpg' height='90' width='120' time='00:04:01'/><media:thumbnail url='http://i.ytimg.com/vi/6V9oTSprHrs/3.jpg' height='90' width='120' time='00:06:01.500'/><media:title type='plain'>One-Sheet Plywood Boat - Tiny Yellow House</media:title><yt:duration seconds='482'/></media:group><gd:rating average='4.902665' max='5' min='1' numRaters='863' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='367' viewCount='48885'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/8-hjX9V8oAQ</id><published>2011-05-17T17:49:35.000Z</published><updated>2011-10-06T22:30:31.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Autos' label='Autos &amp; Vehicles'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Yamaha boats'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='jet boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Yamaha jet boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boating magazine'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='randy vance'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='docking tips'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boating tips'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='242 Limited'/><title type='text'>Yamaha Jet Boat Maneuverability</title><content type='text'>Boating Magazine Editor Randy Vance looks at the benefits of Yamaha Jet Boats for maneuvering at slow speeds and in various docking configurations. Vance provides tips and pointers to help you drive like a pro and take advantage of Yamaha's internal propulsion drivetrain.</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=8-hjX9V8oAQ&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/8-hjX9V8oAQ/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/8-hjX9V8oAQ/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=8-hjX9V8oAQ'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/8-hjX9V8oAQ'/><author><name>yamahawatercraftusa</name><uri>http://gdata.youtube.com/feeds/api/users/yamahawatercraftusa</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/8-hjX9V8oAQ/comments' countHint='2'/></gd:comments><media:group><media:category label='Autos &amp; Vehicles' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Autos</media:category><media:content url='http://www.youtube.com/v/8-hjX9V8oAQ?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='372' yt:format='5'/><media:content url='rtsp://v1.cache5.c.youtube.com/CiILENy73wIaGQkEoHzVX2Po8xMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='372' yt:format='1'/><media:content url='rtsp://v5.cache7.c.youtube.com/CiILENy73wIaGQkEoHzVX2Po8xMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='372' yt:format='6'/><media:description type='plain'>Boating Magazine Editor Randy Vance looks at the benefits of Yamaha Jet Boats for maneuvering at slow speeds and in various docking configurations. Vance provides tips and pointers to help you drive like a pro and take advantage of Yamaha's internal propulsion drivetrain.</media:description><media:keywords>Yamaha boats, jet boat, Yamaha jet boat, boating magazine, randy vance, docking tips, boating tips, 242 Limited</media:keywords><media:player url='http://www.youtube.com/watch?v=8-hjX9V8oAQ&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/8-hjX9V8oAQ/0.jpg' height='360' width='480' time='00:03:06'/><media:thumbnail url='http://i.ytimg.com/vi/8-hjX9V8oAQ/1.jpg' height='90' width='120' time='00:01:33'/><media:thumbnail url='http://i.ytimg.com/vi/8-hjX9V8oAQ/2.jpg' height='90' width='120' time='00:03:06'/><media:thumbnail url='http://i.ytimg.com/vi/8-hjX9V8oAQ/3.jpg' height='90' width='120' time='00:04:39'/><media:title type='plain'>Yamaha Jet Boat Maneuverability</media:title><yt:duration seconds='372'/></media:group><gd:rating average='5.0' max='5' min='1' numRaters='20' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='39' viewCount='24808'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/R_jLC-H9JB8</id><published>2011-09-05T09:16:42.000Z</published><updated>2011-10-12T02:51:16.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Games' label='Gaming'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='minecraft'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='mine'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='craft'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='game'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='etho'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='let&apos;s'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='lets'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='play'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='tutorial'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='instruction'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='creeper'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='zombie'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='skeleton'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='world'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='cart'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='station'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='survival'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='dispenser'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='beta'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='epic'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='mob'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='trap'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='grinder'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='eats'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='redstone'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='red'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='stone'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='circuit'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='water'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='lava'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='elevator'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='fire'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='track'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='house'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='base'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='mining'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='digging'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='diamond'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='invention'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='mechanism'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='fun'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='notch'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='cave'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='under'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='road'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='roads'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='uwbr'/><title type='text'>Minecraft - Tutorial: Under Water Boat Roads</title><content type='text'>This tutorial demonstrates several different ways to construct roads for boats below the surface of a water body.</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=R_jLC-H9JB8&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/R_jLC-H9JB8/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/R_jLC-H9JB8/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=R_jLC-H9JB8'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/R_jLC-H9JB8'/><author><name>EthosLab</name><uri>http://gdata.youtube.com/feeds/api/users/ethoslab</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/R_jLC-H9JB8/comments' countHint='330'/></gd:comments><yt:hd/><media:group><media:category label='Gaming' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Games</media:category><media:content url='http://www.youtube.com/v/R_jLC-H9JB8?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='641' yt:format='5'/><media:content url='rtsp://v7.cache2.c.youtube.com/CiILENy73wIaGQkfJP3hC8v4RxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='641' yt:format='1'/><media:content url='rtsp://v6.cache8.c.youtube.com/CiILENy73wIaGQkfJP3hC8v4RxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='641' yt:format='6'/><media:description type='plain'>This tutorial demonstrates several different ways to construct roads for boats below the surface of a water body.</media:description><media:keywords>minecraft, mine, craft, game, etho, let's, lets, play, tutorial, instruction, creeper, zombie, skeleton, world, boat, cart, station, survival, dispenser, beta, epic, mob, trap, grinder, eats, redstone, red, stone, circuit, water, lava, elevator, fire, track, house, base, mining, digging, diamond, invention, mechanism, fun, notch, cave, under, road, roads, uwbr</media:keywords><media:player url='http://www.youtube.com/watch?v=R_jLC-H9JB8&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/R_jLC-H9JB8/0.jpg' height='360' width='480' time='00:05:20.500'/><media:thumbnail url='http://i.ytimg.com/vi/R_jLC-H9JB8/1.jpg' height='90' width='120' time='00:02:40.250'/><media:thumbnail url='http://i.ytimg.com/vi/R_jLC-H9JB8/2.jpg' height='90' width='120' time='00:05:20.500'/><media:thumbnail url='http://i.ytimg.com/vi/R_jLC-H9JB8/3.jpg' height='90' width='120' time='00:08:00.750'/><media:title type='plain'>Minecraft - Tutorial: Under Water Boat Roads</media:title><yt:duration seconds='641'/></media:group><gd:rating average='4.9280305' max='5' min='1' numRaters='1056' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='211' viewCount='59435'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/vOOrCw3WqU4</id><published>2011-08-29T19:16:25.000Z</published><updated>2011-10-12T08:01:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='People' label='People &amp; Blogs'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='courtneypants'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='unicourt'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='unicorn'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='vlogging'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='dancing'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='lonely'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='island'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='shower'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='skittles'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='magical'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='horn'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='nicki'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='minaj'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='rainbow'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='tail'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='whip'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='cupcakes'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='babies'/><title type='text'>UNICOURT ON A BOAT!!!</title><content type='text'>It's hard being a unicorn... MY FACEBOOK PAGE WHERE I SOMETIMES RESPOND TO PEOPLE: www.facebook.com MY TWITTER WHERE I SOMETIMES TELL YOU WHEN I'M POOPING: www.twitter.com MY MAIL BOX WHERE PEOPLE USED TO SEND ME THINGS: PO Box 9909 Marina Del Rey, CA 90295</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=vOOrCw3WqU4&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/vOOrCw3WqU4/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/vOOrCw3WqU4/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=vOOrCw3WqU4'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/vOOrCw3WqU4'/><author><name>courtneypants</name><uri>http://gdata.youtube.com/feeds/api/users/courtneypants</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/vOOrCw3WqU4/comments' countHint='492'/></gd:comments><yt:hd/><media:group><media:category label='People &amp; Blogs' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>People</media:category><media:content url='http://www.youtube.com/v/vOOrCw3WqU4?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='361' yt:format='5'/><media:content url='rtsp://v7.cache7.c.youtube.com/CiILENy73wIaGQlOqdYNC6vjvBMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='361' yt:format='1'/><media:content url='rtsp://v7.cache1.c.youtube.com/CiILENy73wIaGQlOqdYNC6vjvBMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='361' yt:format='6'/><media:description type='plain'>It's hard being a unicorn... MY FACEBOOK PAGE WHERE I SOMETIMES RESPOND TO PEOPLE: www.facebook.com MY TWITTER WHERE I SOMETIMES TELL YOU WHEN I'M POOPING: www.twitter.com MY MAIL BOX WHERE PEOPLE USED TO SEND ME THINGS: PO Box 9909 Marina Del Rey, CA 90295</media:description><media:keywords>courtneypants, unicourt, unicorn, vlogging, dancing, lonely, island, boat, shower, skittles, magical, horn, nicki, minaj, rainbow, tail, whip, cupcakes, babies</media:keywords><media:player url='http://www.youtube.com/watch?v=vOOrCw3WqU4&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/vOOrCw3WqU4/0.jpg' height='360' width='480' time='00:03:00.500'/><media:thumbnail url='http://i.ytimg.com/vi/vOOrCw3WqU4/1.jpg' height='90' width='120' time='00:01:30.250'/><media:thumbnail url='http://i.ytimg.com/vi/vOOrCw3WqU4/2.jpg' height='90' width='120' time='00:03:00.500'/><media:thumbnail url='http://i.ytimg.com/vi/vOOrCw3WqU4/3.jpg' height='90' width='120' time='00:04:30.750'/><media:title type='plain'>UNICOURT ON A BOAT!!!</media:title><yt:duration seconds='361'/></media:group><gd:rating average='4.906542' max='5' min='1' numRaters='1284' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='132' viewCount='25798'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/azDpMrkOVJM</id><published>2011-10-07T00:13:55.000Z</published><updated>2011-10-13T03:01:13.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Autos' label='Autos &amp; Vehicles'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Randy vance'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Sea Hunter Boats'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Boat Mart'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Boat Drop'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Drop boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='cut boat in half'/><title type='text'>SeaHunter Boat Drop-short version-H264.mov</title><content type='text'>We went down to Key Largo to torture a Sea Hunter boat. Here is what happened!</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=azDpMrkOVJM&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/azDpMrkOVJM/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/azDpMrkOVJM/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=azDpMrkOVJM'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/azDpMrkOVJM'/><author><name>TheFinReaper</name><uri>http://gdata.youtube.com/feeds/api/users/thefinreaper</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/azDpMrkOVJM/comments' countHint='11'/></gd:comments><yt:hd/><media:group><media:category label='Autos &amp; Vehicles' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Autos</media:category><media:content url='http://www.youtube.com/v/azDpMrkOVJM?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='174' yt:format='5'/><media:content url='rtsp://v1.cache7.c.youtube.com/CiILENy73wIaGQmTVA65MukwaxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='174' yt:format='1'/><media:content url='rtsp://v1.cache8.c.youtube.com/CiILENy73wIaGQmTVA65MukwaxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='174' yt:format='6'/><media:description type='plain'>We went down to Key Largo to torture a Sea Hunter boat. Here is what happened!</media:description><media:keywords>Randy vance, Sea Hunter Boats, Boat Mart, Boat Drop, Drop boat, cut boat in half</media:keywords><media:player url='http://www.youtube.com/watch?v=azDpMrkOVJM&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/azDpMrkOVJM/0.jpg' height='360' width='480' time='00:01:27'/><media:thumbnail url='http://i.ytimg.com/vi/azDpMrkOVJM/1.jpg' height='90' width='120' time='00:00:43.500'/><media:thumbnail url='http://i.ytimg.com/vi/azDpMrkOVJM/2.jpg' height='90' width='120' time='00:01:27'/><media:thumbnail url='http://i.ytimg.com/vi/azDpMrkOVJM/3.jpg' height='90' width='120' time='00:02:10.500'/><media:title type='plain'>SeaHunter Boat Drop-short version-H264.mov</media:title><yt:duration seconds='174'/></media:group><gd:rating average='4.714286' max='5' min='1' numRaters='28' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='11' viewCount='16826'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/Gy4ZdrAJsBA</id><published>2011-09-01T11:56:21.000Z</published><updated>2011-09-26T19:31:23.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Games' label='Gaming'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='example'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat party'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='xbox'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='ibiza'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='playing in the shadows'/><title type='text'>Example Surprise Performance - Ibiza Rocks the Boat Party</title><content type='text'>Example &amp; Xbox make a girl's summer by whisking her away from the pool and taking her along as he surprises a boat load full of party goers in Ibiza.</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=Gy4ZdrAJsBA&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/Gy4ZdrAJsBA/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/Gy4ZdrAJsBA/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=Gy4ZdrAJsBA'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/Gy4ZdrAJsBA'/><author><name>xboxuk</name><uri>http://gdata.youtube.com/feeds/api/users/xboxuk</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/Gy4ZdrAJsBA/comments' countHint='21'/></gd:comments><media:group><media:category label='Gaming' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Games</media:category><media:content url='http://www.youtube.com/v/Gy4ZdrAJsBA?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='178' yt:format='5'/><media:content url='rtsp://v7.cache4.c.youtube.com/CiILENy73wIaGQkQsAmwdhkuGxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='178' yt:format='1'/><media:content url='rtsp://v3.cache5.c.youtube.com/CiILENy73wIaGQkQsAmwdhkuGxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='178' yt:format='6'/><media:description type='plain'>Example &amp; Xbox make a girl's summer by whisking her away from the pool and taking her along as he surprises a boat load full of party goers in Ibiza.</media:description><media:keywords>example, boat party, xbox, ibiza, playing in the shadows</media:keywords><media:player url='http://www.youtube.com/watch?v=Gy4ZdrAJsBA&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/Gy4ZdrAJsBA/0.jpg' height='360' width='480' time='00:01:29'/><media:thumbnail url='http://i.ytimg.com/vi/Gy4ZdrAJsBA/1.jpg' height='90' width='120' time='00:00:44.500'/><media:thumbnail url='http://i.ytimg.com/vi/Gy4ZdrAJsBA/2.jpg' height='90' width='120' time='00:01:29'/><media:thumbnail url='http://i.ytimg.com/vi/Gy4ZdrAJsBA/3.jpg' height='90' width='120' time='00:02:13.500'/><media:title type='plain'>Example Surprise Performance - Ibiza Rocks the Boat Party</media:title><yt:duration seconds='178'/></media:group><gd:rating average='4.889273' max='5' min='1' numRaters='289' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='11' viewCount='71498'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/feiJgbPA81A</id><published>2011-06-14T17:02:35.000Z</published><updated>2011-10-09T02:58:05.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Entertainment' label='Entertainment'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='diagonal view'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='video'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='funny'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='lawnmower'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='invention'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='quirky'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='John Hinton'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='shortcutter'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Honda'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='lake'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='sea'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='ocean'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='sail'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='cruise'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='sailing'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='engine'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='water'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boating'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='land'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='cut'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='grass'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='wheels'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='inventor'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='odd'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='bizarre'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='sussex'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='england'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='murray'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='nutter'/><title type='text'>Lawnmower Boat</title><content type='text'>The lawnmower boat - it's the only way to travel on land or by sea while keeping your lawn well kept at the same time. Stay up-to-date with all our videos: Like us on Facebook: ow.ly Or Follow us on Twitter: ow.ly</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=feiJgbPA81A&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/feiJgbPA81A/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/feiJgbPA81A/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=feiJgbPA81A'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/feiJgbPA81A'/><author><name>diagonaluk</name><uri>http://gdata.youtube.com/feeds/api/users/diagonaluk</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/feiJgbPA81A/comments' countHint='90'/></gd:comments><media:group><media:category label='Entertainment' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Entertainment</media:category><media:content url='http://www.youtube.com/v/feiJgbPA81A?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='60' yt:format='5'/><media:content url='rtsp://v7.cache5.c.youtube.com/CiILENy73wIaGQlQ88CzgYnofRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='60' yt:format='1'/><media:content url='rtsp://v2.cache4.c.youtube.com/CiILENy73wIaGQlQ88CzgYnofRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='60' yt:format='6'/><media:description type='plain'>The lawnmower boat - it's the only way to travel on land or by sea while keeping your lawn well kept at the same time. Stay up-to-date with all our videos: Like us on Facebook: ow.ly Or Follow us on Twitter: ow.ly</media:description><media:keywords>diagonal view, video, funny, lawnmower, boat, invention, quirky, John Hinton, shortcutter, Honda, lake, sea, ocean, sail, cruise, sailing, engine, water, boating, land, cut, grass, wheels, inventor, odd, bizarre, sussex, england, murray, nutter</media:keywords><media:player url='http://www.youtube.com/watch?v=feiJgbPA81A&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/feiJgbPA81A/0.jpg' height='360' width='480' time='00:00:30'/><media:thumbnail url='http://i.ytimg.com/vi/feiJgbPA81A/1.jpg' height='90' width='120' time='00:00:15'/><media:thumbnail url='http://i.ytimg.com/vi/feiJgbPA81A/2.jpg' height='90' width='120' time='00:00:30'/><media:thumbnail url='http://i.ytimg.com/vi/feiJgbPA81A/3.jpg' height='90' width='120' time='00:00:45'/><media:title type='plain'>Lawnmower Boat</media:title><yt:duration seconds='60'/></media:group><gd:rating average='4.827586' max='5' min='1' numRaters='116' rel='http://schemas.google.com/g/2005#overall'/><yt:recorded>2011-06-14</yt:recorded><yt:statistics favoriteCount='23' viewCount='12915'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/bSXOe_DG2sg</id><published>2011-09-19T14:32:58.000Z</published><updated>2011-10-07T10:01:48.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Film' label='Film &amp; Animation'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Ringer'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Scene'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='CGI'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Sarah'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Michelle'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Gellar'/><title type='text'>Ringer Boat Scene</title><content type='text'>Whats wrong with the lightning... :-D</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=bSXOe_DG2sg&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/bSXOe_DG2sg/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/bSXOe_DG2sg/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=bSXOe_DG2sg'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/bSXOe_DG2sg'/><author><name>CypHiLL2007</name><uri>http://gdata.youtube.com/feeds/api/users/cyphill2007</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/bSXOe_DG2sg/comments' countHint='6'/></gd:comments><media:group><media:category label='Film &amp; Animation' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Film</media:category><media:content url='http://www.youtube.com/v/bSXOe_DG2sg?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='132' yt:format='5'/><media:content url='rtsp://v7.cache6.c.youtube.com/CiILENy73wIaGQnI2sbwe84lbRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='132' yt:format='1'/><media:content url='rtsp://v1.cache3.c.youtube.com/CiILENy73wIaGQnI2sbwe84lbRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='132' yt:format='6'/><media:description type='plain'>Whats wrong with the lightning... :-D</media:description><media:keywords>Ringer, Boat, Scene, CGI, Sarah, Michelle, Gellar</media:keywords><media:player url='http://www.youtube.com/watch?v=bSXOe_DG2sg&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/bSXOe_DG2sg/0.jpg' height='360' width='480' time='00:01:06'/><media:thumbnail url='http://i.ytimg.com/vi/bSXOe_DG2sg/1.jpg' height='90' width='120' time='00:00:33'/><media:thumbnail url='http://i.ytimg.com/vi/bSXOe_DG2sg/2.jpg' height='90' width='120' time='00:01:06'/><media:thumbnail url='http://i.ytimg.com/vi/bSXOe_DG2sg/3.jpg' height='90' width='120' time='00:01:39'/><media:title type='plain'>Ringer Boat Scene</media:title><yt:duration seconds='132'/></media:group><gd:rating average='5.0' max='5' min='1' numRaters='4' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='2' viewCount='3969'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/6F8N8Z_4kU4</id><published>2011-08-16T11:23:15.000Z</published><updated>2011-10-11T04:33:25.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Autos' label='Autos &amp; Vehicles'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Drag boats'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='2011'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Problem Child'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='lakefest'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='lake'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='IHBA'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='marble falls'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='marble falls texas'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='texas'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='drag-boats'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='canon'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='canon camera'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='7d'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='xf305'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='texashighdef'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='texashighdef.net'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boats'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='race'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='racing'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='motorsports'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='water motor sports'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='lucas'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='oil'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='fastest'/><title type='text'>261mph Drag Boat "Problem Child" "Lucas Oil Racing"</title><content type='text'>Problem Child in Marble Falls Texas at Lakefest 2011 Drag-boat races put on by Lucas Oil. More about them at. www.lucasoildragboats.com</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=6F8N8Z_4kU4&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/6F8N8Z_4kU4/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/6F8N8Z_4kU4/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=6F8N8Z_4kU4'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/6F8N8Z_4kU4'/><author><name>TexasHighDef</name><uri>http://gdata.youtube.com/feeds/api/users/texashighdef</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/6F8N8Z_4kU4/comments' countHint='19'/></gd:comments><yt:hd/><media:group><media:category label='Autos &amp; Vehicles' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Autos</media:category><media:content url='http://www.youtube.com/v/6F8N8Z_4kU4?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='134' yt:format='5'/><media:content url='rtsp://v1.cache2.c.youtube.com/CiILENy73wIaGQlOkfif8Q1f6BMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='134' yt:format='1'/><media:content url='rtsp://v4.cache8.c.youtube.com/CiILENy73wIaGQlOkfif8Q1f6BMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='134' yt:format='6'/><media:description type='plain'>Problem Child in Marble Falls Texas at Lakefest 2011 Drag-boat races put on by Lucas Oil. More about them at. www.lucasoildragboats.com</media:description><media:keywords>Drag boats, 2011, Problem Child, lakefest, lake, IHBA, marble falls, marble falls texas, texas, drag-boats, canon, canon camera, 7d, xf305, texashighdef, texashighdef.net, boats, boat, race, racing, motorsports, water motor sports, lucas, oil, fastest</media:keywords><media:player url='http://www.youtube.com/watch?v=6F8N8Z_4kU4&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/6F8N8Z_4kU4/0.jpg' height='360' width='480' time='00:01:07'/><media:thumbnail url='http://i.ytimg.com/vi/6F8N8Z_4kU4/1.jpg' height='90' width='120' time='00:00:33.500'/><media:thumbnail url='http://i.ytimg.com/vi/6F8N8Z_4kU4/2.jpg' height='90' width='120' time='00:01:07'/><media:thumbnail url='http://i.ytimg.com/vi/6F8N8Z_4kU4/3.jpg' height='90' width='120' time='00:01:40.500'/><media:title type='plain'>261mph Drag Boat "Problem Child" "Lucas Oil Racing"</media:title><yt:duration seconds='134'/></media:group><gd:rating average='5.0' max='5' min='1' numRaters='40' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='36' viewCount='17710'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/EMLaxZ39sgs</id><published>2011-07-15T17:23:05.000Z</published><updated>2011-10-13T23:31:21.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Entertainment' label='Entertainment'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='collegehumor'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='funny'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='comedy'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='band'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='weird'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='weird al yankovic'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='titanic'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='hollywood'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='music'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='silly'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='songs'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='accordian'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='nerd'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><title type='text'>Weird Al Yankovic On A Boat (And The Band Played On)</title><content type='text'>See more www.collegehumor.com As the ship went down, they kept spirits up. Kind of. LIKE us on www.facebook.com FOLLOW us on: www.twitter.com FOLLOW us on: www.tumblr.com</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=EMLaxZ39sgs&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/EMLaxZ39sgs/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/EMLaxZ39sgs/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=EMLaxZ39sgs'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/EMLaxZ39sgs'/><author><name>collegehumor</name><uri>http://gdata.youtube.com/feeds/api/users/collegehumor</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/EMLaxZ39sgs/comments' countHint='2242'/></gd:comments><media:group><media:category label='Entertainment' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Entertainment</media:category><media:content url='http://www.youtube.com/v/EMLaxZ39sgs?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='197' yt:format='5'/><media:content url='rtsp://v4.cache2.c.youtube.com/CiILENy73wIaGQkLsv2dxdrCEBMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='197' yt:format='1'/><media:content url='rtsp://v2.cache1.c.youtube.com/CiILENy73wIaGQkLsv2dxdrCEBMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='197' yt:format='6'/><media:description type='plain'>See more www.collegehumor.com As the ship went down, they kept spirits up. Kind of. LIKE us on www.facebook.com FOLLOW us on: www.twitter.com FOLLOW us on: www.tumblr.com</media:description><media:keywords>collegehumor, funny, comedy, band, weird, weird al yankovic, titanic, hollywood, music, silly, songs, accordian, nerd, boat</media:keywords><media:player url='http://www.youtube.com/watch?v=EMLaxZ39sgs&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/EMLaxZ39sgs/0.jpg' height='360' width='480' time='00:01:38.500'/><media:thumbnail url='http://i.ytimg.com/vi/EMLaxZ39sgs/1.jpg' height='90' width='120' time='00:00:49.250'/><media:thumbnail url='http://i.ytimg.com/vi/EMLaxZ39sgs/2.jpg' height='90' width='120' time='00:01:38.500'/><media:thumbnail url='http://i.ytimg.com/vi/EMLaxZ39sgs/3.jpg' height='90' width='120' time='00:02:27.750'/><media:title type='plain'>Weird Al Yankovic On A Boat (And The Band Played On)</media:title><yt:duration seconds='197'/></media:group><gd:rating average='4.732987' max='5' min='1' numRaters='13078' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='3618' viewCount='378220'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/hFhSLG4uUjo</id><published>2011-08-29T22:07:29.000Z</published><updated>2011-09-15T21:44:37.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='News' label='News &amp; Politics'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='business'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='reuters'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='news'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='politics'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='finance'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Latvia'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='milk'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='carton'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='race'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='dairy'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Lielupe River'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='regatta'/><title type='text'>Buoyant Latvian milk carton boat race</title><content type='text'>Aug. 29 - The ninth annual milk container boat regatta sets sail on Latvia's Lielupe River. Tara Cleary reports.</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=hFhSLG4uUjo&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/hFhSLG4uUjo/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/hFhSLG4uUjo/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=hFhSLG4uUjo'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/hFhSLG4uUjo'/><author><name>ReutersVideo</name><uri>http://gdata.youtube.com/feeds/api/users/reutersvideo</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/hFhSLG4uUjo/comments' countHint='9'/></gd:comments><media:group><media:category label='News &amp; Politics' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>News</media:category><media:content url='rtsp://v2.cache3.c.youtube.com/CiILENy73wIaGQk6Ui5uLFJYhBMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' isDefault='true' expression='full' duration='92' yt:format='1'/><media:content url='rtsp://v6.cache5.c.youtube.com/CiILENy73wIaGQk6Ui5uLFJYhBMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='92' yt:format='6'/><media:description type='plain'>Aug. 29 - The ninth annual milk container boat regatta sets sail on Latvia's Lielupe River. Tara Cleary reports.</media:description><media:keywords>business, reuters, news, politics, finance, Latvia, milk, carton, race, dairy, Lielupe River, boat, regatta</media:keywords><media:player url='http://www.youtube.com/watch?v=hFhSLG4uUjo&amp;feature=youtube_gdata_player'/><media:restriction type='country' relationship='deny'>FR</media:restriction><media:thumbnail url='http://i.ytimg.com/vi/hFhSLG4uUjo/0.jpg' height='360' width='480' time='00:00:46'/><media:thumbnail url='http://i.ytimg.com/vi/hFhSLG4uUjo/1.jpg' height='90' width='120' time='00:00:23'/><media:thumbnail url='http://i.ytimg.com/vi/hFhSLG4uUjo/2.jpg' height='90' width='120' time='00:00:46'/><media:thumbnail url='http://i.ytimg.com/vi/hFhSLG4uUjo/3.jpg' height='90' width='120' time='00:01:09'/><media:title type='plain'>Buoyant Latvian milk carton boat race</media:title><yt:duration seconds='92'/></media:group><yt:noembed/><gd:rating average='5.0' max='5' min='1' numRaters='4' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' viewCount='332'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/-aCZXo8oVi0</id><published>2011-09-29T23:47:02.000Z</published><updated>2011-10-10T16:09:47.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Travel' label='Travel &amp; Events'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Walt'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Disney'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='World'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='EPCOT'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Maelstrom'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Ride'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Complete'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Through'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='2011'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='HD'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='1080p'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='dark'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='themed'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='attraction'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='POV'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='on-ride'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='onride'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='epcot maelstrom'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='norway'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='pavilion'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='showcase'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='robb'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='alvey'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='theme'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='park'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='review'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='disneyland'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='WDW'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Epcot video'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Epcot rides'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='epcot norway ride'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='norway ride'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='norway boat ride'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='amusement'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='thrill'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='pirates'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='of'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='the'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Caribbean'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='mickey'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='mouse'/><title type='text'>Walt Disney World EPCOT Maelstrom Norway Boat Ride Complete Ride Through 2011 HD 1080p</title><content type='text'>www.themeparkreview.com - http Walt Disney World EPCOT Maelstrom Boat Ride Complete Ride Through 2011 HD 1080p</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=-aCZXo8oVi0&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/-aCZXo8oVi0/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/-aCZXo8oVi0/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=-aCZXo8oVi0'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/-aCZXo8oVi0'/><author><name>themeparkreviewTPR</name><uri>http://gdata.youtube.com/feeds/api/users/themeparkreviewtpr</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/-aCZXo8oVi0/comments' countHint='26'/></gd:comments><yt:hd/><media:group><media:category label='Travel &amp; Events' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Travel</media:category><media:content url='http://www.youtube.com/v/-aCZXo8oVi0?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='250' yt:format='5'/><media:content url='rtsp://v6.cache1.c.youtube.com/CiILENy73wIaGQktViiPXpmg-RMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='250' yt:format='1'/><media:content url='rtsp://v8.cache7.c.youtube.com/CiILENy73wIaGQktViiPXpmg-RMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='250' yt:format='6'/><media:description type='plain'>www.themeparkreview.com - http Walt Disney World EPCOT Maelstrom Boat Ride Complete Ride Through 2011 HD 1080p</media:description><media:keywords>Walt, Disney, World, EPCOT, Maelstrom, Boat, Ride, Complete, Through, 2011, HD, 1080p, dark, themed, attraction, POV, on-ride, onride, epcot maelstrom, norway, pavilion, showcase, robb, alvey, theme, park, review, disneyland, WDW, Epcot video, Epcot rides, epcot norway ride, norway ride, norway boat ride, amusement, thrill, pirates, of, the, Caribbean, mickey, mouse</media:keywords><media:player url='http://www.youtube.com/watch?v=-aCZXo8oVi0&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/-aCZXo8oVi0/0.jpg' height='360' width='480' time='00:02:05'/><media:thumbnail url='http://i.ytimg.com/vi/-aCZXo8oVi0/1.jpg' height='90' width='120' time='00:01:02.500'/><media:thumbnail url='http://i.ytimg.com/vi/-aCZXo8oVi0/2.jpg' height='90' width='120' time='00:02:05'/><media:thumbnail url='http://i.ytimg.com/vi/-aCZXo8oVi0/3.jpg' height='90' width='120' time='00:03:07.500'/><media:title type='plain'>Walt Disney World EPCOT Maelstrom Norway Boat Ride Complete Ride Through 2011 HD 1080p</media:title><yt:duration seconds='250'/></media:group><gd:rating average='5.0' max='5' min='1' numRaters='40' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='14' viewCount='2468'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/f35Wf3xvqGY</id><published>2011-08-12T10:39:40.000Z</published><updated>2011-10-14T01:48:54.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Games' label='Gaming'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='minecraft'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='gaming'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='launcher'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='tutorial'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='pistons'/><title type='text'>[Minecraft] Minimal Boat Launcher TUTORIAL</title><content type='text'>READ THIS: :To anyone who has the "2 pistons" issue, don't be scared - you still have (1) brain. The pistons stay up due to a bug with piston powering. A quick solution to the problem lies in it's orientation. East to West works flawlessly, but for some unknown god damned reason (NOTCH), the pistons don't all go up when it's oriented North to South.: This is a tutorial to create my (iClarion's) Minimal Boat Launcher. Unfortunately the audio recording with Screenflow was not working properly, so the tutorial is a silent one. Please pay close attention to the annotations. These 2 demonstration models were created in fffizzz' server MyMinecraft (68.68.201.213). Mods include WorldEdit, SuperPickAxe, and item spawning. Enjoy! Give your opinion on Reddit/Minecraft - goo.gl See the original design - goo.gl</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=f35Wf3xvqGY&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/f35Wf3xvqGY/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/f35Wf3xvqGY/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=f35Wf3xvqGY'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/f35Wf3xvqGY'/><author><name>BillyB4d4ss</name><uri>http://gdata.youtube.com/feeds/api/users/billyb4d4ss</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/f35Wf3xvqGY/comments' countHint='609'/></gd:comments><yt:hd/><media:group><media:category label='Gaming' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Games</media:category><media:content url='http://www.youtube.com/v/f35Wf3xvqGY?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='621' yt:format='5'/><media:content url='rtsp://v1.cache5.c.youtube.com/CiILENy73wIaGQlmqG98f1Z-fxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='621' yt:format='1'/><media:content url='rtsp://v4.cache5.c.youtube.com/CiILENy73wIaGQlmqG98f1Z-fxMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='621' yt:format='6'/><media:description type='plain'>READ THIS: :To anyone who has the "2 pistons" issue, don't be scared - you still have (1) brain. The pistons stay up due to a bug with piston powering. A quick solution to the problem lies in it's orientation. East to West works flawlessly, but for some unknown god damned reason (NOTCH), the pistons don't all go up when it's oriented North to South.: This is a tutorial to create my (iClarion's) Minimal Boat Launcher. Unfortunately the audio recording with Screenflow was not working properly, so the tutorial is a silent one. Please pay close attention to the annotations. These 2 demonstration models were created in fffizzz' server MyMinecraft (68.68.201.213). Mods include WorldEdit, SuperPickAxe, and item spawning. Enjoy! Give your opinion on Reddit/Minecraft - goo.gl See the original design - goo.gl</media:description><media:keywords>minecraft, gaming, boat, launcher, tutorial, pistons</media:keywords><media:player url='http://www.youtube.com/watch?v=f35Wf3xvqGY&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/f35Wf3xvqGY/0.jpg' height='360' width='480' time='00:05:10.500'/><media:thumbnail url='http://i.ytimg.com/vi/f35Wf3xvqGY/1.jpg' height='90' width='120' time='00:02:35.250'/><media:thumbnail url='http://i.ytimg.com/vi/f35Wf3xvqGY/2.jpg' height='90' width='120' time='00:05:10.500'/><media:thumbnail url='http://i.ytimg.com/vi/f35Wf3xvqGY/3.jpg' height='90' width='120' time='00:07:45.750'/><media:title type='plain'>[Minecraft] Minimal Boat Launcher TUTORIAL</media:title><yt:duration seconds='621'/></media:group><gd:rating average='4.9231906' max='5' min='1' numRaters='1354' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='1116' viewCount='264075'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/TSsiskjQ9x4</id><published>2011-08-13T23:36:57.000Z</published><updated>2011-10-04T21:45:30.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Entertainment' label='Entertainment'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Sesame'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Street'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Rock'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='the'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Nitya'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Vidyasagar'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Leela'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Elmo'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Zoe'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='science'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='technology'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='engineering'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='mathematics'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Press'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Rocco'/><title type='text'>Sesame Street: Season 42 Sneak Peek -- Rocco's Boat</title><content type='text'>A sneak peek at Sesame Street's 42nd season premiering September 26th, 2011.</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=TSsiskjQ9x4&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/TSsiskjQ9x4/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=TSsiskjQ9x4'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/TSsiskjQ9x4'/><author><name>SesameStreet</name><uri>http://gdata.youtube.com/feeds/api/users/sesamestreet</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/TSsiskjQ9x4/comments' countHint='28'/></gd:comments><yt:hd/><media:group><media:category label='Entertainment' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Entertainment</media:category><media:content url='http://www.youtube.com/v/TSsiskjQ9x4?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='138' yt:format='5'/><media:content url='rtsp://v3.cache7.c.youtube.com/CiILENy73wIaGQke99BIsiIrTRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='138' yt:format='1'/><media:content url='rtsp://v7.cache8.c.youtube.com/CiILENy73wIaGQke99BIsiIrTRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='138' yt:format='6'/><media:description type='plain'>A sneak peek at Sesame Street's 42nd season premiering September 26th, 2011.</media:description><media:keywords>Sesame, Street, Rock, the, Boat, Nitya, Vidyasagar, Leela, Elmo, Zoe, science, technology, engineering, mathematics, Press, Rocco</media:keywords><media:player url='http://www.youtube.com/watch?v=TSsiskjQ9x4&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/TSsiskjQ9x4/0.jpg' height='360' width='480' time='00:01:09'/><media:thumbnail url='http://i.ytimg.com/vi/TSsiskjQ9x4/1.jpg' height='90' width='120' time='00:00:34.500'/><media:thumbnail url='http://i.ytimg.com/vi/TSsiskjQ9x4/2.jpg' height='90' width='120' time='00:01:09'/><media:thumbnail url='http://i.ytimg.com/vi/TSsiskjQ9x4/3.jpg' height='90' width='120' time='00:01:43.500'/><media:title type='plain'>Sesame Street: Season 42 Sneak Peek -- Rocco's Boat</media:title><yt:duration seconds='138'/></media:group><gd:rating average='4.4018693' max='5' min='1' numRaters='107' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='122' viewCount='160525'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/WIX-rDyCCDg</id><published>2011-08-03T05:33:37.000Z</published><updated>2011-09-26T02:39:42.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Tech' label='Science &amp; Technology'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Genesis'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Offshore'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Brushless'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Twin'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Hull'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='RC'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Boat'/><title type='text'>Genesis Offshore Brushless Twin Hull RC Boat</title><content type='text'>At the time this video was filmed the Genesis RC Boat was priced at $192.50. Please check hobbyKing.com for actual prices as they may be subject to change. Link to Genesis RC Boat: www.hobbyking.com Linkt to HobbyKing.com Storefront hobbyking.com Specs Genesis Offshore Brushless RC Twin Hull A fiberglass hull perfectly finished and weighted as well as a powerful 100A brushless motor make this a seriously fast R/C boat. Spec. Length: 1045mm Width: 245mm Height: 115mm Weight : 2.5kg Motor: 36-74Size 2075kv Watercooled Brushless Inrunner ESC: 120A watercooled (Required) Drive system: 4mm Required. Radio System (2ch) &amp; Receiver 1 x 3kg standard size servo 120A ESC 2ea 4000mah 2S 20C Lipo or greater</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=WIX-rDyCCDg&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/WIX-rDyCCDg/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/WIX-rDyCCDg/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=WIX-rDyCCDg'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/WIX-rDyCCDg'/><author><name>HobbykingLive</name><uri>http://gdata.youtube.com/feeds/api/users/hobbykinglive</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/WIX-rDyCCDg/comments' countHint='22'/></gd:comments><yt:hd/><media:group><media:category label='Science &amp; Technology' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Tech</media:category><media:content url='http://www.youtube.com/v/WIX-rDyCCDg?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='634' yt:format='5'/><media:content url='rtsp://v8.cache8.c.youtube.com/CiILENy73wIaGQk4CII8rP6FWBMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='634' yt:format='1'/><media:content url='rtsp://v6.cache2.c.youtube.com/CiILENy73wIaGQk4CII8rP6FWBMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='634' yt:format='6'/><media:description type='plain'>At the time this video was filmed the Genesis RC Boat was priced at $192.50. Please check hobbyKing.com for actual prices as they may be subject to change. Link to Genesis RC Boat: www.hobbyking.com Linkt to HobbyKing.com Storefront hobbyking.com Specs Genesis Offshore Brushless RC Twin Hull A fiberglass hull perfectly finished and weighted as well as a powerful 100A brushless motor make this a seriously fast R/C boat. Spec. Length: 1045mm Width: 245mm Height: 115mm Weight : 2.5kg Motor: 36-74Size 2075kv Watercooled Brushless Inrunner ESC: 120A watercooled (Required) Drive system: 4mm Required. Radio System (2ch) &amp; Receiver 1 x 3kg standard size servo 120A ESC 2ea 4000mah 2S 20C Lipo or greater</media:description><media:keywords>Genesis, Offshore, Brushless, Twin, Hull, RC, Boat</media:keywords><media:player url='http://www.youtube.com/watch?v=WIX-rDyCCDg&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/WIX-rDyCCDg/0.jpg' height='360' width='480' time='00:05:17'/><media:thumbnail url='http://i.ytimg.com/vi/WIX-rDyCCDg/1.jpg' height='90' width='120' time='00:02:38.500'/><media:thumbnail url='http://i.ytimg.com/vi/WIX-rDyCCDg/2.jpg' height='90' width='120' time='00:05:17'/><media:thumbnail url='http://i.ytimg.com/vi/WIX-rDyCCDg/3.jpg' height='90' width='120' time='00:07:55.500'/><media:title type='plain'>Genesis Offshore Brushless Twin Hull RC Boat</media:title><yt:duration seconds='634'/></media:group><gd:rating average='5.0' max='5' min='1' numRaters='32' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='14' viewCount='9289'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/Ga7UL88IVh0</id><published>2011-09-28T21:21:46.000Z</published><updated>2011-10-13T16:33:44.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='Travel' label='Travel &amp; Events'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Excalibur'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Tuna'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='swordfish'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Fishing'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Newport'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Oregon'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='youtube'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Travel'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='commercial'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='longline'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='aluminum'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='captain'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='crew'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='engine'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='generator'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Coast'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Yaquina'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Head'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Lighthouse'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='whale'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='watch'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='charter'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='beachfront'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='hotel'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='motel'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='rental'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='property'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='realestate'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='getaway'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='bnb'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Beach'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Gold'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='PCH'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='101'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Pacific'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='attraction'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Rving'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='last'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='minute'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='cheap'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='vacation'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='family'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='holiday'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='package'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='best'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='scenic'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='drive'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='tour'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='road'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='trip'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='planner'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='YOLO'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='jcvdude'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='Sony'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='HDR'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='3D'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='TD10'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='AX2000'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='HD'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='nature'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='tourism'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='destination'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='review'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='videographer'/><title type='text'>Excalibur Tuna Fishing Boat Tour - Newport Oregon - YouTube Travel</title><content type='text'>Beautiful Newport harbor and a tour of the fishing boat Excalibur, wow. Imagine sailing on a 90 ft aluminum boat to Hawaii then Tahiti, Fiji, around Asia on the way to Japan and back to North America chasing fish. 25000 gallon fuel capacity is not enough to make the round trip...a 1 dollar difference per gallon of fuel if refueling fully is $25000 - the boats on this circuit do not refuel in Canada.</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=Ga7UL88IVh0&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/Ga7UL88IVh0/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/Ga7UL88IVh0/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=Ga7UL88IVh0'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/Ga7UL88IVh0'/><author><name>JCVdude</name><uri>http://gdata.youtube.com/feeds/api/users/jcvdude</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/Ga7UL88IVh0/comments' countHint='1'/></gd:comments><georss:where><gml:Point><gml:pos>44.636566162109375 -124.05345916748047</gml:pos></gml:Point></georss:where><yt:hd/><media:group><media:category label='Travel &amp; Events' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>Travel</media:category><media:content url='http://www.youtube.com/v/Ga7UL88IVh0?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='715' yt:format='5'/><media:content url='rtsp://v8.cache7.c.youtube.com/CiILENy73wIaGQkdVgjPL9SuGRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='715' yt:format='1'/><media:content url='rtsp://v3.cache5.c.youtube.com/CiILENy73wIaGQkdVgjPL9SuGRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='715' yt:format='6'/><media:description type='plain'>Beautiful Newport harbor and a tour of the fishing boat Excalibur, wow. Imagine sailing on a 90 ft aluminum boat to Hawaii then Tahiti, Fiji, around Asia on the way to Japan and back to North America chasing fish. 25000 gallon fuel capacity is not enough to make the round trip...a 1 dollar difference per gallon of fuel if refueling fully is $25000 - the boats on this circuit do not refuel in Canada.</media:description><media:keywords>Excalibur, Tuna, swordfish, Fishing, Boat, Newport, Oregon, youtube, Travel, commercial, longline, aluminum, captain, crew, engine, generator, Coast, Yaquina, Head, Lighthouse, whale, watch, charter, beachfront, hotel, motel, rental, property, realestate, getaway, bnb, Beach, Gold, PCH, 101, Pacific, attraction, Rving, last, minute, cheap, vacation, family, holiday, package, best, scenic, drive, tour, road, trip, planner, YOLO, jcvdude, Sony, HDR, 3D, TD10, AX2000, HD, nature, tourism, destination, review, videographer</media:keywords><media:player url='http://www.youtube.com/watch?v=Ga7UL88IVh0&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/Ga7UL88IVh0/0.jpg' height='360' width='480' time='00:05:57.500'/><media:thumbnail url='http://i.ytimg.com/vi/Ga7UL88IVh0/1.jpg' height='90' width='120' time='00:02:58.750'/><media:thumbnail url='http://i.ytimg.com/vi/Ga7UL88IVh0/2.jpg' height='90' width='120' time='00:05:57.500'/><media:thumbnail url='http://i.ytimg.com/vi/Ga7UL88IVh0/3.jpg' height='90' width='120' time='00:08:56.250'/><media:title type='plain'>Excalibur Tuna Fishing Boat Tour - Newport Oregon - YouTube Travel</media:title><yt:duration seconds='715'/></media:group><gd:rating average='5.0' max='5' min='1' numRaters='4' rel='http://schemas.google.com/g/2005#overall'/><yt:statistics favoriteCount='0' viewCount='124'/></entry><entry><id>http://gdata.youtube.com/feeds/api/videos/RU7N_I_M-5A</id><published>2011-06-21T18:52:05.000Z</published><updated>2011-10-12T16:20:37.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://gdata.youtube.com/schemas/2007#video'/><category scheme='http://gdata.youtube.com/schemas/2007/categories.cat' term='News' label='News &amp; Politics'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='us'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='duck'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='boat'/><category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat' term='accident'/><title type='text'>Raw Video: Moments Before Duck Boat Crash</title><content type='text'>Federal transportation officials released a video and audio recordings taken moments before a barge crashed into a tour boat. Two Hungarian students were killed in the accident last year on a busy shipping channel in Philadelphia. (June 21)</content><link rel='alternate' type='text/html' href='http://www.youtube.com/watch?v=RU7N_I_M-5A&amp;feature=youtube_gdata'/><link rel='http://gdata.youtube.com/schemas/2007#video.responses' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/RU7N_I_M-5A/responses'/><link rel='http://gdata.youtube.com/schemas/2007#video.related' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/RU7N_I_M-5A/related'/><link rel='http://gdata.youtube.com/schemas/2007#mobile' type='text/html' href='http://m.youtube.com/details?v=RU7N_I_M-5A'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/feeds/api/videos/RU7N_I_M-5A'/><author><name>AssociatedPress</name><uri>http://gdata.youtube.com/feeds/api/users/associatedpress</uri></author><gd:comments><gd:feedLink href='http://gdata.youtube.com/feeds/api/videos/RU7N_I_M-5A/comments' countHint='46'/></gd:comments><yt:location>New York, NY</yt:location><media:group><media:category label='News &amp; Politics' scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>News</media:category><media:content url='http://www.youtube.com/v/RU7N_I_M-5A?version=3&amp;f=videos&amp;app=youtube_gdata' type='application/x-shockwave-flash' medium='video' isDefault='true' expression='full' duration='87' yt:format='5'/><media:content url='rtsp://v7.cache5.c.youtube.com/CiILENy73wIaGQmQ-8yP_M1ORRMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='87' yt:format='1'/><media:content url='rtsp://v1.cache6.c.youtube.com/CiILENy73wIaGQmQ-8yP_M1ORRMYESARFEgGUgZ2aWRlb3MM/0/0/0/video.3gp' type='video/3gpp' medium='video' expression='full' duration='87' yt:format='6'/><media:description type='plain'>Federal transportation officials released a video and audio recordings taken moments before a barge crashed into a tour boat. Two Hungarian students were killed in the accident last year on a busy shipping channel in Philadelphia. (June 21)</media:description><media:keywords>us, duck, boat, accident</media:keywords><media:player url='http://www.youtube.com/watch?v=RU7N_I_M-5A&amp;feature=youtube_gdata_player'/><media:thumbnail url='http://i.ytimg.com/vi/RU7N_I_M-5A/0.jpg' height='360' width='480' time='00:00:43.500'/><media:thumbnail url='http://i.ytimg.com/vi/RU7N_I_M-5A/1.jpg' height='90' width='120' time='00:00:21.750'/><media:thumbnail url='http://i.ytimg.com/vi/RU7N_I_M-5A/2.jpg' height='90' width='120' time='00:00:43.500'/><media:thumbnail url='http://i.ytimg.com/vi/RU7N_I_M-5A/3.jpg' height='90' width='120' time='00:01:05.250'/><media:title type='plain'>Raw Video: Moments Before Duck Boat Crash</media:title><yt:duration seconds='87'/></media:group><gd:rating average='1.9302325' max='5' min='1' numRaters='43' rel='http://schemas.google.com/g/2005#overall'/><yt:recorded>2011-06-21</yt:recorded><yt:statistics favoriteCount='3' viewCount='13865'/></entry></feed>
@@ -0,0 +1,3 @@
1
+ $LOAD_PATH.unshift 'lib'
2
+ require 'youtube_search'
3
+ require 'youtube_search/version'
@@ -0,0 +1,30 @@
1
+ require 'spec_helper'
2
+
3
+ describe YoutubeSearch do
4
+ it "has a VERSION" do
5
+ YoutubeSearch::VERSION.should =~ /^[\.\da-z]+$/
6
+ end
7
+
8
+ it "can parse xml" do
9
+ # convert to array so we get a nice diff in case of errors
10
+ YoutubeSearch.parse(File.read('spec/fixtures/search_boat.xml')).first.sort.should == [
11
+ ["author",nil],
12
+ ["category", nil],
13
+ ["comments",nil],
14
+ ["content","Top YouTube Videos on tubecrunch.blogspot.com A killer whale swims right up to a boat and shows off his best sounding motor impression."],
15
+ ["group", nil],
16
+ ["id","http://gdata.youtube.com/feeds/api/videos/0b2U5r7Jwkc"],
17
+ ["link",nil],
18
+ ["published","2011-09-29T15:30:43.000Z"],
19
+ ["rating", nil],
20
+ ["statistics",nil],
21
+ ["title","Killer Whale Imitates Boat Motor"],
22
+ ["updated","2011-10-14T07:40:00.000Z"],
23
+ ["video_id", "0b2U5r7Jwkc"],
24
+ ]
25
+ end
26
+
27
+ it "can search" do
28
+ YoutubeSearch.search('boat').size.should == 25
29
+ end
30
+ end
@@ -0,0 +1,10 @@
1
+ $LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
2
+ require 'youtube_search/version'
3
+
4
+ Gem::Specification.new "youtube_search", YoutubeSearch::VERSION do |s|
5
+ s.summary = "Search youtube via this simple ruby api"
6
+ s.authors = ["Michael Grosser"]
7
+ s.email = "michael@grosser.it"
8
+ s.homepage = "http://github.com/grosser/youtube_search"
9
+ s.files = `git ls-files`.split("\n")
10
+ end
metadata ADDED
@@ -0,0 +1,77 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: youtube_search
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 0
10
+ version: 0.1.0
11
+ platform: ruby
12
+ authors:
13
+ - Michael Grosser
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-10-14 00:00:00 +02:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description:
23
+ email: michael@grosser.it
24
+ executables: []
25
+
26
+ extensions: []
27
+
28
+ extra_rdoc_files: []
29
+
30
+ files:
31
+ - .travis.yml
32
+ - Gemfile
33
+ - Gemfile.lock
34
+ - Rakefile
35
+ - Readme.md
36
+ - lib/youtube_search.rb
37
+ - lib/youtube_search/version.rb
38
+ - spec/fixtures/search_boat.xml
39
+ - spec/spec_helper.rb
40
+ - spec/youtube_search_spec.rb
41
+ - youtube_search.gemspec
42
+ has_rdoc: true
43
+ homepage: http://github.com/grosser/youtube_search
44
+ licenses: []
45
+
46
+ post_install_message:
47
+ rdoc_options: []
48
+
49
+ require_paths:
50
+ - lib
51
+ required_ruby_version: !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ hash: 3
57
+ segments:
58
+ - 0
59
+ version: "0"
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ hash: 3
66
+ segments:
67
+ - 0
68
+ version: "0"
69
+ requirements: []
70
+
71
+ rubyforge_project:
72
+ rubygems_version: 1.6.2
73
+ signing_key:
74
+ specification_version: 3
75
+ summary: Search youtube via this simple ruby api
76
+ test_files: []
77
+