- published: 13 Aug 2019
- views: 13470
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
John Vanderslice (born in Gainesville, Florida) is an American musician, songwriter, record producer, and recording engineer. He is the owner and founder of Tiny Telephone, a San Francisco Mission District analog recording studio. In 10 full-length albums, and 5 remix records and EPs, and has collaborated with renowned musicians such as The Mountain Goats, St. Vincent, and Spoon.
Vanderslice grew up in rural North Florida, before his family moved to Maryland when he was 11. In 1989, he graduated with a degree in economics from University of Maryland, where he also studied art history. Vanderslice moved to San Francisco in 1990. While supporting himself as a waiter, Vanderslice took classes at University of California, Berkeley, with the intention of becoming an English teacher. Vanderslice then spent five years as a member of the experimental band Mk Ultra, with whom he released three albums in the 1990s. The last of these, The Dream Is Over, received a 9.2 from Pitchfork Media.
How the West Was Won may refer to:
How the West Was Won is a triple live album by the English rock group Led Zeppelin, released by Atlantic Records on compact disc on 27 May 2003, and DVD-Audio on 7 October 2003. These original performances are from the band's 1972 concert tour of the United States, recorded at the L.A. Forum on 25 June 1972 and Long Beach Arena on 27 June 1972.
Guitarist Jimmy Page considers Led Zeppelin at this point to have been at their artistic peak, as is mentioned in the album's liner notes. In an interview he gave to The Times newspaper in 2010, when asked which performances from Led Zeppelin's career stand out to him now, he made reference to these gigs:
For many years, live recordings of these two shows only circulated in the form of bootlegs, and even then only certain audience recordings were available to fans and collectors (for example, Burn Like a Candle). Though several soundboard recordings of Led Zeppelin concerts were circulated amongst fans after having been stolen from Page's personal archive some time in the mid−1980s, no soundboards of the 1972 Long Beach or LA Forum shows were taken, meaning the release of How the West Was Won was the first chance fans had of hearing the soundboard versions of these concerts.
Monterrio Williams (born August 10, 1978), better known by his stage names Luni Coleone or Lunasicc, is a Garden Blocc Crip rapper who began his musical career on the streets of Sacramento, California.
He began his career under the alias of Lunasicc in 1995, appearing on his cousin X-Raided's album Xorcist. He released his solo debut, Mr. Lunasicc, in 1997 on AWOL Records, to strong reviews. A Million Words, a Million Dollars followed in 1998, to stronger reviews. Later that year Lunasicc joined forces with Killa Tay and KJ to form the supergroup, Dosia. They went on to produce one album, Waiting to Inhale, released November 3, 1998 on AWOL Records.
In 2000, he changed his name to Luni Coleone. His newest album is Global Recall, which was released January 17, 2006. Some of Coleone's most famous ballads include "All I Wanna Do", "All I Ever Wanted To Do", and "Thug Sh*t". His lyrics describe the everyday life of American inner-city youth.
Luni Coleone often collaborates with fellow West Coast artists such as: X-Raided, Mac Dre, Brotha Lynch Hung, Skandal, Skee 64 Oz., Hollow Tip, C-Bo, Killa Tay, Marvaless, and was produced by super producer Hugh Heff and Big Hollis. Although Luni Coleone is not a hyphy artist per se, he has embraced the culture and recorded hyphy songs. In 2006, he was featured on Playalitical's album Code Green on the song "The New West" alongside the legendary Spice 1, Duce Stabs, Young Droop Spoke-In-Wordz,also featured on MC Raw Thuggish ..
http://KEXP.ORG presents John Vanderslice performing live in the KEXP studio. Recorded April 22, 2019. Songs: Oral History of Silk Road 1 -EXT Will Call I'll Wait For You Host: Cheryl Waters Audio Engineers: Spencer Hartling & Kevin Suggs Cameras: Jim Beckmann, Scott Holpainen & Justin Wilmore Editor: Justin Wilmore http://kexp.org https://johnvanderslice.com
John Vanderslice is a songwriter's songwriter. His music, a beautifully finessed mix of acoustic instruments, analog drum machines and digital textures, is thoughtful, carefully crafted and affecting. He's prolific, too: Vanderslice has released an album nearly every year this decade, and his latest (Romanian Names) is his most inspired so far. Vanderslice recently played for NPR Music's Tiny Desk Series, treating fans to a stripped-down version of some songs from his new album "Romanian Names". Setlist: "Romanian Names" "Forest Knolls" "Too Much Time" "Sunken Union Boat"
John Vanderslice video for Exodus Damage off the album Pixel Revolt
“I’m a sick person,” confesses John Vanderslice. He’s not wrong. Vanderslice suffers from a terminal case of G.A.S. (Gear Acquisition Syndrome) and it’s spreading. One recording studio became two, and then two became three as Vanderslice continues to salvage and rehabilitate only the finest pieces of vintage analog recording equipment for his Tiny Telephone recording empire. See more: https://goo.gl/VoG83f Music: John Vanderslice https://johnvanderslice.bandcamp.com/ Kevin Dickerson https://kevindickerson.bandcamp.com/ Visit our site: http://www.earthquakerdevices.com Add us on facebook: http://www.facebook.com/EarthQuakerDevices Follow us on Twitter: http://twitter.com/EarthQuakerDev Follow us on Instagram: www.instagram.com/earthquakerdev
John Vanderslice is a singer, songwriter, musician, and engineer who has cultivated a devoted following among fans of American independent music with his albums that combine sharp lyrical content with a warm, analog-based sound. Check out what he found among the Amoeba racks during a recent visit to Amoeba San Francisco. Check out his picks: Jean-Luc Godard - In Praise Of Love (DVD) Peter Schreier - Bach: Mass in B Minor (LP) Deerhunter - Microcastle/Weird Era Continued (LP) http://bit.ly/2tg4OZ0 Various Artists - Paris, Je T'Aime (Paris, I Love You) (DVD) http://bit.ly/2sfRW09 Follow us on Twitter: https://twitter.com/amoebamusic Like us on Facebook: https://www.facebook.com/amoeba
From my record "Dagger Beach." Made by Jake Wachtel and feat. Jason Slota, Rob Shelton, Kelley Coyne, Ian Pellicci, Jacob Winik, Shawn Alpay, and Jimmy Thorne. Listen to John Vanderslice: Essentials Spotify: https://open.spotify.com/playlist/0YddUpcUG2qxUVLgEMDLUE?si=3SynBmNnSyCORE_Gxe6vgQ Apple Music: https://itunes.apple.com/us/playlist/john-vanderslice-essentials/pl.46919973994145ddb9bf13e4a47f07a5
Provided to YouTube by Redeye Worldwide Pale Horse · John Vanderslice Cellar Door ℗ 2004 Barsuk Records Released on: 2013-10-08 Main Artist: John Vanderslice Music Publisher: Barsuk Records Composer: John Vanderslice Auto-generated by YouTube.
Subscribe at https://patreon.com/TrueAnonPod Original release date 3/22/2023 ---------- We check back in with John Vanderslice, the subject of our limited series Keep the Dream Alive ( https://soundcloud.com/trueanonpod/sets/keep-the-dream-alive ), a year after its release. We chat about scraping by in the music industry, the Bay Area scene, and John's new record. Check out John's upcoming tour dates on his instagram: https://www.instagram.com/johnvanderslice/ The final performance of TrueAnon's Year of the Smile will be on April 15 in Austin, TX: https://www.prekindle.com/event/53167-trueanon-austin
EXPERIENCE THE BEST SHOW WITH TOM SCHARPLING EVERY TUESDAY NIGHT ON TWITCH https://thebestshow.net https://www.twitch.tv/bestshow4life SUPPORT THE BEST SHOW ON PATREON https://www.patreon.com/TheBestShow Follow on Twitter: twitter.com/bestshow4life Follow on Instagram: instagram.com/bestshow4life Follow on TikTok: tiktok.com/@bestshow4life SUBSCRIBE TO THE BEST SHOW ON YOUR PODCAST APP FOR THE COMPLETE CATALOG
The video for Trance Manual from John Vanderslice's album Pixel Revolt. Directed by Brent Chesanek
Parte de las actuaciones ofrecidas por el grupo 25 de junio de 1972 en el foro de Los Ángeles (L.A. Forum) y, dos días después, el 27, en el Long Beach Arena de California, en los Estados Unidos. Publicado en Marzo 2003 Part of the performances offered by the group on June 25, 1972 at the Los Angeles Forum (L.A. Forum) and, two days later, on the 27th, at the Long Beach Arena in California, in the United States. Published in March 2003
Some of you may remember me putting together a best of LA 77 playlist a while back: https://www.youtube.com/playlist?list=PLabmU5fNvwodhVrhfZrFtV4Z8yK2kFmsk I wanted to improve upon that by 1) putting all the songs into one video to sound like one giant concert. And 2) using the best versions of each show in order to give the best presentation of the concert possible. Here are the versions that I used: June 21st - Mike the Mike 6-21-77 (Winston Remaster) June 22nd - Second Night At The Forum (Scorpio) June 23rd - For Badgeholders Only (Dragonfly Vinyl and Scorpio) June 25th - Mike the Mike 6-25-77 (Winston Remaster) June 26th - Take The High Road (Dadgad) June 27th - Last Sunset in LA (Dadgad) Stairway had to be removed due to copyright (I would've used the version from the 23rd FYI), ...
The deluxe edition of How The West Was Won is available for the first time on vinyl including newly remastered audio supervised by Jimmy Page. Get your copy now at www.ledzeppelin.com ► Listen to Mothership https://lnk.to/StreamMothership ♪ Watch all episodes of Led Zeppelin History https://lnk.to/LedZeppelinHistoryID 🕭 Subscribe to the Led Zeppelin channel https://lnk.to/YTLedZeppelinSubID Official Led Zeppelin Playlists: ☑ Led Zeppelin - Essentials https://lnk.to/YTLedZeppelinEssentialsID 📽 The Led Zeppelin Rare Film Series https://lnk.to/LedZeppelinRareFilmID 🎚 Led Zeppelin - Alternative Mixes & Deep Cuts https://lnk.to/LedZeppelinAltMixID Stay Connected with Led Zeppelin: ♪ Website http://www.ledzeppelin.com 🎛 Facebook http://www.facebook.com/ledzeppelin 🎙 Twitter http://www....
You're listening to the remastered live version of 'Immigrant Song' from the How The West Was Won Deluxe Edition. Produced By and Remastering Supervision By Jimmy Page. More info: http://www.ledzeppelin.com/ ► Listen to Mothership https://lnk.to/StreamMothership ♪ Watch all episodes of Led Zeppelin History https://lnk.to/LedZeppelinHistoryID 🕭 Subscribe to the Led Zeppelin channel https://lnk.to/YTLedZeppelinSubID Official Led Zeppelin Playlists: ☑ Led Zeppelin - Essentials https://lnk.to/YTLedZeppelinEssentialsID 📽 The Led Zeppelin Rare Film Series https://lnk.to/LedZeppelinRareFilmID 🎚 Led Zeppelin - Alternative Mixes & Deep Cuts https://lnk.to/LedZeppelinAltMixID Stay Connected with Led Zeppelin: ♪ Website http://www.ledzeppelin.com 🎛 Facebook http://www.facebook.com/ledzeppel...
'How The West Was Won,' is available for the first time on vinyl, including newly remastered audio supervised by Jimmy Page. Get your copy now at www.ledzeppelin.com ► Listen to Mothership https://lnk.to/StreamMothership ♪ Watch all episodes of Led Zeppelin History https://lnk.to/LedZeppelinHistoryID 🕭 Subscribe to the Led Zeppelin channel https://lnk.to/YTLedZeppelinSubID Official Led Zeppelin Playlists: ☑ Led Zeppelin - Essentials https://lnk.to/YTLedZeppelinEssentialsID 📽 The Led Zeppelin Rare Film Series https://lnk.to/LedZeppelinRareFilmID 🎚 Led Zeppelin - Alternative Mixes & Deep Cuts https://lnk.to/LedZeppelinAltMixID Stay Connected with Led Zeppelin: ♪ Website http://www.ledzeppelin.com 🎛 Facebook http://www.facebook.com/ledzeppelin 🎙 Twitter http://www.twitter.com/ledzep...
Join host Pete Pardo for more Round 3 live album matchups, here we have Led Zeppelin 'How the West Was Won' vs The Kinks 'One For the Road'. #ledzeppelin #thekinks
Join host Pete Pardo and special guest host Chris Alo as they throw into the arena today two archival live albums from two of the true heavyweights of hard rock/metal- Black Sabbath 'Past Lives' vs Led Zeppelin 'How the West Was Won'. #blacksabbath #ledzeppelin
Provided to YouTube by Rhino Atlantic Heartbreaker (Live 1972) (Remaster) · Led Zeppelin How the West Was Won ℗ 2003, 2018 Atlantic Recording Corporation Engineer: Eddie Kramer Electric Guitar: Jimmy Page Producer: Jimmy Page Drums: John Bonham Remastering Engineer: John Davis Bass Guitar: John Paul Jones Unknown: Kevin Shirley Vocals: Robert Plant Writer: Jimmy Page Writer: Robert Plant Writer: John Paul Jones Writer: John Bonham Auto-generated by YouTube.
Join host Pete Pardo for another Round 4 classic live album war matchup. Led Zeppelin 'How the West Was Won' vs Thin Lizzy 'Live and Dangerous'. #ledzeppelin #thinlizzy
Rock and Roll 2003 0:00 2018 0:51
John Vanderslice (born in Gainesville, Florida) is an American musician, songwriter, record producer, and recording engineer. He is the owner and founder of Tiny Telephone, a San Francisco Mission District analog recording studio. In 10 full-length albums, and 5 remix records and EPs, and has collaborated with renowned musicians such as The Mountain Goats, St. Vincent, and Spoon.
Vanderslice grew up in rural North Florida, before his family moved to Maryland when he was 11. In 1989, he graduated with a degree in economics from University of Maryland, where he also studied art history. Vanderslice moved to San Francisco in 1990. While supporting himself as a waiter, Vanderslice took classes at University of California, Berkeley, with the intention of becoming an English teacher. Vanderslice then spent five years as a member of the experimental band Mk Ultra, with whom he released three albums in the 1990s. The last of these, The Dream Is Over, received a 9.2 from Pitchfork Media.
All my life I've always been a dreamer
Always reaching out to find a better way
They built the walls, meaning to protect me
Never knowing that they built a prison cell
Time won't wait for me
It's over, can't you see?
Set me free - this can't go oh forever
Set me free - to find a better way
Set me free - to taste the life I know
That's waiting there for me... Set me free
It's a mystery and no one knows the answer
Am I wrong to think there's more than this for me?
They'd have us hide behind a stained glass curtain
Kneel us down and teach us bow to pray
Time won't wait for me
It's over, can't you see?
Set me free - this can't go on forever
Set me free - to find a better way
Set me free - to taste the life I know
That's waiting there for me... Set me free
All my life I've been a dreamer
Am I wrong to think there's more than this for me?
Time won't wait for me
It's killing me, can't you see?
Set me free - this can't go on forever
Set me free - to find a better way
Set me free - to taste the life i know