- published: 25 May 2011
- views: 3960277
'+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; })); }); -->
HIDDEN ERROR: Usage of "spouse" is not recognizedHIDDEN ERROR: Usage of "children" is not recognized
Dame Vera Lynn, DBE (born Vera Margaret Welch; 20 March 1917), widely known as "The Forces' Sweetheart", is an English singer, songwriter, and actress whose musical recordings and performances were enormously popular during the Second World War. During the war, she toured Egypt, India, and Burma, giving outdoor concerts for the troops. The songs most associated with her are "We'll Meet Again", "The White Cliffs of Dover", "A Nightingale Sang in Berkeley Square", and "There'll Always Be an England".
She remained popular after the war, appearing on radio and television in the UK and the United States and recording such hits as "Auf Wiederseh'n Sweetheart" and her UK Number one single "My Son, My Son".
In 2009, she became the oldest living artist to make it to No. 1 on the British album chart, at age 92. She has devoted much time and energy to charity work connected with ex-servicemen, disabled children, and breast cancer. She is still held in great affection by veterans of the Second World War and was named the Briton who best exemplified the spirit of the twentieth century in 2000.
"Lili Marleen" (also known as "Lili Marlen", "Lilli Marlene", "Lily Marlene", "Lili Marlène" and similar variants) is a German love song which became popular during World War II with soldiers of both sides.
Written as a poem in 1915, during World War I, it was published under the title "Das Lied eines jungen Soldaten auf der Wacht" (German for "The Song of a Young Soldier on Watch") in 1937 and was first recorded by Lale Andersen in 1939 under the title "Das Mädchen unter der Laterne" ("The Girl under the Lantern").
Following the Nazi invasion of Yugoslavia in 1941, Radio Belgrade became Soldatensender Belgrad and played the song frequently to entertain the German armed forces within its reach. It became popular throughout Europe and the Mediterranean among both Axis and Allied troops.
The words were written in 1915 during World War I by Hans Leip (1893–1983), a school teacher from Hamburg who had been conscripted into the Imperial German Army. Leip reportedly combined the nickname of his friend's girlfriend, Lili, with the first name of another female friend, Marleen, who was a nurse. The poem was later published as "Das Lied eines jungen Soldaten auf der Wacht" ("The Song of a Young Soldier on Watch") in 1937, now with the two last (of five) verses added.
Lilli Marlene is a 1950 British war film aimed for the US market and directed by Arthur Crabtree. It stars Lisa Daniely, Hugh McDermott, and Richard Murdoch. Stanley Baker is seen in one of his early support roles.
A French girl named Lilli Marlene, working in her uncle's café in Benghazi, Libya, turns out to be the girl that the popular German wartime song Lili Marleen had been written for before the war, so both the British and the Germans try to use her for propaganda purposes - especially as it turns out that she can sing as well. The Germans try to snatch her at one point, but don't succeed, and she performs several times for the British troops and also appears in radio broadcasts to the USA, arranged by Steve, an American war correspondent embedded with the British Eighth Army, who eventually becomes her boyfriend.
However, eventually she is kidnapped by the Germans in Cairo and brought to Berlin, where she is interrogated and repeatedly told that she had been tortured and brainwashed by the British to think that she was French, while she actually is German. Once the Germans think that she has been transformed into a loyal Nazi, they set up for her to do English broadcasts for the Third Reich. Her old British friends, and especially Steve, are very disappointed in her.
Lyrics: Underneath the lantern By the barrack gate Darling I remember The way you used to wait 'Twas there that you whispered tenderly That you loved me You'd always be My Lili of the lamplight My own Lili Marlene Time would come for roll call Time for us to part Darling I'd caress you And press you to my heart And there neath that far off lantern light I'd hold you tight We'd kiss good night My Lili of the lamplight My own Lili Marlene Orders came for sailing Somewhere over there All confined to barracks 'Twas more than I could bear I knew you were waiting in the street I heard your feet But could not meet My Lili of the lamplight My own Lili Marlene Resting in our billet Just behind the line Even though we're parted Your lips are close to mine You wait where that lantern softly gleamed Y...
Provided to YouTube by Parlophone UK Lili Marlene · Vera Lynn Vera Lynn Remembers - The Songs That Won World War 2 ℗ 1962 Parlophone Records Ltd, a Warner Music Group Company Composer: Hans Leip Composer: Norbert Schultze Composer: Rastelli Composer: Tommie Connor Auto-generated by YouTube.
Provided to YouTube by J. Joes J. Edizioni Musicali Lilli Marlene (Remastered 2019) · Vera Lynn Hits Of The Blitz ℗ J. Joes J. Edizioni Musicali Released on: 2019-03-31 Composer: Hans Leip / Norbert Schultze / Tommie Connor Lyricist: RR Auto-generated by YouTube.
requested by "never wrong @neverwrong2896" ! Thanks for Commenting! :) image: https://pin.it/1ypYxOW lyrics of the song: Underneath the lantern By the barrack gate Darling i remember The way you used to wait 'Twas there that you whispered tenderly That you loved me You'd always be My lili of the lamplight My own lili marlene Time would come for roll call Time for us to part Darling i'd caress you And press you to my heart And there neath that far off lantern light I'd hold you tight We'd kiss good night My lili of the lamplight My own lili marlene Orders came for sailing Somewhere over there All confined to barracks 'Twas more than i could bear I knew you were waiting in the street I heard your feet But could not meet My lili of the lamplight My own lili marlene Resting in our billet Just ...
This is me singing to a karaoke backing track that I own Written in 1915 as a poem, the song was published in 1937 and was first recorded by Lale Andersen in 1939 as "Das Mädchen unter der Laterne" ("The Girl under the Lantern"). We made this video at home during lockdown It formed part of my Facebook LIVE V E Day show on my page Sadie Yorkshire Singer
Vera Lynn song, "Lily Marlene," 1942, written by Tommie Connor. British World War 2 song, Adapted from a German song of the same name (Lili Marleen).
Provided to YouTube by Rhino Lili Marlene (2016 Remaster) · Vera Lynn Her Greatest From Abbey Road ℗ 1962, 2017 Parlophone Records Ltd, a Warner Music Group Company Arranger: Brian Fahey Producer: Norman Newell Remastering Engineer: Ted Carfrae Arranger: Tony Osborne Orchestra: Tony Osborne And His Orchestra Composer: Hans Leip Composer: Norbert Schultze Composer: Tommie Connor Auto-generated by YouTube.
The history of the song, Lili Marleen, is full of contradictions. A German composer set a poem born of the trenches of the First World War to music, and a German woman enamored of a Jew provided the voice that would make those verses famous. And oh, did I mention a natural-born German but Nazi-hating actress singing it both in German and English but rooting for the enemy? Mix all these things together and you have the making of a musical piece for all ages bound to break through all cultural and even ideological barriers. Broadcast just before 10 o'clock each night by a military radio station, Lili Marlene united and gave hope to the distraught and persecuted of all Europe. The world was cruelly divided into two irreconcilable camps, but Lili Marleen traveled across all frontiers an...
HIDDEN ERROR: Usage of "spouse" is not recognizedHIDDEN ERROR: Usage of "children" is not recognized
Dame Vera Lynn, DBE (born Vera Margaret Welch; 20 March 1917), widely known as "The Forces' Sweetheart", is an English singer, songwriter, and actress whose musical recordings and performances were enormously popular during the Second World War. During the war, she toured Egypt, India, and Burma, giving outdoor concerts for the troops. The songs most associated with her are "We'll Meet Again", "The White Cliffs of Dover", "A Nightingale Sang in Berkeley Square", and "There'll Always Be an England".
She remained popular after the war, appearing on radio and television in the UK and the United States and recording such hits as "Auf Wiederseh'n Sweetheart" and her UK Number one single "My Son, My Son".
In 2009, she became the oldest living artist to make it to No. 1 on the British album chart, at age 92. She has devoted much time and energy to charity work connected with ex-servicemen, disabled children, and breast cancer. She is still held in great affection by veterans of the Second World War and was named the Briton who best exemplified the spirit of the twentieth century in 2000.
Underneath the lantern
By the barrack gate
Darling I remember
The way you used to wait
'Twas there that you whispered tenderly
That you loved me
You'd always be
My Lili of the lamplight
My own Lili Marlene
Time would come for roll call
Time for us to part
Darling I'd caress you
And press you to my heart
And there neath that far off lantern light
I'd hold you tight
We'd kiss good night
My Lili of the lamplight
My own Lili Marlene
Orders came for sailing
Somewhere over there
All confined to barracks
'Twas more than I could bear
I knew you were waiting in the street
I heard your feet
But could not meet
My Lili of the lamplight
My own Lili Marlene
Resting in our billet
Just behind the line
Even though we're parted
Your lips are close to mine
You wait where that lantern softly gleamed
Your sweet face seems
To haunt my dreams
My Lili of the lamplight
My own Lili Marlene
My Lili of the lamplight