- published: 27 Jan 2019
- views: 5621
'+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; })); }); -->
Xanadu may refer to:
Xanadu (ザナドゥ, Zanadu), also known as Xanadu: Dragon Slayer II, is an action role-playing game developed by Nihon Falcom and released in 1985 for the PC-8801, X1, PC-8001, PC-9801, FM-7 and MSX computers. Enhanced remakes were later released for the Sega Saturn, PC-9801 and Windows platforms. It is the second in the Dragon Slayer series, preceded by Dragon Slayer and followed by Dragon Slayer Jr: Romancia, which, as most games in the Dragon Slayer series, have very little relation with each other.
Xanadu is notable for several reasons, including its sales record for computer games in Japan with over 400,000 copies sold there in 1985. It was also one of the foundations of the RPG genre, particularly the action RPG subgenre, featuring real-time action combat combined with full-fledged character statistics, innovative gameplay systems such as the Karma meter and individual experience for equipped items, and platform game elements combined with the dungeon crawl gameplay of its predecessor. It also had towns to explore and introduced equipment that change the player character's visible appearance, food that is consumed slowly over time and essential for keeping the player character alive, and magic used to attack enemies from a distance. The following year saw the release of Xanadu Scenario II, an early example of an expansion pack.
Xanadu is a 1980 American romantic musical fantasy film written by Richard Christian Danus and Marc Reid Rubel and directed by Robert Greenwald. The title is a reference to the nightclub in the film, which takes its name from Xanadu, the summer capital of Kublai Khan's Yuan Dynasty in China. This city appears in Kubla Khan by Samuel Taylor Coleridge, a poem that is quoted in the film. The film's plot was inspired by 1947's Down to Earth.
Xanadu stars Olivia Newton-John, Michael Beck, and Gene Kelly, and features music by Newton-John, Electric Light Orchestra, Cliff Richard, and The Tubes. The film also features animation by Don Bluth.
A box office flop, Xanadu earned mixed to negative critical reviews and was an inspiration for the creation of the Golden Raspberry Awards to memorialize the worst films of the year. Despite the lacklustre performance of the film, the soundtrack album became a huge commercial success around the world, and was certified double platinum in the United States. The song "Magic" was a U.S. number one hit for Newton-John, and the title track (by Newton-John and ELO) reached number one in the UK and several other countries around the world.
We take a walk back through time to the origins of the Action RPG genre, from Druaga to Dragon Slayer and beyond!
Evolution of all Xanadu games from 1985-2017! Xanadu (ザナドゥ? Zanadu), also known as Xanadu: Dragon Slayer II, is an action role-playing game developed by Nihon Falcom and released in 1985 for the PC-8801, X1, PC-8001, PC-9801, FM-7 and MSX computers. Enhanced remakes were later released for the Sega Saturn, PC-9801 and Windows platforms. It is the second in the Dragon Slayer series, preceded by Dragon Slayer and followed by Dragon Slayer Jr: Romancia, which, as most games in the Dragon Slayer series, have very little relation with each other. Xanadu is notable for several reasons, including its sales record for computer games in Japan with over 400,000 copies sold there in 1985. It was also one of the foundations of the RPG genre, particularly the action RPG subgenre, featuring real-time...
In this episode of PC-88 Paradise I finally play one of the biggest and most important Japanese PC games of the '80s. Falcom's classic , "Xanadu". The game is known to be extremely difficult, and I've never been able to get very far in the game. Will I ever be able to obtain the Dragonslayer and use it to slay the King Dragon??? Thanks to @bowloflentils for bringing my attention to THIS video, which I used clips from. https://www.nicovideo.jp/watch/sm9068920 Follow us on Twitter, Instagram, Facebook, and Patreon! https://basementbrothers.net/ https://twitter.com/basemntbrothers https://www.instagram.com/basementbrothers/ https://www.facebook.com/basementbrothersyoutube/ https://www.patreon.com/basementbrothersmrjakes Become a member to get access to perks: https://www.youtube.com/chann...
Taking an in depth look at a fantastic JRPG from Falcom, The Legend of Xanadu for the PC Engine CD. This classic shares a lot in common with the Ys series, and is yet another amazing game that was only released in Japan. Note: this video was originally published as part of a collaboration on the Happy Console Gamer channel which can be found here, https://www.youtube.com/watch?v=2F20F4dx8k0 Check out KidShoryuken on these other sites: KS on Patreon – https://www.patreon.com/KidShoryuken KS on Instagram – https://www.instagram.com/KidShoryuken KS on Twitter – https://twitter.com/KidShoryuken KS on Facebook – https://www.facebook.com/KidShoryuken KidShoryuken merch at: https://kidshoryuken.myspreadshop.com Editing by DenDensetsu: https://www.youtube.com/c/DenDensetsu KidShoryuken logos...
Please watch in Fullscreen! The NEC PC-88's high resolution modes had scanlines that appear terribly distorted when forced to a lower resolution.
A lost soul finds his way to an island covered in fog, searching for a sword of legend and redemption in a blend of western and eastern action RPG design styles by Falcom. We're uncovering the secrets of Castle Strangerock in this Xanadu Next Review. ■► Want to play the game and support the channel? Buy the game with an affiliate link: https://www.humblebundle.com/store/xanadu-next?partner=aboveup 💚 Support the Channel 💙 ► Patreon: https://www.patreon.com/Aboveup ► Humble Affiliate Link: https://www.humblebundle.com/?partner=aboveup ► Green Man Gaming Affiliate Link: http://www.anrdoezrs.net/click-8849020-10912384 📙 📗 Links 📘 📙 📘 Review playlist: https://www.youtube.com/playlist?list... 📗 Beyond Dead playlist: https://www.youtube.com/playlist?list... 📘 Ys Reviews: https://www.yo...
In this episode of PC-88 Paradise, I play the 1986 expansion pack for the original Xanadu: "Xanadu Scenario II"! This was Falcom's first game expansion pack, and is also notable for being the very first game that game music legend Yuzo Koshiro ever composed music for! Can I clear this one too? Better watch the video to find out! Follow us on X, Instagram, Facebook, and Patreon! https://basementbrothers.net/ https://twitter.com/basemntbrothers https://www.instagram.com/basementbrothers/ https://www.facebook.com/basementbrothersyoutube/ https://www.patreon.com/basementbrothersmrjakes Become a member to get access to perks: https://www.youtube.com/channel/UC802ToE2k2VA2TgaOPQlwkg/join 00:00 intro 02:17 Packaging 04:17 userdisk & character creation 05:16 Scenario II!!! 09:17 making money ...
This is the first dungeon area after the tutorial. Played at 1080p with max settings on a GTX 1080 card. There is occasional stuttering during camera pans, unrelated to framerate performance - most often seen when entering a new room.
Streamed Live at: https://twitch.tv/vgbootcamp https://www.start.gg/tournament/the-grind-fridays-274/events Xanadu Games At Laurel Park 198 Laurel Race Track Rd. Laurel, MD 20725 We have 4 weekly Tournaments: Smash Ultimate Tuesdays: http://smash.gg/saxu Melee Wednesdays: http://smash.gg/saxm Fighting Game Thursdays: http://smash.gg/faxfgc The Grind Fridays: http://Smash.gg/thegrind ► Xanadu on Twitter: http://www.twitter.com/xanadugames ► Xanadu on Facebook: http://www.facebook.com/xanadugames #ssbu #smashultimate #supersmashbrosultimate
It seems like a decent action RPG, but the difficulty is quite unforgiving , from The little I played.
Xanadu - I'm Alive: The Muses in the mural come to life. BUY THE MOVIE: https://www.fandangonow.com/details/movie/xanadu-1980/1MVaad0dc6bc51388fb1c6ea2befcfd3963?cmp=Movieclips_YT_Description Watch the best Xanadu scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqrwwpAmY7lPP5KdatVHgkKi FILM DESCRIPTION: Struggling artist Sonny Malone (Michael Beck) is trapped in a dull job painting album covers. He is instantly attracted to Kira (Olivia Newton-John), an anonymous woman randomly photographed in the background of one of his assignments, but no one is able to identify her. Visiting the auditorium where the cover was shot, Sonny finds the mysterious beauty, an ageless Greek muse, who encourages him to team up with old-fashioned Danny McGuire (Gene Kelly) to build a roller-ska...
"A place where nobody dared to go... The love that we came to know... They call it Xanadu!" Watch Olivia Newton-John perform E.L.O.'s "Xanadu" along with Gene Kelly in the eponymous 1980 cult classic. We know the title of this video is confusing but we couldn't fit in the fact that while Gene Kelly's character owns and operates the '80s/'40s hybrid roller disco, Olivia Newton-John's character is the daughter of Zeus and a *literal* Greek muse. And we just really needed you to know that. Buy/Rent Xanadu! Amazon: https://www.amazon.com/Xanadu-Olivia-Newton-John/dp/B002KE8WTA iTunes: https://itunes.apple.com/us/movie/xanadu/id282480162 YouTube Movies: https://www.youtube.com/watch?v=4nMhgO0bbOc Google Play: https://play.google.com/store/movies/details/Xanadu?id=4nMhgO0bbOc Fandango Now: http...
Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Like us on FACEBOOK: http://goo.gl/dHs73 Follow us on TWITTER: http://bit.ly/1ghOWmt Xanadu Trailer - Directed by Robert Greenwald and starring Gene Kelly, Michael Beck, James Sloyan, Fred McCarren, Marty Davis. The Greek muses incarnate themselves on Earth to inspire men to achieve. One of them, incarnated as a girl named Kira, encounters an artist named Sonny Malone. With the help of Danny McGuire, a man Kira had inspired forty years earlier, Sonny builds a huge disco roller rink. Universal - 1980
Danny McGuire (Gene Kelly) runs through a "franchised glitz dealer" store with Sonny Malone (Michael Beck), and Kira (Olivia Newton-John) while trying on an array of different outfits to the tune of ELO's "All Over the World". Check out this fun scene from the 1980 musical fantasy Xanadu! iTunes: https://itunes.apple.com/us/movie/xanadu/id282480162 Amazon: https://www.amazon.com/Xanadu-Olivia-Newton-John/dp/B002KE8WTA YouTube Movies: https://www.youtube.com/watch?v=4nMhgO0bbOc Google Play: https://play.google.com/store/movies/details/Xanadu?id=4nMhgO0bbOc VUDU: https://www.vudu.com/content/movies/details/Xanadu/4962 Universal Pictures Home Entertainment: https://www.uphe.com/movies/xanadu Xanadu is a look at the future and a loving remembrance of the way things were in the heyday of Holl...
Frustrated at the lack of a HIGH DEFINITION trailer for this underrated 1980 musical on line, and only finding a substandard source from the original trailer, I have re-cut a new 1080p trailer using HD footage and it's musical track with some of the narrative soundtrack from the original SD source mixed in. Hope you all enjoy it. This movie deserves better advertisement.
Xanadu - Fool Country & Xanadu Reprise: Kira (Olivia Newton-John) and the Muses rock it out. BUY THE MOVIE: https://www.fandangonow.com/details/movie/xanadu-1980/1MVaad0dc6bc51388fb1c6ea2befcfd3963?cmp=Movieclips_YT_Description Watch the best Xanadu scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqrwwpAmY7lPP5KdatVHgkKi FILM DESCRIPTION: Struggling artist Sonny Malone (Michael Beck) is trapped in a dull job painting album covers. He is instantly attracted to Kira (Olivia Newton-John), an anonymous woman randomly photographed in the background of one of his assignments, but no one is able to identify her. Visiting the auditorium where the cover was shot, Sonny finds the mysterious beauty, an ageless Greek muse, who encourages him to team up with old-fashioned Danny McGuir...
Xanadu - Don't Walk Away: Sonny (Michael Beck) & Kira (Olivia Newton-John) get close. BUY THE MOVIE: https://www.fandangonow.com/details/movie/xanadu-1980/1MVaad0dc6bc51388fb1c6ea2befcfd3963?cmp=Movieclips_YT_Description Watch the best Xanadu scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqrwwpAmY7lPP5KdatVHgkKi FILM DESCRIPTION: Struggling artist Sonny Malone (Michael Beck) is trapped in a dull job painting album covers. He is instantly attracted to Kira (Olivia Newton-John), an anonymous woman randomly photographed in the background of one of his assignments, but no one is able to identify her. Visiting the auditorium where the cover was shot, Sonny finds the mysterious beauty, an ageless Greek muse, who encourages him to team up with old-fashioned Danny McGuire (Gene...
XANADU "Best Parts" (1980) Olivia Newton-John PLOT: Struggling artist Sonny Malone (Michael Beck) is trapped in a dull job painting album covers. He is instantly attracted to Kira (Olivia Newton-John), an anonymous woman randomly photographed in the background of one of his assignments, but no one is able to identify her. Visiting the auditorium where the cover was shot, Sonny finds the mysterious beauty, an ageless Greek muse, who encourages him to team up with old-fashioned Danny McGuire (Gene Kelly) to build a roller-skating disco. Release date: August 8, 1980 (USA) Director: Robert Greenwald CAST: Olivia Newton-John, Gene Kelly, Michael Beck Buy the film here! https://www.amazon.com/exec/obidos/ASIN/B000I9WWMM/joblosmovieempor/ SUBSCRIBE for more all the latest Movie Clips here: http...
For your movie collection, you can buy an HD (Blu-ray™or DVD™) copy on Amazon: 🎞DVD™👉 https://amzn.to/3zNdTYp 🎞Blu-ray™👉 https://amzn.to/3j6xYTx *Amazon Prime Day is Here* 👉 https://amzn.to/3vMla7C
Xanadu - Whenever You're With Me: Danny (Gene Kelly) reminisces when Kira (Olivia Newton-John) was his muse. BUY THE MOVIE: https://www.fandangonow.com/details/movie/xanadu-1980/1MVaad0dc6bc51388fb1c6ea2befcfd3963?cmp=Movieclips_YT_Description Watch the best Xanadu scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqrwwpAmY7lPP5KdatVHgkKi FILM DESCRIPTION: Struggling artist Sonny Malone (Michael Beck) is trapped in a dull job painting album covers. He is instantly attracted to Kira (Olivia Newton-John), an anonymous woman randomly photographed in the background of one of his assignments, but no one is able to identify her. Visiting the auditorium where the cover was shot, Sonny finds the mysterious beauty, an ageless Greek muse, who encourages him to team up with old-fashio...
Xanadu may refer to:
You say
One for the trouble
Two for the time
Come on, y'all, let's rock the -
[whistle]
Yes, yes, y'all
Freak, freak, y'all
Funky beats, y'all
Then you rock 'n roll
Then you roll 'n rock
And they you rockin to the beat that just don't want you to stop
Cause I'm the S to the p-double o-n-y
The one MC who you can't deny
Cause I'm the baby-maker, I'm the woman-taker
I'm the cold-crushin lover, the heartbreaker
So come on, fly girls, and please don't stop
Cause I'm MC Spoonie Gee, wanna hit the top
And young ladies, rock on
Say I was drivin down the street on a stormy night
Say up ahead there was this terrible fright
There was a big fine lady, she was crossin the street
She had a box with the disco beat
So I hit my brakes, but they're not all there
I missed the young lady by only a hair
And then I took me a look, I said, "La-di-da-di"
A big fine girl, she had a hell of a body
Then she looked at me and then she started switchin
So I took my key out of the ignition
Got out the car and kept my mouth shut
Cause my 20-20 vision was right on her butt
I caught up with her, I said, "You look so fine
I swear to God I wish you was mine"
She said, "Hey boy, you're Spoonie Gee"
"That's right, honey, how did you know me?"
She said, "Spoonie Gee, you're all the same
And everybody who disco know your name"
I said, "Come on baby, it's not too far
We gonna take a little walk to my car"
Once we got to the car, then we sat in the seat
And then the box was rockin to the funky beat
And then I looked at her and pushed the seat back
Turned off her box and put on my 8-track
And then I started rappin without no pause
Cause my mind was just gettin in those draws
And then I got in the straw, we started do it to the beat
And started doin like this, started doin the freak
Yes, yes, y'all
Freak, freak, y'all
Cause I'm MC Spoonie Gee, I wanna be known
As the metropolitician of the microphone
Cause I'm a man's threat
And I'm a woman's pet
And I'm known as the mamsel's joy
And I'm a man who fights on the microphone
And who all the people enjoy, y'all
Yes, yes, y'all
Freak, freak, y'all
And don't stop
Keep on
Say I was breakin and freakin at a disco place
I met a fine girl, she had a pretty face
And then she took me home, you say, "The very same night?"
The girl was on and she was outta sight
And then I got the girl for three hours straight
But I had to go to work, so I couldn't be late
I said, "Where's your man?" she said, "He's in jail"
I said, "Come on baby, cause you're tellin a tale
Cause if he comes at me and then he wants to fight
See I'ma get the man good and I'ma get him right
See I'ma roll my barrel and keep the bullets still
And when I shoot my shot, I'm gonna shoot to kill
Cause I'm the Spoonie-Spoon, I don't mess around
I drop a man where he stand right into the ground
You say from Africa to France, say to Germany
Because you can't get a man tryin to mess with me
Cause I'm a smooth talker, I'm the midnight stalker
I'm the image of the man they call the J.D. Walker
If you're gonna be my girl, just come along
And just clap your hands to my funky song
I don't drink, I don't smoke, I don't gamble neither
And most people call me a woman pleaser
Cause I keep their phone numbers on the shelf
I go to make love, and then keep it to myself
So no one's gonna know what I'm doin to you
Not your sister, brother, niece, nor your mother, father too"
And take that y'all
And don't stop
You keep on and on and on and on
Like hot butter on say what, the popcorn
Young ladies rock on
Fly guys
What a big surprise
Cause I'm MC Spoonie Gee, don't take no mess
>From the north, the south, from east or west
Cause everybody knows MC Spoonie Gee's the best
Young ladies rock on, y'all
Rock, rock, y'all and don't stop
Keep on to the shill shot
And then you rock and roll
And then you roll and rock
And then you rock to the beat that just don't wantcha to stop
Cause I'm the S to the p-double o-n-y g
I'm talkin about me, MC Spoonie Gee
Rock on, y'all
And don't stop
Keep on to the shill shot
Rock on and on and on and on
Like hot butter on say what, the popcorn
Don't stop the funky beat till the break of dawn
Young ladies
Young ladies
Cause I'm the cool-crushin lover, goes on to supreme
And when it comes to fine girls I'm like a lovin machine
It comes to makin love, I do the best I can
Cause I'm known from coast to coast as the sixty-minute man
It comes to makin face, I got the macho class
I have all the fly girls shakin their ass
So for all you fly girls who wanna be loved
Check me out, cause I'm the highest above
I'm gonna call you up and give you an invitation
So you can see the way Spoonie Gee rocks the nation
One time, for the mind, y'all
Freak, freak, y'all
Funky freaks, y'all
Yo go hip - hop - a hip-hip a hop
And then you're rockin to the hip, and then you're rockin the hop
And then you on and on and on and on
The beat don't stop until the freaks are gone
And rock on y'all, and don't stop
Keep on to the shill shot
And for you sucker-sucker dudes who commit a crime
You wanna do bad, but don't do the time
I say you wanna be dissed and then you wanna be a crook
You find a old lady, take her pocketbook
And then you steal your mother's borrowed money on the sly
You can run, but you can't hide
When the cops crashed through, your face turned pale
I'ma tell you a little story about the jail
Cause see, in jail there's a game and it's called survival
And they run it down to you on your first arrival
They tell you what you can and cannot do
But if you go to jail, watch yours for a crew
Cause when you go in the shower, he's pullin his meat
And he's lookin at you and say you look real sweet
And at first there was one, now ten walked in
Now how in the hell did you expect to win?
I said you better look alive, not like you take dope
And please my brother, don't drop the soap
And if you get out the bathroom, and you're alive
Just remember only a man can survive
In jail of course, cause when you're doin 15 years
You got no [??????], you just have a warden
[?????] no [????] a corner
[?????]
Yes, yes, y'all
Freak, freak, y'all
And don't stop
Keep on to shill shot
Like a lime to a lemon and a lemon to a lime
I keep the funky beat, I say I pass the time
And like lemon and lime and like a lime to a lemon
A MC could attract all the women
Cause I'm Spoonie Gee, and I wanna be known
As the metropolitician of the microphone
Yes, yes, y'all
Freak, freak, y'all
So just clap your hands and just stomp your feet
And just rock to the rhythm of the funky beat
To the funky, funky, funky, funky beat
The beat that makes you get up and pat your feet
Young ladies rock on, y'all
Rock on, y'all
Till the break of dawn
I say you do the Spank or the Patty Duke
Either one you want, you gotta get up and do
The rock-rock and you don't stop
I say I jumped the turnstyle for summer day
And then I seen the guy, and then I fled away
And then he pulled his gun, but he did not shoot
So come on everybody, let's Patty Duke
Cause I'm livin well, and I'm ready to dance
Come on girl, let me show my romance
I'll let you see the way how I rock the mic
Cause I know damn well that I could rock all night
Yes, yes, y'all
Freak, freak, y'all
And don't stop
Keep on, y'all
You go rock and roll