- published: 12 Jan 2020
- views: 3415472
'+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; })); }); -->
Matt Monro (1 December 1930 – 7 February 1985), known as The Man With The Golden Voice, was an English singer who became one of the most popular entertainers on the international music scene during the 1960s and 1970s. Throughout his 30-year career, he filled cabarets, nightclubs, music halls, and stadiums in Australia, Japan, the Philippines, and Hong Kong to Africa, the Middle East, Europe, and the Americas. AllMusic has described Monro as "one of the most underrated pop vocalists of the '60s", who "possessed the easiest, most perfect baritone in the business".
He was born Terence Edward Parsons in Shoreditch, London and attended Duncombe School in Islington, and Elliott School in Putney. Matt was first noticed while serving in the British military in Hong Kong.
A regular guest (and frequent winner) of Radio Rediffusion's Talent Time show, he was invited by then-host Ray Cordeiro to perform in his own one-off show, on the condition that he would bow out of future Talent Time episodes to make way for others. Agreeing to the deal, he performed his first on-air concert for Rediffusion on June 27th, 1953.
"Born Free" is a popular song with music by John Barry, and lyrics by Don Black. It was written for the 1966 film of the same name and won an Academy Award for Best Original Song.
Lyricist Don Black managed British singer Matt Monro at the time, and he and Barry asked him to record the song for the film's soundtrack. The producers of the film considered the song uncommercial, however, and deleted it from the print shown at its Royal Command premiere in London. When Monro, who attended the event, made Black aware of the edit, they lobbied the producers to restore it, citing the burgeoning commercial success of the song. Monro's interpretation appeared over the closing credits in a shortened version recorded especially for the film, which enabled it to qualify for the Academy Award. Monro's complete commercial recording was released on the film's soundtrack album and became the singer's signature tune for the remainder of his career.
Roger Williams, Andy Williams, and Frank Sinatra all recorded cover versions. Roger Williams' version reached number seven on the Billboard Hot 100 and number one on the Adult contemporary chart for six non-consecutive weeks in September/October 1966, while Andy Williams' version was not released as a single. Ed Ames recorded a version of the song in a 1968 album. "Born Free" also appeared on the Vic Reeves album I Will Cure You. Released as a single, this version peaked at #6 in the UK Singles Chart in 1991.
Born Free is a 1966 British drama film starring Virginia McKenna and Bill Travers as Joy and George Adamson, a real-life couple who raised Elsa the Lioness, an orphaned lion cub, to adulthood, and released her into the wilderness of Kenya. The movie was produced by Open Road Films Ltd. and Columbia Pictures. The screenplay, written by blacklisted Hollywood writer Lester Cole (under the pseudonym "Gerald L.C. Copley"), was based upon Joy Adamson's 1960 non-fiction book Born Free. The film was directed by James Hill and produced by Sam Jaffe and Paul Radin. Born Free, and its musical score by John Barry, won numerous awards.
When George Adamson is forced to kill a lioness out of self-defense, he brings home the 3 orphaned cubs she had been trying to protect. The Adamsons tend to the three orphaned lion cubs to young lionhood, and, when the time comes, the two largest are sent to the Rotterdam Zoo, while Elsa the Lioness (the smallest of the litter) remains with Joy. When Elsa is held responsible for stampeding a herd of elephants through a village, John Kendall, Adamson's boss gives the couple three months to either rehabilitate Elsa to the wild, or send her to a zoo. Joy opposes sending Elsa to a zoo, and spends much time attempting to re-introduce Elsa to the life of a wild lion in a distant reserve. At last, Joy succeeds, and with mixed feelings and a breaking heart, she returns her friend to the wild. The Adamsons then depart for their home in England; a year later, they return to Kenya for a week, hoping to find Elsa. They do, and happily discover she hasn't forgotten them, and is the mother of three cubs.
Born Free is American artist Kid Rock’s eighth studio album. It released on November 16, 2010 with the title track being its lead single. The album is a rock and roll collaboration produced by Rick Rubin featuring several high profile artists such as, T.I., Sheryl Crow, and Bob Seger. This is Kid Rock's first album not to feature a Parental Advisory sticker. It is also described as a country music album. Kid Rock described it as "very organic blues-based rock and roll". Cable network TBS used the title track, "Born Free", for its coverage of the 2010 Major League Baseball postseason. It was announced on June 16, 2011 that Born Free was certified Platinum by the RIAA for shipments in excess of one million copies. This gives Kid Rock his sixth Platinum album certification in the US. A Michigan only promotion was released with the album. It was a 4 song EP called "Racing Father Time".
The album's lead single was the title track. The songs promotional push included being the theme for the MLB Playoffs,European Music Awards and the CMA Festival. He also performed "Times Like These" at the American Music Awards and "Care" at the Rally for Sanity. This led to a debut of 189,000 copies sold and landing at number five on the billboard top 200. VH-1 aired the Isle of Malta concert special. The following single "God Bless Saturday" became the secondary theme song for ESPN's College Game Day. The third single "Collide" saw him reunite with Sheryl Crow and go on a joint tour together. "Purple Sky" failed to chart and the final single was "Care" with rapper TI and depending on the version Martina McBride,Mary J Blidge or Angelenna Pressly of the Pistol Annies. The song lead to a 12 city charity tour,all the money from the tour went to 12 cities personally choice for donation.
Born Free is an album by vibraphonist Milt Jackson recorded in 1966 and released on the Limelight label.
The Allmusic review by Ken Dryden awarded the album 4 stars stating "This obscure mid-'60s record by Milt Jackson has few surprises, though many jazz fans would be suspicious that the theme from the movie Born Free would turn into a viable jazz vehicle. Jackson's funky treatment of this normally laid-back piece works very well".
Matt Monro Greatest Hits Full Album - The Best Of Matt Monro 2020 https://youtu.be/MO5DwMWN3dA #musicas, #internacionais, #mattmonro, #elvispresley, #perrycomo Hello world music lovers. If you like, share and contribute more ideas about music. Do not forget to subscribe to my Musicas Internacionais channel. Thanks very much! - Link My Channel Youtube.com 💖 https://bit.ly/2ZfoHyW - Link My Channel Twitter.com 💖 https://bit.ly/2TbPxny
Follow Us On Facebook https://www.facebook.com/romanticmusicarea2/ ❤
Matt Monro performing 'And You Smiled' on the British TV show 'Matt Sings Monro' in October 1974. Footage licensed from BBC Studios Distribution. All rights reserved. To stay up to date with all new releases on the channel subscribe here: https://bit.ly/3grSpr2 #MattMonro
Music to Pictures of Matt Monro.
The opening scene for the film "The Italian Job" (1969) featured Monro singing "On Days Like These". Music by Quincy Jones and lyrics by Don Black. Matt Monro (1 December 1930 -- 7 February 1985) was an English singer who became one of the most popular entertainers on the international music scene during the 1960's. The Italian Job is a 1969 British caper film, written by Troy Kennedy Martin, produced by Michael Deeley and directed by Peter Collinson. It's soundtrack was composed by Quincy Jones. Quincy Jones (better-known for his production of several Michael Jackson records, and has worked with stars such as Frank Sinatra and Ella Fitzgerald) was handed the task of producing the music score for The Italian Job as director Peter Collinson wanted to give the pennyless musician a chance...
Matt Monro Best Songs Collection - Greatest Matt Monro Hits Of All Time https://youtu.be/CTAx1gB1cuE Hello world music lovers. If you like, share and contribute more ideas about music. Do not forget to subscribe to my Musicas Internacionais channel. Thanks very much!
Beautiful song by Matt Monro... Music: Walk Away by Matt Monro Thank you for watching!
Watch the official music video for Born Free by Kid Rock from the album Born Free. 🔔 Subscribe to the channel: https://youtube.com/c/kidrock?sub_confirmation=1 Watch the best Kid Rock videos on YouTube here: http://www.youtube.com/playlist?list=PLakoz4isJL_ndybf7wxBheRx1BZW9unvL Follow Kid Rock: Website: https://kidrock.com/ Facebook: https://www.facebook.com/kidrock Twitter: https://twitter.com/kidrock Instagram: https://www.instagram.com/kidrock Kid Rock is a singer renowned for his hit songs “Picture,” “Only God Knows Why,” “All Summer Long,” “Born Free,” “Cowboy,” “Redneck Paradise,” and “First Kiss.” He worked with artists like Sheryl Crow, Aerosmith, Run DMC and T.I. — amassing billions of global streams and receiving international acclaim. Lyrics: Fast, on a rough road riding ...
Title Track from Born Free the movie
Matt Monro performing 'Birth Of The Blues' in 'The Big Ben Show' on the British TV in December 1982. Footage licensed from BBC Studios Distribution. All rights reserved. To stay up to date with all new releases on the channel subscribe here: https://bit.ly/3grSpr2 #MattMonro
Hey Everyone! In this video we ride down to LA for the Born Free 15 Motorcycle show. We ripped down to SLO where we stayed the first night, and on our way back went to Kernville, then Lone Pine, Then through Yosemite. Lots of 35mm film photos of this trip that will is at the end of this video! Thanks to everyone that stopped by to say hi to us during the show. We enjoyed meeting and chatting with everyone! Thanks to all the brands that sponsored the trip! Check them out! Beetle helmets https://beetlehelmets.com Rolling death Maui https://rollingdeathmaui.com Grady and James https://gradyandjames.com Thanks to all of the Band and musicians that contributed. Check them out! Kitschen Boy (https://open.spotify.com/artist/3us25I84azA5CwbzFMB8vC?si=yiVU6wXjQ3qvhU-Tq8pK9g...
Matt Monro sings 'Born Free' (with lyrics) Matt Monro was one of Britain’s most iconic singers. He recorded the very first James Bond Theme song –‘From Russia With Love’ – represented Britain in the Eurovision Song contest in 1964 with ‘I Love the Little Things’ (in Copenhagen) – finishing second - and had many international hits which included ‘Born Free’, ‘Walk Away’, and ‘Portrait of My Love’. Matt died on 7 February 1985 aged 54 and only 5 days after receiving a telegram from Frank Sinatra which said: “Sorry to hear that you've taken ill and hope you'll soon be on the mend and up and about. I send you love and prayers. Your fellow boy singer, Frank Sinatra" Frank Sinatra said of Matt: "His pitch was right on the nose: his word enunciation letter perfect: his understanding of a song...
Born Free Sing by Matt Monro, Lyrics by Don Black, Music by John Barry Born free, as free as the wind blows As free as the grass grows Born free to follow your heart Live free, and beauty surrounds you The world still astounds you Each time you look at a star *Stay free, where no walls divide you You're free as a roaring tide So there's no need to hide Born free, and life is worth living But only worth living Cause you're born free
Music video by M.I.A. performing Born Free. Subscribe: https://MIA.lnk.to/Subscribe Watch more: https://MIA.lnk.to/WatchMore Connect with M.I.A. Online: Follow M.I.A. on Instagram: https://MIA.lnk.to/Instagram Like M.I.A. on Facebook: https://MIA.lnk.to/Facebook Follow M.I.A. on Twitter: https://MIA.lnk.to/Twitter #MIA #BornFree
Hey travelers! If you are looking for a cool & trendy area to visit in Barcelona, EL BORN NEIGHBORHOOD is definitely the place! Home of designers, best bars, and many secrets I'm gonna share with you guys! Join our tours in Barcelona! pickapictour.com Follow me! https://www.instagram.com/pickapictour Download my Barcelona Travel Guide app (no internet needed!) https://www.tripaim.com/?afp=UzNocFEwVjBZbnBQTlV0VU0zbFplVmhQT1hJclp6MDk Request a free map from El Born at: [email protected] Facebook Groups: Girls in Barcelona: https://www.facebook.com/groups/269879940564633/ Watch my videos: Best souvenir in Barcelona: https://youtu.be/V19e2a3-akA Hidden gems in Barcelona: https://youtu.be/0O44lDmP8DA 1 day in Barcelona: https://youtu.be/zGxT_sBGQCE Another cool neighborhood in Ba...
Directed by James Hill and Tom McGowan with Virginia McKenna and Bill Travers. Born Free Blu-ray (Amazon) https://amzn.to/3O78q6N Born Free Blu-ray (Eureka) https://eurekavideo.co.uk/movie/born-free/ AKA: A História de Elsa Elsa - vapaana syntynyt Elsa dochter der natuur Elza z afrykanskiego buszu Elza, a vadon szülötte Frei geboren - Königin der Wildnis Född fri - Lejonet Elsa Født til frihed Gennimeni eleftheri Hür Doğanlar Königin der Wildnis La leona de dos mundos Løvinnen Elsa Nacida libre Nata libera Uma Leoa Chamada Elsa Una leona de dos mundos Vivre libre Volání divociny Vrij leven Лъвицата Елза Рожденная свободной 獅子與我 野生のエルザ
Matt Monro (1 December 1930 – 7 February 1985), known as The Man With The Golden Voice, was an English singer who became one of the most popular entertainers on the international music scene during the 1960s and 1970s. Throughout his 30-year career, he filled cabarets, nightclubs, music halls, and stadiums in Australia, Japan, the Philippines, and Hong Kong to Africa, the Middle East, Europe, and the Americas. AllMusic has described Monro as "one of the most underrated pop vocalists of the '60s", who "possessed the easiest, most perfect baritone in the business".
He was born Terence Edward Parsons in Shoreditch, London and attended Duncombe School in Islington, and Elliott School in Putney. Matt was first noticed while serving in the British military in Hong Kong.
A regular guest (and frequent winner) of Radio Rediffusion's Talent Time show, he was invited by then-host Ray Cordeiro to perform in his own one-off show, on the condition that he would bow out of future Talent Time episodes to make way for others. Agreeing to the deal, he performed his first on-air concert for Rediffusion on June 27th, 1953.