- published: 08 May 2020
- views: 100324977
'+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; })); }); -->
The Lion King is a 1994 American animated epic musical film produced by Walt Disney Feature Animation and released by Walt Disney Pictures. It is the 32nd animated feature in the Walt Disney Animated Classics series. The story takes place in a kingdom of lions in Africa, and was influenced by William Shakespeare's Hamlet. The film was produced during a period known as the Disney Renaissance. The Lion King was directed by Roger Allers and Rob Minkoff, produced by Don Hahn, and has a screenplay credited to Irene Mecchi, Jonathan Roberts and Linda Woolverton. Its original songs were written by composer Elton John and lyricist Tim Rice, and original scores were written by Hans Zimmer. The film features an ensemble voice cast that includes Matthew Broderick, James Earl Jones, Jeremy Irons, Jonathan Taylor Thomas, Moira Kelly, Nathan Lane, Ernie Sabella, Rowan Atkinson, Robert Guillaume, Madge Sinclair, Whoopi Goldberg, Cheech Marin, and Jim Cummings.
The Lion King tells the story of Simba, a young lion who is to succeed his father, Mufasa, as king; however, after Simba's uncle Scar murders Mufasa, Simba is manipulated into thinking he was responsible and flees into exile in shame and despair. Upon maturation living with two wastrels, Simba is given some valuable perspective from his childhood friend, Nala, and his shaman, Rafiki, before returning to challenge Scar to end his tyranny.
The Lion King 1½ (also known as The Lion King 3: Hakuna Matata outside of North America) is a 2004 American direct-to-video animated musical buddy comedy-adventure film produced by Walt Disney Pictures and DisneyToon Studios and released by Walt Disney Home Entertainment on February 10, 2004. The film was also theatrically released internationally and in selected cities in the United States. It is the third and final (Chronologically, the second) installment in the Lion King trilogy. The DVD went to the Disney Vault in January 2005. The film is a prequel/parallel/midquel to the 1994's The Lion King, and focuses on the meerkat/warthog duo Timon and Pumbaa before, during and after the events of the original film. It's followed by a Disney television film, The Lion Guard, which is advertised as the fourth feature-length animated made-for-TV film, November 2015.
The original cast returns to re-voice their parts, save for a few exceptions: Rowan Atkinson (the original voice of Zazu) was again replaced by Edward Hibbert; Jonathan Taylor Thomas (originally Young Simba) is replaced by Matt Weinberg; and James Earl Jones and Jeremy Irons (Mufasa and Scar respectively) did not reprise their roles, as the characters had silent cameos.
The Lion King II: Simba's Pride (later retitled The Lion King 2: Simba's Pride) is a 1998 American animated direct-to-video musical film sequel to the 1994 animated feature film, The Lion King.
Produced by Walt Disney Pictures and Walt Disney Animation Australia and released on October 27, 1998, the film centers on Simba and Nala's daughter Kiara, who falls in love with Kovu, a male rogue lion from a banished pride that was once loyal to Simba's evil uncle, Scar. Separated by Simba's prejudice against the banished pride and a vindictive plot planned by Kovu's mother, Kiara and Kovu struggle to unite their estranged prides and be together.
Most of the original cast returned to their roles from the first film, apart from Rowan Atkinson, who was replaced by Edward Hibbert as the voice of Zazu for this film and its prequel, The Lion King 1½. Madge Sinclair, the voice of Simba's mother Sarabi, died after the first film's release, and her character is subsequently written out of this sequel.
The Lion King is a musical based on the 1994 Disney animated film of the same name with music by Elton John and lyrics by Tim Rice along with the musical score created by Hans Zimmer with choral arrangements by Lebo M. Directed by Julie Taymor, the musical features actors in animal costumes as well as giant, hollow puppets. The show is produced by Disney Theatrical Productions.
The musical debuted July 8, 1997, in Minneapolis, Minnesota at the Orpheum Theatre, and was an instant success before premiering on Broadway at the New Amsterdam Theater on October 15, 1997, in previews with the official opening on November 13, 1997. On June 13, 2006, the Broadway production moved to the Minskoff Theatre to make way for the musical version of Mary Poppins, where it is still running after more than 6,700 performances. It is Broadway's third longest-running show in history and the highest grossing Broadway production of all time, having grossed more than $1 billion.
The show debuted in the West End's Lyceum Theatre on October 19, 1999, and is still running. The cast of the West End production were invited to perform at the Royal Variety Performance 2008 at the London Palladium on December 11, in the presence of senior members of the British Royal Family.
The Lion King is a platformer video game based on Disney's popular animated film of the same name. The title was developed by Westwood Studios and published by Virgin Interactive for the Super Nintendo Entertainment System and Sega Genesis/Mega Drive in 1994, and was also ported to the Nintendo Entertainment System, Game Boy, PC, Amiga, Master System, and Game Gear. The NES and Master System and Amiga versions of the game were never released in North America. The Lion King was the final game released for the NES in Europe. The game follows Simba's journey from a young care-free cub to the battle with his evil uncle Scar as an adult.
The Lion King is a side-scrolling platform game in which players control the protagonist, Simba, through the events of the film, going through both child and adult forms as the game progresses. In the first half of the game, players control Simba as a child, who primarily defeats enemies by jumping on them. Simba also has the ability to roar, using up a replenishable meter, which can be used to stun enemies, make them vulnerable, or solve puzzles. Midway through the game, players play through a unique stampede level in which they must avoid wildebeest and rocks. In the second half of the game, Simba becomes an adult and gains access to various combat moves such as scratching, mauling, and throws. In either form, Simba will lose a life if he runs out of health or encounters an instant-death obstacle, such as a bottomless pit or a rolling boulder.
The Lion King is now streaming only on Disney+. Disney+ is the ultimate streaming destination for entertainment from Disney, Pixar, Marvel, Star Wars, and National Geographic. Access it all at https://disneymusic.co/JoinDisneyPlus?IQid=dmvevo. "Hakuna Matata" Performed by: Billy Eichner, Seth Rogen, JD McCrary, Donald Glover ▶️ Watch all The Lion King music videos here: https://disneymusic.co/TheLionKing/Vevo?iqid=dmvevo 🔔 Subscribe to DisneyMusicVEVO: https://disneymusic.co/disneymusicYT?iqid=dmvevo.tlk 🎵 Download/buy/stream The Lion King soundtrack here: https://disneymusic.co/TheLionKing?iqid=dmvevo For more info on Disney+: Website: https://disneyplus.com Instagram: https://instagram.com/DisneyPlus Twitter: https://twitter.com/DisneyPlus Facebook: https://facebook.com/DisneyPlus...
Disney's Lion King is now streaming on Disney+. Disney+ is the ultimate streaming destination for entertainment from Disney, Pixar, Marvel, Star Wars, and National Geographic. Access it all at https://www.disneyplus.com/ Subscribe to DisneyMusicVEVO 🔔 for all the latest Disney music videos: https://www.youtube.com/@DisneyMusicVEVO?sub_confirmation=1 ✨ Check out the Disney Hits playlist : https://www.youtube.com/playlist?list=PLiNVoBckLqLmdcbotc6n_MjdTDCHLiYDo 🎤 Disney Sing-Alongs playlist: https://www.youtube.com/playlist?list=PLiNVoBckLqLlwlfLIh3a4bmuqzLkgEjjt Connect with Disney Music: Instagram: https://instagram.com/disneymusic Facebook: https://facebook.com/disneymusic Twitter: https://twitter.com/disneymusic TikTok: https://tiktok.com/@disneymusic #TheLionKing #CircleOfLife #Di...
The Lion King is now streaming on Disney+. Disney+ is the ultimate streaming destination for entertainment from Disney, Pixar, Marvel, Star Wars, and National Geographic. Access it all at https://www.disneyplus.com/ Subscribe to DisneyMusicVEVO 🔔 for all the latest Disney music videos: https://www.youtube.com/@DisneyMusicVEVO?sub_confirmation=1 ✨ Check out the Disney Hits playlist : https://www.youtube.com/playlist?list=PLiNVoBckLqLmdcbotc6n_MjdTDCHLiYDo 🎤 Disney Sing-Alongs playlist: https://www.youtube.com/playlist?list=PLiNVoBckLqLlwlfLIh3a4bmuqzLkgEjjt Connect with Disney Music: Instagram: https://instagram.com/disneymusic Facebook: https://facebook.com/disneymusic Twitter: https://twitter.com/disneymusic TikTok: https://tiktok.com/@disneymusic #TheLionKing #CanYouFeelTheLoveToni...
The Lion King is now streaming only on Disney+. Disney+ is the ultimate streaming destination for entertainment from Disney, Pixar, Marvel, Star Wars, and National Geographic. Access it all at https://disneymusic.co/JoinDisneyPlus?IQid=dmvevo. "I Just Can't Wait to Be King" Performed by: JD McCrary, Shahadi Wright Joseph, John Oliver ▶️ Watch all The Lion King music videos here: https://disneymusic.co/TheLionKing/Vevo?iqid=dmvevo 🔔 Subscribe to DisneyMusicVEVO: https://disneymusic.co/disneymusicYT?iqid=dmvevo.tlk 🎵 Download/buy/stream The Lion King soundtrack here: https://disneymusic.co/TheLionKing?iqid=dmvevo For more info on Disney+: Website: https://disneyplus.com Instagram: https://instagram.com/DisneyPlus Twitter: https://twitter.com/DisneyPlus Facebook: https://facebook.com/Di...
Streaming Now on Disney+ – Sign Up at https://disneyplus.com/ Be prepared for the coup of the century and get ready to sing along with Scar to the lyrics of "Be Prepared" from The Lion King. SUBSCRIBE to get notified when new Disney videos are posted: http://di.sn/Subscribe Get even more Disney YouTube Oh My Disney: https://www.youtube.com/user/OhMyDisney Disney Style: https://www.youtube.com/user/disneysstyle Disney Family: https://www.youtube.com/user/Disney Mickey Mouse: https://www.youtube.com/user/DisneyShorts You Might Also Like: As Told By Emoji: https://www.youtube.com/playlist?list=PLpSnlSGciSWPZtUvlHLEp9_M5FPlC8LLa Tsum Tsum Shorts: https://www.youtube.com/playlist?list=PLpSnlSGciSWPewHLHBq5HFLJBGhHrsKnJ Sing Alongs: https://www.youtube.com/playlist?list=PLpSnlSGciSWPBUsHQKm...
De cast van The Lion King brengt 'Circle of Life' uit de populaire musical tijdens het Musical Awards Gala 2018. The cast of The Lion King performs 'Circle of Life' from the popular musical during the Dutch Musical Awards Gala 2018. Meer AVROTROS vind je op: Facebook: https://www.facebook.com/AVROTROS Instagram: https://www.instagram.com/omroep.avrotros TikTok: https://www.tiktok.com/@avrotros? Twitter: https://www.twitter.com/AVROTROS Officiële website: http://www.avrotros.nl #lionking #musicalawards #avrotros #musical #circleoflife
opening of animated movie The Lion King Circle of life written by Elton John , Tim Rice produce by Hans Zimmer vocal produce by Stephen Lipson performed by Lindiwe Mkhize f.t Lebo M #thelionking #circleoflife
Disney's The Lion King opens in theaters July 19, 2019. Watch the new trailer now. Director Jon Favreau’s all-new “The Lion King” journeys to the African savanna where a future king is born. Simba idolizes his father, King Mufasa, and takes to heart his own royal destiny. But not everyone in the kingdom celebrates the new cub’s arrival. Scar, Mufasa’s brother—and former heir to the throne—has plans of his own. The battle for Pride Rock is ravaged with betrayal, tragedy and drama, ultimately resulting in Simba’s exile. With help from a curious pair of newfound friends, Simba will have to figure out how to grow up and take back what is rightfully his. The all-star cast includes Donald Glover as Simba, Beyoncé Knowles-Carter as Nala, James Earl Jones as Mufasa, Chiwetel Ejiofor as Scar, Set...
Enjoy!
This is a direct upload of the video file used in the game Disney Sing It: Family Hits. Taken from the PS3 version for 720p video, enjoy.
The Lion King is a 1994 American animated epic musical film produced by Walt Disney Feature Animation and released by Walt Disney Pictures. It is the 32nd animated feature in the Walt Disney Animated Classics series. The story takes place in a kingdom of lions in Africa, and was influenced by William Shakespeare's Hamlet. The film was produced during a period known as the Disney Renaissance. The Lion King was directed by Roger Allers and Rob Minkoff, produced by Don Hahn, and has a screenplay credited to Irene Mecchi, Jonathan Roberts and Linda Woolverton. Its original songs were written by composer Elton John and lyricist Tim Rice, and original scores were written by Hans Zimmer. The film features an ensemble voice cast that includes Matthew Broderick, James Earl Jones, Jeremy Irons, Jonathan Taylor Thomas, Moira Kelly, Nathan Lane, Ernie Sabella, Rowan Atkinson, Robert Guillaume, Madge Sinclair, Whoopi Goldberg, Cheech Marin, and Jim Cummings.
The Lion King tells the story of Simba, a young lion who is to succeed his father, Mufasa, as king; however, after Simba's uncle Scar murders Mufasa, Simba is manipulated into thinking he was responsible and flees into exile in shame and despair. Upon maturation living with two wastrels, Simba is given some valuable perspective from his childhood friend, Nala, and his shaman, Rafiki, before returning to challenge Scar to end his tyranny.
Fatshe leso lea halalela [The land of our ancestors is holy]
Fatshe leso lea halalela
Shadowland
The leaves have fallen
This shadowed land
This was our home
The river's dry
The ground has broken
So I must go
Now I must go
And where the journey may lead me
Let your prayers be my guide
I cannot stay here, my family
But I'll remember my pride
Prideland I have no choice
My land I will find my way
Tear-stained Lea halalela
Dry land
Take this Take this prayer
With you What lies out there
Fatshe leso Lea halalela
And where the journey may lead you
Let this prayer be your guide
Though it may take you so far away
Always remember your pride
Fatshe leso lea halalela
Fatshe leso lea halalela Fatshe leso lea halalela
And where the journey may lead you
Let this prayer be your guide
Though it may take you so far away
Always remember your pride
And where the journey may lead you Giza buyabo, giza buyabo
Let this prayer be your guide I will return, I will return
Beso bo
Though it may take you so far away Giza buyabo, I will return
Always remember your pride Giza buyabo, oh giza buyabo