- published: 23 Nov 2010
- views: 4687978
'+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; })); }); -->
"Walking in the Air" is a song written by Howard Blake for the 1982 animated film of Raymond Briggs' 1978 children's book The Snowman. The song forms the centrepiece of The Snowman, which has become a seasonal perennial on British and Finnish television. The story relates the fleeting adventures of a young boy and a snowman who has come to life. In the second part of the story, the boy and the snowman fly to the North Pole. "Walking in the Air" is the theme for the journey. They attend a party of snowmen, at which the boy is the only human. They meet Father Christmas and his reindeer, and the boy is given a scarf with a snowman pattern. In the film, the song was performed by St Paul's Cathedral choirboy Peter Auty and this version was released as a single on CBS in 1982, and reissued in 1985 (on Stiff Records) and 1987.
In 1985, an altered version was recorded for use in a TV advertising campaign for Toys "R" Us. As Auty's voice had then broken, Blake recommended the Welsh chorister Aled Jones, whose recording reached number five in the UK pop charts, and who became a popular celebrity on the strength of his performance. The association of the song with Jones, combined with the fact that Auty was not credited on The Snowman, would lead to a common misbelief that Jones performed the song in the film. "Walking in the Air" has subsequently been covered by over forty artists, in a variety of styles.
HIDDEN ERROR: Usage of "touring members" is not recognized
Nightwish is a symphonic metal band from Kitee, Finland. The band was formed in 1996 by lead songwriter and keyboardist Tuomas Holopainen, guitarist Emppu Vuorinen, and lead singer Tarja Turunen. The band soon picked up drummer Jukka Nevalainen, and then bassist Sami Vänskä after the release of its debut album, Angels Fall First (1997). In 2002, Vänskä was replaced by Marco Hietala, who also took over the male vocalist role previously filled by Holopainen or guest singers.
Although Nightwish have been prominent in their home country since Angels Fall First, they did not achieve worldwide fame until the release of the albums Oceanborn (1998), Wishmaster (2000) and Century Child (2002). Their 2004 album, Once, has sold more than one million copies and was the band's breakthrough in the United States. Their biggest US hit single, "Wish I Had an Angel" (2004), received MTV airplay and was included on three US film soundtracks to promote their North American tour. The band produced three more singles and two music videos for Once, as well as a re-recording of "Sleeping Sun" for the "best of" compilation album, Highest Hopes (2005), before Turunen's dismissal in October 2005. Her last performance with Nightwish was during a concert recorded for the live album/DVD End of an Era. After the concert, the other members informed Turunen that she was no longer a member of Nightwish.
No Christmas would be complete without this Fella! Raymond Briggs set the book in East Sussex (where he lived back then) hence why they are flying over Brighton. It's also worth remembering that Peter Auty sings this song ..NOT the horrific Aled Jones!
Discover our favourite videos in this playlist https://www.youtube.com/playlist?list=PLF_pjbI-JsWeqZ08_dimEcdHCJXwkVNsP Walking in the Air was recorded live at St Johns Smith Square on 6th December 2020. It forms the centrepiece of the animated film The Snowman, sung by Peter Auty. It was later re-recorded by Aled Jones. This version is sung by Luca Brugnoli who was runner up in the BBCs Young Chorister of the Year competition in 2022. Music – Howard Blake Arranged by Robert Prizeman Words – Howard Blake Lyrics: We’re walking in the air We’re floating in the moonlit sky The people far below are sleeping as we fly I’m holding very tight I’m riding in the midnight blue I’m finding I can fly so high above with you On across the world the villages go by like dreams The rivers and t...
Music video by Aled Jones performing Walking In The Air. (P) 2010 The copyright in this audiovisual recording is owned by EMI Records Ltd
The incredible voice of young star treble Malakai Bayoh. Classic FM presenter and singer Aled Jones invited the 13-year-old singer to duet with him, in a session recorded in the beautiful St Paul’s Church Covent Garden, also known as ‘The Actors’ Church’. They sing the best-loved song from The Snowman, 'Walking in the Air', famously recorded by Aled Jones when he was 14 years old. Subscribe: https://clssicfm.co/SubscribeToClassicFM - Visit the Classic FM website https://classicfm.com - Listen to Classic FM https://clssicfm.co/listenlive Classic FM Playlists -Classic FM | Discover Instruments: https://bit.ly/2Xy8fGN -Classic FM | Sessions: https://bit.ly/2OtjvjV -Classic FM | Explains: https://bit.ly/332UOzS -Classic FM Hall Of Fame | Top 10: https://bit.ly/35no5af Classic FM on socia...
‘All My Demons Greeting Me As A Friend’ is out now! Order on the Official Store: http://po.st/DemonsONYTDeC Order on iTunes: http://po.st/DemonsONYTDiT Listen on Spotify: http://po.st/DemonsONYTDSp It's been fun recording it! I have so many stories to tell. Visit AURORA's website: http://po.st/AURORAWeb Join the Warriors! http://po.st/JoinTheWarriors Facebook: http://po.st/AURORAFaceB Twitter: http://po.st/AURORATwitter Follow AURORA on Spotify: http://po.st/AURORASpotify
Band: Nightwish (1996) Country of origin: Finland Album: Oceanborn (1998) Genre: Symphonic metal/Power metal/Gothic metal/ Heavy metal/Progressive metal Lead vocals: Tarja Turunen (1996-2005) Film: "The Hobbit: An Unexpected Journey" (New Zealand/USA 2012) My other video clips are available here: https://www.youtube.com/user/MetalComrade https://mewe.com/join/janklertv-rockmetalmusicvideoclips https://www.youtube.com/results?search_query=jankler+tv
Provided to YouTube by PIAS Walking In The Air · Nightwish Oceanborn ℗ Spinefarm Records under exclusive license to Vertigo/Capitol, a division of Universal Music GmbH under exclusive license to Vertigo/Capitol, a division of Universal Music GmbH Released on: 1998-01-01 Composer: David Blake Auto-generated by YouTube.
Provided to YouTube by Universal Music Group Walking In The Air · AURORA Walking In The Air ℗ A Decca Records Recording; ℗ 2019 Universal Music Operations Limited Released on: 2019-11-28 Producer, Studio Personnel, Mixer, Recording Engineer, Associated Performer, Guitar, Programming: Odd Martin Associated Performer, Vocals: AURORA Studio Personnel, Mastering Engineer: Alex Wharton Composer Lyricist: Howard Blake Auto-generated by YouTube.
"Walking in the Air" is a song written by Howard Blake for the 1982 animated film The Snowman. We really enjoyed covering this song weaving in elements of ghost like harmonies and enchanting descant lines. We hope you like it! Singer - Amy Manford https://youtube.com/@amy_manford?si=xOdYWUs1csno4VPM Pianist - William Joseph https://www.youtube.com/channel/UC8G0RoiRL5rwcmjx_HP3-OQ Listen to this Song on Spotify https://open.spotify.com/track/66OuTVibmZw5SyLVobTRCN?si=c6d5442fcb5c4261 Video Production Video produced by: Amy Manford and William Joseph Assistant Producer: Russ Dixon Director of Cinematography: Daniel Batalles Film Editor and Colourist: Amy Manford Music Production Music Producer: William Joseph Arranged by: William Joseph Vocal Arrangement by: Amy Manford Mixed and ...
The new album, One Voice at Christmas, is OUT NOW! Thanks to modern technology, Aled Jones performs a duet with his younger self – who was made famous around the world after this performance of Howard Blake's song from The Snowman. - Subscribe for more 👉 clssicfm.co/subscribe - Visit the Classic FM website 👉 https://classicfm.com - Listen to Classic FM 👉 http://clssicfm.co.live/ Classic FM Playlists -Classic FM | Discover Instruments: https://bit.ly/2Xy8fGN -Classic FM | Sessions: https://bit.ly/2OtjvjV -Classic FM | Explains: https://bit.ly/332UOzS -Classic FM Hall Of Fame | Top 10: https://bit.ly/35no5af Classic FM on socials - Facebook 👉 http://facebook.com/classicfm - Twitter 👉 https://twitter.com/ClassicFM - Instagram 👉 https://www.instagram.com/classicfm/
"Walking in the Air" is a song written by Howard Blake for the 1982 animated film of Raymond Briggs' 1978 children's book The Snowman. The song forms the centrepiece of The Snowman, which has become a seasonal perennial on British and Finnish television. The story relates the fleeting adventures of a young boy and a snowman who has come to life. In the second part of the story, the boy and the snowman fly to the North Pole. "Walking in the Air" is the theme for the journey. They attend a party of snowmen, at which the boy is the only human. They meet Father Christmas and his reindeer, and the boy is given a scarf with a snowman pattern. In the film, the song was performed by St Paul's Cathedral choirboy Peter Auty and this version was released as a single on CBS in 1982, and reissued in 1985 (on Stiff Records) and 1987.
In 1985, an altered version was recorded for use in a TV advertising campaign for Toys "R" Us. As Auty's voice had then broken, Blake recommended the Welsh chorister Aled Jones, whose recording reached number five in the UK pop charts, and who became a popular celebrity on the strength of his performance. The association of the song with Jones, combined with the fact that Auty was not credited on The Snowman, would lead to a common misbelief that Jones performed the song in the film. "Walking in the Air" has subsequently been covered by over forty artists, in a variety of styles.
Uhh.. yeah
He just sits, and watches the people in the boxes
Everything he sees he absorbs and adopts it
Heeeeee mimics and he mocks it
Really hates the box but he can't remember how to stop, it
Uhh, so he continues to watch it
Hoping that it'll give him something that he can box with
Or how the locksmith, see the box as, locked in the box
Ain't got the combination to unlock, it
That's why he watch-es, scared to look away
Cause at that moment, it might show him
What to take off the locks with
So he chained himself to the box, took a lock and then he locked it
Swallowed the combination and then forgot, it
As the doctors jot it all down, with they pens and pencils
The same ones that took away his voice
And just left this instrumental, like that
And he never lies (he never lies, he never lies, uhh)
And he never lies (uhh, he never lies, he never lies, no)
And he never lies (he never lies)
Cause he never said anything at all
He just sits, and listens to the people in the boxes
Everything he hears he absorbs and adopts it
Anything not coming out the box he blocks it
See he loves to box and hope they never stop it
Anything the box tell him to do, he does it
Anything it tell him to get, he shops and he cops it
He protects the box, locks it in a box
when he goes to sleep, but he never sleeps
Cause he stays up to watch it, scared to look away
Cause at that moment, it might get stolen
And that's the last of the boxes
So he chained himself to the box, took a lock and then he locked it
Swallowed the combination and then forgot, it
As the doctors jot it all down, with they pens and pencils
The same ones that took away his voice
And just left this instrumental, like that
(Anything at all..) He never lies
Uhh, and you can't tell me just who you are
You buy new clothes just to hide those scars
You built that roof just to hide those stars
Now you can't take it back to the start
And you can't tell me just who you are
You buy new clothes just to hide those scars
You built that roof just to hide those stars
Now you can't take it back to the start
(Anything at all.. anything at all..)
Uhh, and you can't tell me just who you are
You buy new clothes just to hide those scars
You built that roof just to hide those stars
Now you can't take it back to the start
And you can't tell me just who you are
You buy new clothes just to hide those scars
You built that roof just to hide those stars