- published: 21 Jul 2017
- views: 24626201
'+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; })); }); -->
Joseph "Joe" Satriani (born July 15, 1956) is an American instrumental rock guitarist and multi-instrumentalist. Early in his career, Satriani worked as a guitar instructor, with many of his former students achieving fame, such as Steve Vai, Larry LaLonde, Rick Hunolt, Kirk Hammett, Andy Timmons, Charlie Hunter, Kevin Cadogan, and Alex Skolnick; he then went on to have a successful solo music career. He is a 15-time Grammy Award nominee and has sold over 10 million albums, making him the biggest-selling instrumental rock guitarist of all time.
In 1988, Satriani was recruited by Mick Jagger as lead guitarist for his first solo tour. Satriani briefly toured with Deep Purple as the lead guitarist, joining shortly after the departure of Ritchie Blackmore in November 1993. He has worked with a range of guitarists during the G3 tour, which he founded in 1995. His G3 collaborators have included Vai, LaLonde, Timmons, Steve Lukather, John Petrucci, Eric Johnson, Yngwie Malmsteen, Brian May, Patrick Rondat, Paul Gilbert, Adrian Legg, Kenny Wayne Shepherd, Steve Morse and Robert Fripp. Satriani has been the guitarist for the supergroup Chickenfoot since joining the band in 2008.
Joe Satriani is the self-titled sixth studio album by guitarist Joe Satriani, released in October 1995 through Relativity Records. The album reached No. 51 on the U.S. Billboard 200 and remained on that chart for seven weeks, as well as reaching the top 100 in four other countries. "(You're) My World" was released as a single, reaching No. 30 on Billboard's Mainstream Rock chart and receiving a nomination for Best Rock Instrumental Performance at the 1997 Grammy Awards; this being Satriani's seventh such nomination.
The album is a slight departure from Satriani's previous instrumental rock stylings, instead showcasing a more laid back, blues-laden sound with less reliance on effects and overdubs. Recorded in the space of a few weeks, Satriani also relinquished his usual production duties to Glyn Johns (of Led Zeppelin, The Who and The Rolling Stones fame). "S.M.F." stands for "Sick Mother Fucker".
Joe Satriani has been reissued twice. The first was on June 16, 2008 as part of the Original Album Classics box set, and most recently as part of The Complete Studio Recordings, released on April 22, 2014 through Legacy Recordings; this is a box set compilation containing remastered editions of every Satriani studio album from 1986 to 2013.
Joe Satriani is a self-titled EP by guitarist Joe Satriani, released in 1984. Originally self-released in a limited run on vinyl only, the majority of the EP was later reissued on the first disc of Satriani's 1993 studio album, Time Machine, with the exception of "Talk to Me", which was not included due its master tape having been damaged.
The EP is notable for only using sounds made by an electric guitar, from tapping on the pickups for drums, to detuning the guitar for bass. The album was recorded in Jeff Holt's basement studio while Satriani was a guitar teacher in Berkeley, California and a member of a band called The Squares. The EP was reviewed by Guitar Player magazine which had no knowledge that Satriani was ever in a typical band. The review, which treated Satriani as a purely instrumental guitarist, inspired him to pursue instrumental guitar playing as a career. However, the EP was not sufficient to secure a recording contract. Satriani used a credit card to finance his first full album, Not of This Earth, and used that finished album to secure a distribution contract with Relativity Records.
DJ Logic (born 1972 as Jason Kibler) is an American turntablist active primarily in nu-jazz/acid jazz and with jam bands.
Kibler was born and raised in The Bronx. An early interest in hip hop led to his using the turntables, practicing often. Kibler was also interested in funk and jazz music, and began collaborating with various musicians. His own recordings are perhaps best described as contemporary soul jazz with a strong hip hop feel.
Kibler tours often with his own group, Project Logic, and has recorded or performed with Vernon Reid, moe., John Mayer, Medeski Martin & Wood, Bob Belden, Jack Johnson, Chris Whitley, Uri Caine, Christian McBride and others. On April 6, 2006, Kibler sat in with Bob Weir's Ratdog, adding his style to the famous Grateful Dead song combo "China Cat Sunflower/I Know You Rider". He is a founding member of The John Popper Project. On August 15, 2009, Kibler sat in with O.A.R. at Madison Square Garden, adding his style to their latest single "This Town".
"Made of Tears" by Joe Satriani Listen to Joe Satriani: https://joesatriani.lnk.to/Shapeshifting/ Subscribe to the official Joe Satriani YouTube channel: https://JoeSatriani.lnk.to/subscribeYD Watch more Joe Satriani videos: https://JoeSatriani.lnk.to/listenYC/youtube Follow Joe Satriani: Facebook: https://JoeSatriani.lnk.to/followFI Instagram: https://JoeSatriani.lnk.to/followII Twitter: https://JoeSatriani.lnk.to/followTI Website: https://JoeSatriani.lnk.to/followWI Spotify: https://JoeSatriani.lnk.to/followSI YouTube: https://JoeSatriani.lnk.to/subscribeYD #JoeSatriani #MadeofTears #SatrianiLIVE
"Always with Me, Always with You" by Joe Satriani Listen to Joe Satriani: https://joesatriani.lnk.to/Shapeshifting/ Subscribe to the official Joe Satriani YouTube channel: https://JoeSatriani.lnk.to/subscribeYD Watch more Joe Satriani videos: https://JoeSatriani.lnk.to/listenYC/youtube Follow Joe Satriani: Facebook: https://JoeSatriani.lnk.to/followFI Instagram: https://JoeSatriani.lnk.to/followII Twitter: https://JoeSatriani.lnk.to/followTI Website: https://JoeSatriani.lnk.to/followWI Spotify: https://JoeSatriani.lnk.to/followSI YouTube: https://JoeSatriani.lnk.to/subscribeYD #JoeSatriani #AlwaysWithMeAlwaysWithYou #SatrianiLIVE
"Always with Me, Always with You" by Joe Satriani Listen to Joe Satriani: https://joesatriani.lnk.to/Shapeshifting/ Subscribe to the official Joe Satriani YouTube channel: https://JoeSatriani.lnk.to/subscribeYD Watch more Joe Satriani videos: https://JoeSatriani.lnk.to/listenYC/youtube Follow Joe Satriani: Facebook: https://JoeSatriani.lnk.to/followFI Instagram: https://JoeSatriani.lnk.to/followII Twitter: https://JoeSatriani.lnk.to/followTI Website: https://JoeSatriani.lnk.to/followWI Spotify: https://JoeSatriani.lnk.to/followSI YouTube: https://JoeSatriani.lnk.to/subscribeYD #JoeSatriani #AlwaysWithMeAlwaysWithYou #OfficialMusicVideo
New single Out Now: https://satchvai.lnk.to/TSOEID Joe Satriani and Steve Vai (Satch & Vai) collaborate for the first time on new music with this single and video that recalls the beginning of their 50 year-long friendship. Result: a whole lot of awesomeness and a trip back to the 70's (courtesy of director Z.Z. Satriani)! A special thank you from Joe Satriani himself - I want to take a moment to thank the extremely talented actors that make this video so much fun to watch: Jackson Goldberg (IG: @jackson_gberg_), Phyllis Wattis (IG: @_dr.phyl_), AaronGallagher (IG: @theinfamousgallagher), Gabe Ruimy (IG: @cornyshaun), Greg Foeller (IG: @gregadeth), Robert Fronzo (IG: @idahoband), Meg Wexler (IG: @meg.wexler), Oston Jemba (IG: @ostonjemba), Anzalone Atelier (IG: @anzalone_atelier), An...
Joe Satriani Greatest Hits Playlist 2021 - Joe Satriani Best Guitar Songs Collection Of All Time Joe Satriani Greatest Hits Playlist 2021 - Joe Satriani Best Guitar Songs Collection Of All Time Joe Satriani Greatest Hits Playlist 2021 - Joe Satriani Best Guitar Songs Collection Of All Time https://youtu.be/PBZEkKCemq4 Welcome To Guitar Music, A Music Channel Dedicated To Bringing You The Best Of The Best Music Tracks!! ------------ Thanks For Watching! Don't Forget To SUBCRIBE, LIKE & SHARE My Video If You Enjoy It! Have A Nice Day! © Follow Guitar Music 🚫 If you have any problem with copyright issues, please CONTACT US DIRECTLY before doing anything, or question please write to me in email
Music video by Joe Satriani performing Flying In a Blue Dream. (C) 2006 SONY BMG MUSIC ENTERTAINMENT http://vevo.ly/xHvnXt
Music video by Joe Satriani performing Surfing with the Alien. (C) 2006 SONY BMG MUSIC ENTERTAINMENT http://vevo.ly/B9mCle
Music video by Joe Satriani performing Ten Words. (C) 2006 Epic Records, a division of Sony Music Entertainment http://vevo.ly/Evmyk1
#SkullMonkeys #DiddyKongRacing #KenLobb In this week’s episode of The Electric Playground—our second episode ever—Victor Lucas travels to Nintendo of America in Redmond Washington to chat with game industry luminary, Ken Lobb about the eternally delightful Diddy Kong Racing for the Nintendo 64! Then Tommy Tallarico visits with Dreamworks Interactive in Los Angeles, California to chat (and break things) with Patrick Gilmore, Producer, and Sunil Thankamushy, Animator, of The Lost World: Jurassic Park for PlayStation and SEGA Saturn. After that Kelly Benson heads to a bustling arcade to catch up with guitar gods, Steve Vai and Joe Santriani, and asks about their work in video games! After the break, Tommy makes a mess visiting Doug TenNapel and the Neverhood to discuss the production of ...
AWESOME! First show of the Satch/Vai tour, incredible show, as always, from these guys! Live at the Hard Rock Live, Orlando,Florida 3/22/2024 #SatchVai #EnterSandman #JoeSatriani #SteveVai
𝐅𝐨𝐥𝐥𝐨𝐰 𝐌𝐞 𝐎𝐧 𝐈𝐧𝐬𝐭𝐚𝐠𝐫𝐚𝐦🤘 https://www.instagram.com/united.by.rock/
𝐅𝐨𝐥𝐥𝐨𝐰 𝐌𝐞 𝐎𝐧 𝐈𝐧𝐬𝐭𝐚𝐠𝐫𝐚𝐦🤘 https://www.instagram.com/united.by.rock/
Flying in a Blue Dream is the third studio album by guitarist Joe Satriani, released on October 30, 1989 through Relativity Records. It is one of Satriani's most popular albums and his second highest-charting release to date. Tracklist: 1. Flying in a Blue Dream (0:00) 2. Mystical Potato Head Groove Thing (5:23) 3. Can't Slow Down (10:32) 4. Headless (15:21) 5. Strange (16:51) 6. I Believe (21:54) 7. One Big Rush (27:46) 8. Big Bad Moon (31:12) 9. The Feeling (36:27) 10. The Phone Call (37:18) 11. Day at the Beach (New Rays from an Ancient Sun) (40:19) 12. Back to Shalla-Bal (42:23) 13. Ride (45:37) 14. The Forgotten (Part 1) (50:34) 15. The Forgotten (Part 2) (51:46) 16. The Bells of Lal (Part 1) (56:54) 17. The Bells of Lal (Part 2) (58:14) 18. Into the Light (1:02:20) All rights reser...
Joe Satriani Greatest Hits Playlist 2021 - Joe Satriani Best Guitar Songs Collection Of All Time Joe Satriani Greatest Hits Playlist 2021 - Joe Satriani Best Guitar Songs Collection Of All Time Joe Satriani Greatest Hits Playlist 2021 - Joe Satriani Best Guitar Songs Collection Of All Time https://youtu.be/PBZEkKCemq4 Welcome To Guitar Music, A Music Channel Dedicated To Bringing You The Best Of The Best Music Tracks!! ------------ Thanks For Watching! Don't Forget To SUBCRIBE, LIKE & SHARE My Video If You Enjoy It! Have A Nice Day! © Follow Guitar Music 🚫 If you have any problem with copyright issues, please CONTACT US DIRECTLY before doing anything, or question please write to me in email
thanks to Tony Borisov for the tracklist Joe Satriani is the self-titled sixth studio album by guitarist Joe Satriani, released in October 1995 1. "Cool #9" 6:00 2."If" 4:49 3."Down, Down, Down" 6:13 4. "Luminous Flesh Giants" 5:55 5. "S.M.F." 6:43 6. "Look My Way" 4:01 7. "Home" 3:27 8. "Moroccan Sunset" 4:23 9. "Killer Bee Bop" 3:48 10. "Slow Down Blues" 7:25 11. "(You're) My World" 3:56 12. "Sittin' 'Round" 3:38
The Elephants of Mars is the eighteenth studio album by guitarist Joe Satriani, released on April 8, 2022. Tracklist: 1. Sahara (0:00) 2. The Elephants of Mars (4:36) 3. Faceless (9:57) 4. Blue Foot Groovy (14:46) 5. Tension and Release (19:55) 6. Sailing the Seas of Ganymede (25:45) 7. Doors of Perception (31:44) 8. E 104th St NYC 1973 (35:01) 9. Pumpin' (40:37) 10. Dance of the Spores (44:00) 11. Night Scene (50:20) 12. Through a Mother's Day Darkly (54:53) 13. 22 Memory Lane (59:06) 14. Desolation (1:03:18)
Crystal Planet is the seventh studio album by guitarist Joe Satriani, released on March 3, 1998 through Epic Records, notably featuring Satriani's first recorded use of a seven-string guitar, namely the Ibanez Universe. I've included an alternate version of "ZZ's Song" for anyone who is interested in hearing it. Tracklist: 1. Up In The Sky (0:00) 2. House Full Of Bullets (4:10) 3. Crystal Planet (9:43) 4. Love Thing (14:18) 5. Trundrumbalind (18:08) 6. Lights Of Heaven (23:22) 7. Raspberry Jam Delta-V (27:46) 8. Ceremony (33:08) 9. With Jupiter In Mind (38:01) 10. Secret Prayer (43:48) 11. A Train Of Angels (48:16) 12. A Piece Of Liquid (51:58) 13. Psycho Monkey (55:02) 14. Time (59:39) 15. ZZ's Song (1:04:44) 16. ZZ's Song (Alternate) (1:07:45) All rights reserved to the owners, I'm jus...
Tracklist by rashesthippo, thanks :D 00:00 - 03:53 - Oriental Melody 03:55 - 08:55 - Belly Dancer 08:55 - 12:48 - Starry Night 12:48 - 17:00 - Chords Of Life 17:00 - 21:10 - Mind Storm 21:10 - 23:55 - Sleep Walk 23:55 - 28:08 - New Last Jam 28:10 - 31:40 - Mountain Song 31:40 - 36:57 - What Breaks A Heart 36:57 - 40:58 - Seven String 40:58 - 45:06 - Hill Groove 45:06 - 49:13 - The Journey 49:15 - 54:52 - The Traveler 54:52 - 59:55 - You Saved My Life
Shockwave Supernova is the fifteenth studio album by guitarist Joe Satriani, released on July 24, 2015 through Sony Music Entertainment. It features bassist Bryan Beller and drummer Marco Minnemann of The Aristocrats, as well as progressive rock multi-instrumentalist Mike Keneally. Tracklist: 1. Shockwave Supernova (0:00) 2. Lost in a Memory (3:50) 3. Crazy Joey (8:03) 4. In My Pocket (11:40) 5. On Peregrine Wings (15:53) 6. Cataclysmic (21:16) 7. San Francisco Blue (26:19) 8. Keep on Movin' (29:39) 9. All of My Life (34:02) 10. A Phase I'm Going Through (38:05) 11. Scarborough Stomp (42:05) 12. Butterfly and Zebra (46:05) 13. If There Is No Heaven (1:47) 14. Stars Race Across the Sky (53:00) 15. Goodbye Supernova (57:46)
JoeSatriani Greatest Hits Playlist 2021 || JoeSatriani Best Guitar Songs Collection Of All Time JoeSatriani Greatest Hits Playlist 2021 || JoeSatriani Best Guitar Songs Collection Of All Time JoeSatriani Greatest Hits Playlist 2021 || JoeSatriani Best Guitar Songs Collection Of All Time https://youtu.be/eAHrwvUnxrs Welcome To Guitar Music, A Music Channel Dedicated To Bringing You The Best Of The Best Music Tracks!! ------------ Thanks For Watching! Don't Forget To SUBCRIBE, LIKE & SHARE My Video If You Enjoy It! Have A Nice Day! © Follow Guitar Music 🚫 If you have any problem with copyright issues, please CONTACT US DIRECTLY before doing anything, or question please write to me in email
Joseph "Joe" Satriani (born July 15, 1956) is an American instrumental rock guitarist and multi-instrumentalist. Early in his career, Satriani worked as a guitar instructor, with many of his former students achieving fame, such as Steve Vai, Larry LaLonde, Rick Hunolt, Kirk Hammett, Andy Timmons, Charlie Hunter, Kevin Cadogan, and Alex Skolnick; he then went on to have a successful solo music career. He is a 15-time Grammy Award nominee and has sold over 10 million albums, making him the biggest-selling instrumental rock guitarist of all time.
In 1988, Satriani was recruited by Mick Jagger as lead guitarist for his first solo tour. Satriani briefly toured with Deep Purple as the lead guitarist, joining shortly after the departure of Ritchie Blackmore in November 1993. He has worked with a range of guitarists during the G3 tour, which he founded in 1995. His G3 collaborators have included Vai, LaLonde, Timmons, Steve Lukather, John Petrucci, Eric Johnson, Yngwie Malmsteen, Brian May, Patrick Rondat, Paul Gilbert, Adrian Legg, Kenny Wayne Shepherd, Steve Morse and Robert Fripp. Satriani has been the guitarist for the supergroup Chickenfoot since joining the band in 2008.
[Gimme that phone!]
I got to talk to you, baby, set the record straight.
'Cause this relationship is goin' from love to hate.
You're always trying to make me do things that're really dumb,
And we're always disagreein' on how to have fun.
CHORUS:
And you know I don't want what you want,
I want what I want.
Well, you look like a yuppie, and that's too bad.
Yeah, it used to be funny, but now it's sad.
And your friends are all stupid and they talk too much,
And I'd feel a lot better staying out of touch.
CHORUS
You can say goodbye to me, honey.
You can say goodbye to my money.
Well, I'm sittin' here callin' from Tennessee,
And I've been jammin' with my buddies like I ought to be.
And it feels real good bein' on my own,
And I don't mind leaving you dry as bone.
CHORUS
Well, it's all over, it's just too late.
And I'm so glad we're living in different states.
You know I said it all before like I knew I should,
But you got nothing in your head but a block of wood.
CHORUS
@SONG Ride
I know some people like to take life easy,
That's not my style.
I'm not the type to let this life tease me,
I'm gonna make it wild.
I just wanna ride,
Get on my bike and ride.
Some people think you've got to like your life one way,
I disagree.
I'm not gonna pay attention to them anyway,
It's got nothing, nothing to do with me.
Life is so short, we've got
No time to waste at all.
CHORUS:
I just wanna ride,
Get on my bike and ride.
I just wanna ride,
Get on my bike and ride.
I see the road, as it opens up before me,
I feel the heat.
I'm gonna go where I want, when I want to.
I've got to be free.
CHORUS
Feels so right...
Feels so right...