- published: 02 Jun 2021
- views: 1546
'+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; })); }); -->
George Fenton (born George Richard Ian Howe; October 19, 1950) is an English composer best known for his work writing film scores and music for television such as for the BBC series The Blue Planet and Planet Earth.
Fenton was born in London and attended St Edward's School in Oxford where "he learnt his music" from Peter Whitehouse. He has no further formal training in music. Fenton's involvement with St Edward's continued as an adult and he has been a governor of the school since 1998.
Initially Fenton worked as an actor, getting an early break in 1968 with a part in Alan Bennett's first West End play Forty Years On. He had some success as an actor in the early 1970s appearing in the film Private Road, in Alan Bennett's first television play A Day Out directed by Stephen Frears, and in the soap opera Emmerdale Farm.
In 1969 Fenton tried his hand as a recording artist with a cover of The Beatles song Maxwell's Silver Hammer and in 1973 he dabbled in band management helping to get the folk-rock band Hunter Muskett a recording contract with Bradley's Records.
Lodge is originally a term for a relatively small building, often associated with a larger one. It may refer to:
The comic book stories published by Marvel Comics since the 1940s have featured several noteworthy concepts besides its fictional characters, such as unique places and artifacts. The following lists detail many of them.
Certain places feature prominently in the Marvel Universe, some real-life, others fictional and unique to the setting; fictional places may appear in conjunction with, or even within, real- world locales. A majority of dystopian cities have been used for their characters since the creation of Marvel Comics in the Marvel Universe.
Most of the action of Marvel Comics takes place in New York City.
New York is the site of many places important to superheroes:
The Lodge is an audio mastering facility located in Manhattan, New York City. It was founded by Emily Lazar in 1997. Over the years The Lodge has mastered recordings for many well known musicians, including David Bowie, The Subways, Foo Fighters, Lou Reed, Paul McCartney, Sinéad O'Connor, Natalie Merchant, Marianne Faithfull, and Madonna. The engineers have also mastered sound tracks for movies such as American Psycho and Thievery Corporation.
'The United Way' soundtrack is out now digitally: orcd.co/unitedway The film is available on Sky & Now TV Go behind the scenes of the making of George Fenton's soundtrack for 'The United Way', the story of Manchester United, with interviews and behind the scenes footage.
Provided to YouTube by Universal Music Group Ever After Main Title · George Fenton Ever After: A Cinderella Story ℗ 1998 Twentieth Century Fox Film Corporation Released on: 1998-01-01 Producer, Conductor: George Fenton Composer: George Fenton Auto-generated by YouTube.
George Fenton - theme from The Company of Wolves (1984): The Message / Main Theme
EXPANDED version with unbolocked tracks on RUMBLE https://rumble.com/v2j51l4-ever-after-suite-by-george-fenton.html
So I'm uploading the Blue Planet soundtrack for everyone. Enjoy, and remember, I own nothing here - the music goes to George Fenton and the BBC, and the pictures belong to their various owners.
Provided to YouTube by Universal Music Group Snow Plough · George Fenton Cold Pursuit ℗ 2019 StudioCanal, MAS Productions, Paradox Films, Under license to Varèse Sarabande Records, a division of Concord Music Group, Inc. Released on: 2019-02-08 Producer, Recording Producer: George Fenton Composer Lyricist: George Fenton Auto-generated by YouTube.
Provided to YouTube by Universal Music Group The Ruins · George Fenton Ever After: A Cinderella Story ℗ 1998 Twentieth Century Fox Film Corporation Released on: 1998-01-01 Producer, Conductor: George Fenton Composer: George Fenton Auto-generated by YouTube.
The best movie scores from british composer George Fenton.
Provided to YouTube by Universal Music Group Empty Store · George Fenton You've Got Mail ℗ 1998 Warner Bros. Released on: 1999-03-09 Associated Performer, Piano: Michael Lang Conductor: George Fenton Composer Lyricist: George Fenton Auto-generated by YouTube.
"Antarctic music" after "Frozen Planet" by George Fenton Camera and Video Design: Lothar Hauck #FrozenPlanet #AntarcticMusic #MusicfromtheIce
SUBSCRIBE HERE if you like poker → https://www.youtube.com/thelodgelive?sub_confirmation=1 Become the best player at the table with the comprehensive Upswing Lab training course. Use coupon code LODGE50 to save $50. Get started here: https://bit.ly/upswing-poker-lab Welcome back to the Lodge livestream! Everything's bigger in Texas... including the action on the felt! We are opening up the studio to fellow Lodge members. Which newcomer is going to come out on top? Find out UNDER THE LIGHTS! See The Lodge's cash game offerings and tournament schedule on https://thelodgepokerclub.com/ The Lodge Card Club is a members-only social club in Round Rock, Texas (just north of Austin). With 24/7 cash games and 2+ tournaments per day, The Lodge is THE place to play poker in central Texas. You ...
#thelodgeguys Welcome to our latest Vlog. We hope you enjoy it. Feel free to drop us a comment on the comments section. We love reading them ABOUT US ⇢ Welcome to our Youtube channel. We are Leigh and Nick, a couple from the UK In 2017, after ten years of running a business, We bought a Lodge on the east coast of England and started vlogging our day-to-day life and travels Join us as we explore the UK, Florida, Disney, and further afield as well as spend time at the Lodge on our own, with family, and with our friends SOCIAL MEDIA ⇢ PATREON: https://patreon.com/thelodgeguys ⇢ YOUTUBE MEMBERSHIP: https://www.youtube.com/channel/UC8QDV7GIjoe0yIW2EwJ9WJw/join ⇢ INSTAGRAM: https://www.instagram.com/thelodgeguys/ ⇢ MEMMO FOR SHOUTOUTS: https://memmo.me/gb/en/profile/the-lodge-guys-leigh-...
THE LODGE Official Trailer (2019) Riley Keough Horror Movie HD © 2019 - NEON Comedy, Kids, Family and Animated Film, Blockbuster, Action Cinema, Blockbuster, Scifi Movie or Fantasy film, Drama... We keep you in the know! Subscribe now to catch the best movie trailers 2017 and the latest official movie trailer, film clip, scene, review, interview.
#thelodge #endingexplained In The Lodge, a group is trapped in a remote winter cabin, and soon inexplicable things start to happen, and open the ghosts of young woman Grace's troubled past. What's really going on, or is it all in her mind? Find out all about the story's twists and turns, the important character arc of Grace, as well as explaining the abrupt yet ultimately terrifying ending. Subscribe! ►► http://bit.ly/2jrstgM Support FoundFlix on Patreon! ►► http://www.patreon.com/foundflix FACEBOOK ►► www.facebook.com/foundflix TWITTER ►► www.twitter.com/foundflix INSTAGRAM ►► www.instagram.com/foundflix FAN MAIL: FoundFlix 6009 W Parker Rd Suite 149-174 Plano TX 75093
You're not welcome here. #TheLodge is in theaters this February. Starring Riley Keough, Jaeden Martell, Lia McHugh, Alicia Silverstone, and Richard Armitage. Directed by Veronika Franz and Severin Fiala (Goodnight Mommy).
Five cooking configurations. Two pieces of cast iron. Endless possibilities. The Cook-It-All combines the utility of a cast iron camp Dutch oven with a griddle, grill pan, wok, skillet, and more for cooking over live fire or coal briquettes. Shop the Cook-It-All here: https://bit.ly/2Pi5DYf
🦐蝦皮 https://shope.ee/qAqJHnxey 🦐蝦皮6.5 L3SC3 蓋子 https://shope.ee/8KGrEvuBdW 🍳LODGE ReadyToUse最快的開鍋方法 2002年後米國田納西工廠生產的LODGE鑄鐵鍋都是大豆食用油塗佈防鏽。 在使用時只需(1)燒熱水,(2)炒點野菜去除怪味就行了。 00:00 覺得太重?輕量單手柄鑄鐵鍋介紹 01:17 STEP1 滾熱水 剛買來LODGE如何開新鍋 01:56 請注意鑄鐵鍋高溫很燙一定要用乾布並且不能持太久 02:21 STEP2 炒野菜去鐵味 03:18 鑄鐵鍋強項是煎煮 來顆太陽蛋或牛排吧 🍳這次新入手的LODGE 6.5吋~ 台灣對LODGE的印象幾乎都卡在COSTCO販售10吋三件組(13XX NTD)接近荷蘭鍋5.62公斤的雙手柄重量.連男生操作都要嬌喘一聲. 🍳實際上最好用的LODGE並沒有想像中那麼重. 繼台灣好找的最大單手柄8吋LODGE外. 這次買了戶外野炊員JIJII桑/HIRO桑/UNROOF桑還有鑄鐵鍋協會水口小姐專頁大推的6.5吋LODGE. 🍳6.5吋本體/900公克/MOMO入手 🍳6.5吋鍋蓋/630公克/日本AMAZON入手 🍳解除AMAZON封印後.自己三年前想買的東西終於入手啦. 請注意: (1)僅僅LODGE適用,宜得利NITORI或大創DAISO買的鑄鐵鍋通常是用一般防鏽油需要進行最少一潤一燒的程序。請見底下影片 🍳宜得利鑄鐵鍋開鍋 https://youtu.be/YzHwolF16o0 (2)安全第一,請勿長時間以乾抹布或隔熱套手持鑄鐵鍋,鑄鐵鍋儲蓄的熱能很高,會燙手,對您造成危險,使用時注意手持時間。 BGM:MusMus #LODGE #鑄鐵鍋 #露營餐具
BELIEVE THAT/STARTING OVER STARTING NOW performed by the cast of Disney Channel’s brand NEW! series The Lodge. Catch NEW! The Lodge every Friday @ 5.30pm on Disney Channel UK! Stream: https://open.spotify.com/album/3y8moaWUyGMv2kkkLvK28m Download: https://itun.es/gb/r2qCdb The Lodge soundtrack is available now! Download: http://disneymusic.co/TheLodge Streaming: http://disneymusic.co/TheLodgeWS Follow Disney Music: http://facebook.com/disneymusic http://twitter.com/disneymusic http://instagram.com/disneymusic http://snapchat.com/add/disneymusic Subscribe for new videos every day! → https://www.youtube.com/DisneyChannelUK Follow @DisneyChannelUK on Instagram → https://instagram.com/DisneyChannelUK Like Disney Channel UK on Facebook → http://www.facebook.com/DisneyChannelUK Check o...
https://mrcastiron.com/do-i-need-to-season-a-new-lodge-cast-iron-skillet/ Do I need to season a new lodge cast iron skillet? Folks, we got a brand new lodge 12-inch cast-iron skillet, and I'm wondering? Do I need to season this? Well, the label here says that it's a seasoned cast iron skillet, but as you can tell, it's not completely seasoned like a well-seasoned skillet should be. Yes, it's pre-seasoned, so let's go ahead and get this thing washed and cleaned up, and I'll show you what I do to one of these. The manufacturer suggests what to do and what not to do. So when I looked at the lodge cast iron seasoning instructions, I realized we had options to season or not to season. If you want to know how to season a cast iron skillet the right way, then be sure to watch this video al...
On this episode of ‘Dan Does,’ host Daniel Geneen visits the Lodge factory in Tennessee to see how cast iron pans go from scrap metal to must-have cookware. Credits: Host/Producer: Daniel Geneen Director: Connor Reid Camera: Connor Reid, Murilo Ferreira Editor: Lucy Morales Executive Producer: Stephen Pelletteri Development Producer: McGraw Wolfman Supervising Producer: Stefania Orrù Audience Engagement: Daniel Geneen, Terri Ciccone ---------------------------------------------------------------------------------------------------------- For more episodes of 'Dan Does,' click here: https://trib.al/V2w3eLg Eater is the go-to resource for food and restaurant obsessives with hundreds of episodes and new series, featuring exclusive access to dining around the world, rich culture, imme...
George Fenton (born George Richard Ian Howe; October 19, 1950) is an English composer best known for his work writing film scores and music for television such as for the BBC series The Blue Planet and Planet Earth.
Fenton was born in London and attended St Edward's School in Oxford where "he learnt his music" from Peter Whitehouse. He has no further formal training in music. Fenton's involvement with St Edward's continued as an adult and he has been a governor of the school since 1998.
Initially Fenton worked as an actor, getting an early break in 1968 with a part in Alan Bennett's first West End play Forty Years On. He had some success as an actor in the early 1970s appearing in the film Private Road, in Alan Bennett's first television play A Day Out directed by Stephen Frears, and in the soap opera Emmerdale Farm.
In 1969 Fenton tried his hand as a recording artist with a cover of The Beatles song Maxwell's Silver Hammer and in 1973 he dabbled in band management helping to get the folk-rock band Hunter Muskett a recording contract with Bradley's Records.
Cannot touch
Cannot hold
Cannot be together
Cannot love
Cannot kiss
Cannot have each other
Must be strong,
And we must let go
Cannot say
What our hearts must know
How can I not love you
What do I tell my heart
When do I not want you
Here in my arms
How does one walks away
From all the memories
How do I not miss you
When you are gone
Cannot dream
Cannot share
Sweet and tender moments
Cannot feel
How we feel
Must pretend it's over
Must be brave,
And we must go on
Must not say,
What we've known all along
How can I not love you
What do I tell my heart
When do I not want you
Here in my arms
How does one walks away
From all the memories
How do I not miss you
When you are gone
How can I not love you.
Must be brave,
And we must be strong
Cannot say,
What we've known all along.
How can I not love you
What do I tell my heart
When do I not want you
Here in my arms
How does one walks away
From all the memories
How do I not miss you
When you are gone
How can I not love you.