- published: 08 Dec 2024
- views: 115765
'+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; })); }); -->
"Colors of the Wind" is a song written by lyricist Stephen Schwartz and composer Alan Menken for Walt Disney Pictures' 33rd animated feature film Pocahontas (1995). The film's theme song, "Colors of the Wind" was originally recorded by American singer and actress Judy Kuhn in her role as the singing voice of Pocahontas. American recording artist Vanessa Williams' cover of the song was released as the lead single from the film's soundtrack on March 23, 1995. A pop ballad, produced by Grammy Award winning producer Keith Thomas, the song's lyrics speak of respecting nature and living in harmony with the Earth's creatures.
"Colors of the Wind" won the Academy Award for Best Original Song at the 68th Academy Awards in 1995, becoming composer Alan Menken's fourth win in the category. It also won the Golden Globe in the same category as well as the Grammy Award for Best Song Written for a Movie. The song poetically presents the Native American viewpoint that the earth is a living entity where humankind is connected to everything in nature.
Zachary Levi Pugh (/ˈzækəri ˈliːvaɪ ˈpjuː/; born September 29, 1980) is an American actor, director, and singer. He is best known for his roles as Kip Steadman in the sitcom Less than Perfect and as Chuck Bartowski in the series Chuck. He appeared in the films Alvin and the Chipmunks: The Squeakquel, Tangled, and Thor: The Dark World.
Levi was born in Lake Charles, Louisiana, the son of Susan and Darrell Pugh. He is of Welsh ancestry. When Levi was a child, his family moved across several states before finally heading back to their home in Ventura, California, where he attended Buena High School for four years. He began acting on stage at the age of six, performing lead roles in regional productions such as Grease, The Outsiders, Oklahoma!, Oliver!, The Wizard of Oz, and Big River at the Ojai Art Center. He chose his middle name as his stage name because his agent told him that "a guy named Zach Pugh would not be going far in Hollywood".
Levi first appeared in the FX television movie Big Shot: Confessions of a Campus Bookie. He played Kipp Steadman on the ABC sitcom Less than Perfect. He also portrayed a potential boyfriend of Charisma Carpenter's character, Jane, in the ABC Family television movie See Jane Date. Levi was slated to be a lead in an ABC pilot called Three for the 2004/2005 television season, but the show was not picked up.
Po-ca-hon-tas, or The Gentle Savage (subtitled "An Original Aboriginal Erratic Operatic Semi-civilized and Demi-savage Extravaganza") is a two-act musical burlesque by John Brougham. It debuted in 1855 and became an instant hit. Po-ca-hon-tas remained a staple of theatre troupes and blackface minstrel companies for the next 30 years, typically as an afterpiece.
The play parodies the Indian narratives that were popular at the time in the United States, particularly those featuring Indian heroines in the Noble Savage mould. The burlesque is usually credited with bringing the fad for Indian narratives to an end.
The plot very loosely follows events in the life of the historical Pocahontas. It begins with the arrival of white men led by John Smith, who says they are there to "ravage the land and steal gold". Smith and company raid the "Tuscarora Finishing School of Emancipated Maidens" and there meet Pocahontas. The remainder of the play revolves around the love triangle formed by Pocahontas, Smith, and John Rolfe, concluding with a card game between Smith and Rolfe for the hand of the Indian princess.
"Pocahontas" is a song written by Neil Young that was first released on his 1979 album Rust Never Sleeps. It was also covered by Johnny Cash, Everclear, Emily Loizeau, Crash Vegas and Gillian Welch.
Young originally recorded a version of "Pocahontas" in the mid-1970s for his planned but unreleased album Chrome Dreams. Young may have been inspired to write the song after reading Hart Crane's 1930 poem The Bridge, which Young read in London in 1971. The seventeenth-century Native American princess Pocahontas is a central character in The Bridge.
Commentators over the years have noted the song's similarity to Carole King's "He's a Bad Boy."
Rolling Stone Magazine contributing editor Rob Sheffield finds "Pocahontas" to be "an agonizingly lonely ballad." The themes of "Pocahontas" include passage of time, travel through space and companionship.Rolling Stone Magazine critic Paul Nelson claims that "Young sails through time and space like he owns them." The lyrics of "Pocahontas" primarily describe the massacre of an Indian tribe by European settlers. However, by the end of the song the lyrics have jumped to modern times, with a fictional meeting in the Astrodome between the narrator, Pocahontas and Indian rights activist actor Marlon Brando.
Pocahontas is a 1995 American animated epic musical romantic-drama film produced by Walt Disney Feature Animation and released by Walt Disney Pictures. The 33rd film in the Walt Disney Animated Classics series, the film is part of the era known as the Disney Renaissance which lasted from 1989 to 1999.
Directed by Mike Gabriel and Eric Goldberg, the film is inspired by the known history and folklore surrounding the Native American woman Pocahontas, and portrays a fictionalized account of her historical encounter with Englishman John Smith and the Jamestown settlers that arrived from the Virginia Company. The voice cast features Irene Bedard, Mel Gibson, David Ogden Stiers, Russell Means, Christian Bale, Billy Connolly, and Linda Hunt. The musical score was written by Alan Menken, with songs written by Menken and lyricist Stephen Schwartz.
Pocahontas was released on June 23, 1995 to a mixed reaction from critics, who praised the film for its animation and music, but criticized the film's story and historical inaccuracy. Nevertheless, the film was a commercial success, grossing $346 million at the worldwide box office. Pocahontas received two Academy Awards for its achievement in music: Best Original Score for Menken's score and Best Original Song for "Colors of the Wind". A video game based on the film was released across various platforms shortly after the film's theatrical release, and the film itself was followed by a direct-to-video sequel entitled Pocahontas II: Journey to a New World in 1998.
Bill Maher and actor (Shazam!) Zachary Levi on the insanity of cutting off family members at the holidays due to political disagreements, Zach’s vote for Trump and career implications, the importance of talking to the other side, the need for nuanced thinking, legacy media stoking divisions and fear, misinformation and extremism, Zach’s support of RFK Jr., open debate about medical issues, criticizing those who shut down questions as “anti-science,” the vilification of medical skeptics, skepticism or raises questions about medicine, spirituality and God, and finding common ground. Upgrade your closet with Rhone and use code RANDOM to save 20% at https://www.rhone.com/RANDOM Get 15% OFF and save even more on bundles using code RANDOM at https://www.GetSuperBeets.com Download the Draft K...
Zachary Levi’s glow up from super nerd to superhero is unreal. #AlvinAndTheChipmunksTheSqueakquel Stream Alvin and the Chipmunks: The Squeakquel, only on Amazon Prime. #shorts Follow us! TikTok: https://www.tiktok.com/@primevideosg Instagram: https://www.instagram.com/primevideosg Facebook: https://www.facebook.com/primevideosg Twitter: https://twitter.com/primevideosg Amazon Prime is the home of entertainment with thousands of popular movies, TV shows, award-winning Amazon Originals, plus new Korean and Anime releases. All included with Prime for $2.99/month. First month’s on us! Zachary Levi’s glow up is insane | Alvin and the Chipmunks: The Squeakquel https://youtube.com/shorts/-y-zVfMOSuo Prime Video Singapore https://www.youtube.com/@primevideosg #AlvinAndTheChipmunksTheSqueakq...
Watch the official music video for "Terrified" performed by Katharine McPhee featuring Zachary Levi Music video by Katharine McPhee performing Terrified. (C) 2010 The Verve Music Group, a Division of UMG Recordings, Inc. #KatharineMcPhee #Terrified #Vevo
"Colors of the Wind" is a song written by lyricist Stephen Schwartz and composer Alan Menken for Walt Disney Pictures' 33rd animated feature film Pocahontas (1995). The film's theme song, "Colors of the Wind" was originally recorded by American singer and actress Judy Kuhn in her role as the singing voice of Pocahontas. American recording artist Vanessa Williams' cover of the song was released as the lead single from the film's soundtrack on March 23, 1995. A pop ballad, produced by Grammy Award winning producer Keith Thomas, the song's lyrics speak of respecting nature and living in harmony with the Earth's creatures.
"Colors of the Wind" won the Academy Award for Best Original Song at the 68th Academy Awards in 1995, becoming composer Alan Menken's fourth win in the category. It also won the Golden Globe in the same category as well as the Grammy Award for Best Song Written for a Movie. The song poetically presents the Native American viewpoint that the earth is a living entity where humankind is connected to everything in nature.
You think you own whatever land you land on
The earth is just a dead thing you can claim
But I know every rock and tree and creature
Has a life, has a spirit, has a name
You think the only people who are people
Are the people who look and think like you
But if you walk the footsteps of a stranger
You learn things you never knew you never knew
Have you ever heard the wolf cry to the blue corn moon
Or asked the grinning bobcat why he grins
Can you sing with all the voices of the mountain
Can you paint with all the colours of the wind
Can you paint with all the colours of the wind
Come run the hidden pine trails of the forest
Go taste the sun-sweet berries of the earth
Come rolling o’er the riches all around you
And for once never wonder what they were
The rainstorm and the river run like brothers
The heron and the otter are my friends
And we are all connected to each other
In a circle, in a hoop that never ends
Have you ever heard the wolf cry to the blue corn moon
Or let the eagle tell you where he’s been
Can you sing with all the voices of the mountain
Can you paint with all the colours of the wind
Can you paint with all the colours of the wind
How high does the sycamore grow
If you cut it down then you’ll never know
And you’ll never hear the wolf cry to the blue corn moon
Or where the will whitehorn got his skin
You need to sing with all the voices of the mountain
You need to paint with all the colours of the wind
You can own the earth and still all you’ll own is earth until