'+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; })); }); -->

Podcasts:

  • 1981 Woolwich market area and Royal Arsenal gatehouse

    This YouTube video takes you on a trip down memory lane to the Woolwich market area in 1981. The video captures the vibrant atmosphere of the Woolwich market, with lively traders and a wide variety of stalls selling fresh produce, veg, meat, seafood, clothes and more. The market was bustling with activity, and the video's viewers who lived in this era can almost smell the aroma of fresh seafood and butcher meats. The market traders selling their wares to the Royal Arsenal gatehouse in the background, adding a touch of history to the bustling market scene. The video also shows a road running through the middle of the market, adding to the hustle and bustle of the area. The video serves as a reminder of how the market used to be and how it has changed over time. It's a nostalgic look at a by...

    published: 03 Jan 2023
  • 【倫敦新地鐵河景盤】🇬🇧Woolwich 泰晤士河畔豪華公寓|坐擁🚆伊利沙白綫車站 ⭐五星級設施配套 #大型地區升級計劃 #龍頭發展商

    🇬🇧Woolwich 泰晤士河畔豪華公寓 坐擁🚆伊利沙白綫車站及⭐五星級設施配套 💰一房 £54.5萬起丨兩房 £76萬起 位處倫敦東南部、泰晤士河邊的Woolwich小鎮曾經是皇家兵工廠,亦是阿仙奴球會⚽️和皇家兵工合作社的誕生地。小區各處保留20座獨特歷史保護建築,對比項目採用金屬色調外牆,新舊建築完美糅合。位於項目小區內的Woolwich站已經通車,完美坐擁 ✅ #伊利沙伯線 、✅泰晤士河畔美景 ,加上 ✅ #五星級配套,Royal Arsenal Riverside絕對是最值得留意的📈倫敦升值潛力盤之一。 . 📍On-site Crossrail Station! 坐擁新通車🚆伊利沙白綫Woolwich站,7分鐘到新金融城Canary Wharf ,直達舊金融城Liverpool Street亦只需14分鐘。項目亦設🛥️Thames Clipper水上巴士站,而步行約300米亦可到 DLR 車站。 🛍️ 項目小區內有 Marks & Spencer、Tesco Express、Sainsbury's 超市,🍴 亦有不少Cafe、酒吧及餐廳等,還有診所和牙醫,生活所需舉步可達。 🏊🏻‍♀️ 坐擁倫敦最大的私人會所之一 - The Waterside Club,設有20米游泳池、桑拿浴室、蒸汽浴室、健身室、私人電影院和 24 小時禮賓服務等五星級住戶設施。🌳 泰晤士河畔步道及毗鄰佔地 4 英畝的 Maribor Park,提供讓你隨時放鬆心情的好去處。 🆕 正在實施中、直至2030年的Woolwich Arsenal大型更新活化工程 - 市內全面升級,British Land 重新打造全新High Street! 地區升級計劃中的綜合式大型項目 Woolwich Exchange,提供包括美食廣場、大型影院及各式新商店進駐。項目旁邊的活化創意區 Woolwich...

    published: 27 Jul 2022
  • SOUTH ➡️ NORTH LONDON: The truth about Arsenal Football Club

    Arsenal FC moved from south to north London. Here's why! 👇USE CODE FOOTY15 AT CHECKOUT👇 https://foco-uk.sjv.io/c/3507195/1402413/12766 Arsenal began life in Woolwich as Dial Square. They later changed name and stadium a few times. In this video I'll take you to their historic birthplace south of the River Thames (now the Dial Arch pub). From there we'll explore the old Manor Ground as well as Highbury and the Emirates Stadium. Arsenal have a wonderful history!!! My Social Media: INSTAGRAM: https://www.instagram.com/footy.adventures/ TWITTER: https://twitter.com/The_Sam_North #arsenal #football #london

    published: 20 Jul 2022
  • BUY AN APARTMENT WITH A 5% DEPOSIT AT ROYAL ARSENAL RIVERSIDE | SE London | Berkeley + Metro Bank

    Hi guys! check out these apartments which you can buy using only a 5% deposit! Join me at the development on June 10th! Sign up here --- https://tinyurl.com/3r5eyc9e Galley Wharf is one of the newest collections of elegant riverside 1 & 2 bedroom apartments at Royal Arsenal Riverside. Nestled along the River Thames, with surrounding landscaped gardens, exclusive to residents. Each home is complete with high specifications, bold interiors and spacious outdoor spaces, with a private balcony or terrace. These exclusive 1 & 2 bedroom homes are available from £447,500 ready to move into next year, with a 5% deposit & an additional 5% contribution from Berkeley* You can pay as little as £1,971 per month* with Metro Bank New Build Mortgage of 90% loan-to-value (LTV). This video is in colla...

    published: 06 Jun 2023
  • 1964 WOOLWICH - The significance, history, character, decline, markets, ferry, theatres, landmarks..

    Credits: RAH acknowledges the contribution of the following individuals to this video: Director, Writer, Producer, 2nd Unit Camera: Alan G. Bell; Director of Photography: Colin Richards; Music composer: Inigo Kilborn; Editor: James Elderton; Rostrum Camera: Terry Elsey; Sound Supervision: Stanley Smart; Sound Mixer: Bruce White. A full version of this video can be found on the London Screen Archives website, please visit: https://www.londonsscreenarchives.org.uk/title/182/ where you can find a full video description helped created by Plumstead people community facebook group and other local groups. For a full description see this link. https://www.londonsscreenarchives.org.uk/title/182/ 1964 Woolwich - Video footage of Beresford square market, the indoor covered market, the Woolwich fe...

    published: 09 Mar 2023
  • Walking in Woolwich Arsenal - Powis Street and Hare Street - South East London - Greenwich

    Subscribe and leave a comment please. I used to work in the area. Every morning I used to come out of this station and queue up at the bus station. Sometimes I would walk.., not that often as it was a 15 minutes walk. I remember the morning of the interview, not knowing the area I came early and I went to the large Tesco store. They have a coffee shop there and I had a camomile tea with something to eat.., can't remember what. I had not even noticed that my winter coat was ripped. The interview went well though despite my coat. :) If you find value in the content I produce and would like to contribute in a meaningful way, I kindly ask for your consideration of a small donation by clicking on the PayPal link on my homepage, under the name of the channel. Your support will enable me to enh...

    published: 24 Aug 2021
  • 【BNO英國生活】東倫敦 Zone4 Woolwich Arsenal | 高升值能力? | 住了半年的感受 | 適合一家大細 | 泰晤士河景色 | Royal Arsenal

    帶你到 Woolwich Arsenal 兜一個圈 ( ͡❛ ͜ʖ ͡❛) INSTAGRAM / @callmeabywong ( ❛ ͜ʖ ❛ )ENQUIRY / callmeabywong@gmail.com ❤️ (✿˵•́ ᴗ •̀˵)❤️ 👋 希望大家都鍾意睇我嘅片,歡迎比啲鼓勵同支持~全數收入將會用作提升Channel質素 ☕ 💕 https://www.buymeacoffee.com/abywong Music by 8thDimensions - Reflection - https://thmatc.co/?l=B0D84624

    published: 26 Jul 2021
  • Drone Film 2022 - Royal Arsenal Riverside | Berkeley

    Visit our website: https://www.berkeleygroup.co.uk/developments/london/woolwich/royal-arsenal-riverside

    published: 03 Jan 2023
  • Top Arsenal Goal Scorers This Season 22/23 #shorts

    This video will show you the top Arsenal FC’s goal scorers this Premier League season (2022-23). Arsenal Football Club is an English professional football club based in Islington, North London. Arsenal play in the Premier League, the top flight of English football. The club has won 13 league titles (including one unbeaten title), a record 14 FA Cups, two League Cups, 16 FA Community Shields, one European Cup Winners' Cup, and one Inter-Cities Fairs Cup. In terms of trophies won, it is the third-most successful club in English football. Arsenal was the first club from the South of England to join the Football League in 1893, and they reached the First Division in 1904. Relegated only once, in 1913, they continue the longest streak in the top division, and have won the second-most top-fli...

    published: 30 Jul 2023
  • Royal Arsenal Riverside Lifestyle Film; Live the Riverside Life | Berkeley

    Visit the website here - https://www.berkeleygroup.co.uk/developments/london/woolwich/royal-arsenal-riverside

    published: 23 Jun 2023
1981 Woolwich market area and Royal Arsenal gatehouse
2:20

1981 Woolwich market area and Royal Arsenal gatehouse

  • Order:
  • Duration: 2:20
  • Uploaded Date: 03 Jan 2023
  • views: 10442
This YouTube video takes you on a trip down memory lane to the Woolwich market area in 1981. The video captures the vibrant atmosphere of the Woolwich market, with lively traders and a wide variety of stalls selling fresh produce, veg, meat, seafood, clothes and more. The market was bustling with activity, and the video's viewers who lived in this era can almost smell the aroma of fresh seafood and butcher meats. The market traders selling their wares to the Royal Arsenal gatehouse in the background, adding a touch of history to the bustling market scene. The video also shows a road running through the middle of the market, adding to the hustle and bustle of the area. The video serves as a reminder of how the market used to be and how it has changed over time. It's a nostalgic look at a bygone era and a glimpse into the past for those who never had the chance to experience it so it can be compared to today. Please click this link to subscribe https://www.youtube.com/@royal-arsenal-history?sub_confirmation=1 for more videos like this. September 1981 - Thames News footage For family research, rare footage, rare photos and documents can be found here by joining RAH groups: www.facebook.com/groups/royal.arsenal.history (2500+ Facebook group members can help you) www.royal-arsenal-history.com (Facebook Page) www.instagram.com/rahistory_com www.twitter.com/rahistory_com www.facebook.com/RoyalArsenalHistory www.facebook.com/groups/ThamesmeadSE28 This material is used on a non-commercial basis for educational purposes only, specifically for teaching and bringing discussion about local history. It is featured on Royal-Arsenal-history.com, a website that is primarily information-led, research-oriented, and not behind a paywall. The material is also shared on social media accounts, such as the Facebook page at https://www.facebook.com/RoyalArsenalHistory/, with the intention of promoting discussion and interest in local history.
https://wn.com/1981_Woolwich_Market_Area_And_Royal_Arsenal_Gatehouse
【倫敦新地鐵河景盤】🇬🇧Woolwich 泰晤士河畔豪華公寓|坐擁🚆伊利沙白綫車站 ⭐五星級設施配套 #大型地區升級計劃 #龍頭發展商
19:34

【倫敦新地鐵河景盤】🇬🇧Woolwich 泰晤士河畔豪華公寓|坐擁🚆伊利沙白綫車站 ⭐五星級設施配套 #大型地區升級計劃 #龍頭發展商

  • Order:
  • Duration: 19:34
  • Uploaded Date: 27 Jul 2022
  • views: 46652
🇬🇧Woolwich 泰晤士河畔豪華公寓 坐擁🚆伊利沙白綫車站及⭐五星級設施配套 💰一房 £54.5萬起丨兩房 £76萬起 位處倫敦東南部、泰晤士河邊的Woolwich小鎮曾經是皇家兵工廠,亦是阿仙奴球會⚽️和皇家兵工合作社的誕生地。小區各處保留20座獨特歷史保護建築,對比項目採用金屬色調外牆,新舊建築完美糅合。位於項目小區內的Woolwich站已經通車,完美坐擁 ✅ #伊利沙伯線 、✅泰晤士河畔美景 ,加上 ✅ #五星級配套,Royal Arsenal Riverside絕對是最值得留意的📈倫敦升值潛力盤之一。 . 📍On-site Crossrail Station! 坐擁新通車🚆伊利沙白綫Woolwich站,7分鐘到新金融城Canary Wharf ,直達舊金融城Liverpool Street亦只需14分鐘。項目亦設🛥️Thames Clipper水上巴士站,而步行約300米亦可到 DLR 車站。 🛍️ 項目小區內有 Marks & Spencer、Tesco Express、Sainsbury's 超市,🍴 亦有不少Cafe、酒吧及餐廳等,還有診所和牙醫,生活所需舉步可達。 🏊🏻‍♀️ 坐擁倫敦最大的私人會所之一 - The Waterside Club,設有20米游泳池、桑拿浴室、蒸汽浴室、健身室、私人電影院和 24 小時禮賓服務等五星級住戶設施。🌳 泰晤士河畔步道及毗鄰佔地 4 英畝的 Maribor Park,提供讓你隨時放鬆心情的好去處。 🆕 正在實施中、直至2030年的Woolwich Arsenal大型更新活化工程 - 市內全面升級,British Land 重新打造全新High Street! 地區升級計劃中的綜合式大型項目 Woolwich Exchange,提供包括美食廣場、大型影院及各式新商店進駐。項目旁邊的活化創意區 Woolwich Works,擁有超過 15,000 平方米的文化表演、視覺藝術和劇院空間。 項目由英國龍頭發展商Berkeley打造,提供1至3房公寓選擇 【項目】Royal Arsenal Riverside 【位置】London, Woolwich, SE18 【預計新一期最快入伙日期】2024年上半年 【入場費】1房 £54.5萬+|2房 £76萬+ #SHlondon #RAR #London #Woolwich #ElizabethLine #Greenwich #UKProperty #物業投資 #移民 #自住 #被動式收入
https://wn.com/【倫敦新地鐵河景盤】🇬🇧Woolwich_泰晤士河畔豪華公寓|坐擁🚆伊利沙白綫車站_⭐五星級設施配套_大型地區升級計劃_龍頭發展商
SOUTH ➡️ NORTH LONDON: The truth about Arsenal Football Club
27:15

SOUTH ➡️ NORTH LONDON: The truth about Arsenal Football Club

  • Order:
  • Duration: 27:15
  • Uploaded Date: 20 Jul 2022
  • views: 35816
Arsenal FC moved from south to north London. Here's why! 👇USE CODE FOOTY15 AT CHECKOUT👇 https://foco-uk.sjv.io/c/3507195/1402413/12766 Arsenal began life in Woolwich as Dial Square. They later changed name and stadium a few times. In this video I'll take you to their historic birthplace south of the River Thames (now the Dial Arch pub). From there we'll explore the old Manor Ground as well as Highbury and the Emirates Stadium. Arsenal have a wonderful history!!! My Social Media: INSTAGRAM: https://www.instagram.com/footy.adventures/ TWITTER: https://twitter.com/The_Sam_North #arsenal #football #london
https://wn.com/South_➡️_North_London_The_Truth_About_Arsenal_Football_Club
BUY AN APARTMENT WITH A 5% DEPOSIT AT ROYAL ARSENAL RIVERSIDE | SE London | Berkeley + Metro Bank
8:55

BUY AN APARTMENT WITH A 5% DEPOSIT AT ROYAL ARSENAL RIVERSIDE | SE London | Berkeley + Metro Bank

  • Order:
  • Duration: 8:55
  • Uploaded Date: 06 Jun 2023
  • views: 1642
Hi guys! check out these apartments which you can buy using only a 5% deposit! Join me at the development on June 10th! Sign up here --- https://tinyurl.com/3r5eyc9e Galley Wharf is one of the newest collections of elegant riverside 1 & 2 bedroom apartments at Royal Arsenal Riverside. Nestled along the River Thames, with surrounding landscaped gardens, exclusive to residents. Each home is complete with high specifications, bold interiors and spacious outdoor spaces, with a private balcony or terrace. These exclusive 1 & 2 bedroom homes are available from £447,500 ready to move into next year, with a 5% deposit & an additional 5% contribution from Berkeley* You can pay as little as £1,971 per month* with Metro Bank New Build Mortgage of 90% loan-to-value (LTV). This video is in collaboration with Berkeley Group #Londonapartment #newhome #apartmenttour
https://wn.com/Buy_An_Apartment_With_A_5_Deposit_At_Royal_Arsenal_Riverside_|_Se_London_|_Berkeley_Metro_Bank
1964 WOOLWICH - The significance, history, character, decline, markets, ferry, theatres, landmarks..
33:20

1964 WOOLWICH - The significance, history, character, decline, markets, ferry, theatres, landmarks..

  • Order:
  • Duration: 33:20
  • Uploaded Date: 09 Mar 2023
  • views: 12322
Credits: RAH acknowledges the contribution of the following individuals to this video: Director, Writer, Producer, 2nd Unit Camera: Alan G. Bell; Director of Photography: Colin Richards; Music composer: Inigo Kilborn; Editor: James Elderton; Rostrum Camera: Terry Elsey; Sound Supervision: Stanley Smart; Sound Mixer: Bruce White. A full version of this video can be found on the London Screen Archives website, please visit: https://www.londonsscreenarchives.org.uk/title/182/ where you can find a full video description helped created by Plumstead people community facebook group and other local groups. For a full description see this link. https://www.londonsscreenarchives.org.uk/title/182/ 1964 Woolwich - Video footage of Beresford square market, the indoor covered market, the Woolwich ferry, and the former Royal Artillery theatre. Various landmarks can be seen while learning about the area's declining significance and the impact of the possible closure of the Arsenal. history and the importance of the Royal Artillery and the Royal Military Academy, the expansion of armaments and the workforce, Woolwich in the swinging 60s... This material is used on a non-commercial basis for educational purposes only, specifically for teaching and bringing discussion about local history. It is featured on Royal-Arsenal-history.com, a website that is primarily information-led, research-oriented, and not behind a paywall. The material is also shared on social media accounts, such as the Facebook page at https://www.facebook.com/RoyalArsenalHistory/, with the intention of promoting discussion and interest in local history. For family research, rare footage, rare photos and documents can be found here: Please click this link to subscribe https://www.youtube.com/@royal-arsenal-history?sub_confirmation=1 for more videos like this. www.facebook.com/groups/royal.arsenal.history (2000+ members can help you) www.royal-arsenal-history.com www.instagram.com/rahistory_com www.twitter.com/rahistory_com www.facebook.com/RoyalArsenalHistory More here: https://www.royal-arsenal-history.com/final-years.html In 1964, during the Charlton Athletic versus Norwich City Division 2 League match, a sequence was captured from different areas of the Charlton stands, including the back, mid-stands, and closer views. The footage showed Norwich City's Bill Punton dribbling the ball forwards, while the largely male crowd, with a few women and girls, clapped in appreciation. The narrator commented that 60 years prior, on a Saturday afternoon, Woolwich Arsenal workers would have played for the Arsenal team. However, the narrator lamented that the modern-day Arsenal players do not care much about their origins. A still photograph of the 1905-6 Woolwich Arsenal League Team was also shown. As the narrator discussed the declining significance of Woolwich, workers were shown leaving through Woolwich Arsenal's Middle Gate on Plumstead Road. They departed on foot, bikes, and in cars, with a VW Beetle leading the way. Policemen were seen directing traffic on either side of the Royal Arsenal Gatehouse on Beresford Square. The narrator warned that the arsenal might shut down unless people like Frank Glasson fought to keep it open. Frank Glasson, dressed in a suit, was filmed sitting on a wooden bench at Shrewsbury Park. The camera captured him from the front, in close-up, and from behind, looking downhill over Woolwich. The panoramic view included Plumcroft Primary School. A closer view over the rooftops from the park showed the Rockmount Estate and panned to Woolwich Power Station. Mr Glasson spoke about his long service at the Arsenal, the impact of a possible closure, and a petition to Parliament against the decision. The scene then shifted to views of the Houses of Parliament and Big Ben, with the beginning of the petition being read out. According to the narrator, Woolwich had to fight for its survival in the past. In 1906, Arsenal workers, led by Will Crooks, who was the Labour M.P for Woolwich East, organized a rally in Trafalgar Square and presented a petition to the Prime Minister. A still photo was shown of the crowded rally, which included a brass band, policemen, and a large banner demanding "A Fair Share of the Nation's Work." Another photo depicted the crowd at Trafalgar Square, with policemen and rally leaders, including Ramsay MacDonald and Will Crooks (holding the petition) in a group to the side of a lion statue. Former Labour Party leader Arthur Henderson was seen standing in front of the lion. For family research, rare footage, rare photos and documents can be found here: www.facebook.com/groups/royal.arsenal.history (2000+ members can help you) www.royal-arsenal-history.com www.instagram.com/rahistory_com www.twitter.com/rahistory_com www.facebook.com/RoyalArsenalHistory
https://wn.com/1964_Woolwich_The_Significance,_History,_Character,_Decline,_Markets,_Ferry,_Theatres,_Landmarks..
Walking in Woolwich Arsenal - Powis Street and Hare Street - South East London - Greenwich
9:00

Walking in Woolwich Arsenal - Powis Street and Hare Street - South East London - Greenwich

  • Order:
  • Duration: 9:00
  • Uploaded Date: 24 Aug 2021
  • views: 20143
Subscribe and leave a comment please. I used to work in the area. Every morning I used to come out of this station and queue up at the bus station. Sometimes I would walk.., not that often as it was a 15 minutes walk. I remember the morning of the interview, not knowing the area I came early and I went to the large Tesco store. They have a coffee shop there and I had a camomile tea with something to eat.., can't remember what. I had not even noticed that my winter coat was ripped. The interview went well though despite my coat. :) If you find value in the content I produce and would like to contribute in a meaningful way, I kindly ask for your consideration of a small donation by clicking on the PayPal link on my homepage, under the name of the channel. Your support will enable me to enhance the quality of my videos, invest in better equipment, and further develop the channel. Thank you very much
https://wn.com/Walking_In_Woolwich_Arsenal_Powis_Street_And_Hare_Street_South_East_London_Greenwich
【BNO英國生活】東倫敦 Zone4 Woolwich Arsenal | 高升值能力? | 住了半年的感受  |  適合一家大細  | 泰晤士河景色 | Royal Arsenal
12:02

【BNO英國生活】東倫敦 Zone4 Woolwich Arsenal | 高升值能力? | 住了半年的感受 | 適合一家大細 | 泰晤士河景色 | Royal Arsenal

  • Order:
  • Duration: 12:02
  • Uploaded Date: 26 Jul 2021
  • views: 28285
帶你到 Woolwich Arsenal 兜一個圈 ( ͡❛ ͜ʖ ͡❛) INSTAGRAM / @callmeabywong ( ❛ ͜ʖ ❛ )ENQUIRY / callmeabywong@gmail.com ❤️ (✿˵•́ ᴗ •̀˵)❤️ 👋 希望大家都鍾意睇我嘅片,歡迎比啲鼓勵同支持~全數收入將會用作提升Channel質素 ☕ 💕 https://www.buymeacoffee.com/abywong Music by 8thDimensions - Reflection - https://thmatc.co/?l=B0D84624
https://wn.com/【Bno英國生活】東倫敦_Zone4_Woolwich_Arsenal_|_高升值能力_|_住了半年的感受_|_適合一家大細_|_泰晤士河景色_|_Royal_Arsenal
Drone Film 2022 - Royal Arsenal Riverside | Berkeley
2:07

Drone Film 2022 - Royal Arsenal Riverside | Berkeley

  • Order:
  • Duration: 2:07
  • Uploaded Date: 03 Jan 2023
  • views: 738
Visit our website: https://www.berkeleygroup.co.uk/developments/london/woolwich/royal-arsenal-riverside
https://wn.com/Drone_Film_2022_Royal_Arsenal_Riverside_|_Berkeley
Top Arsenal Goal Scorers This Season 22/23 #shorts
0:29

Top Arsenal Goal Scorers This Season 22/23 #shorts

  • Order:
  • Duration: 0:29
  • Uploaded Date: 30 Jul 2023
  • views: 149
This video will show you the top Arsenal FC’s goal scorers this Premier League season (2022-23). Arsenal Football Club is an English professional football club based in Islington, North London. Arsenal play in the Premier League, the top flight of English football. The club has won 13 league titles (including one unbeaten title), a record 14 FA Cups, two League Cups, 16 FA Community Shields, one European Cup Winners' Cup, and one Inter-Cities Fairs Cup. In terms of trophies won, it is the third-most successful club in English football. Arsenal was the first club from the South of England to join the Football League in 1893, and they reached the First Division in 1904. Relegated only once, in 1913, they continue the longest streak in the top division, and have won the second-most top-flight matches in English football history. In the 1930s, Arsenal won five League Championships and two FA Cups, and another FA Cup and two Championships after the war. In 1970–71, they won their first League and FA Cup Double. Between 1989 and 2005, they won five League titles and five FA Cups, including two more Doubles. They completed the 20th century with the highest average league position. Between 1998 and 2017, Arsenal qualified for the UEFA Champions League for nineteen consecutive seasons. In 1886, munitions workers at the Royal Arsenal in Woolwich founded the club as Dial Square. In 1913 the club crossed the city to Arsenal Stadium in Highbury, becoming close neighbours of Tottenham Hotspur, and creating the North London derby. Herbert Chapman, who changed the fortunes of Arsenal forever, won the club its first silverware, and his legacy led the club to dominate the 1930s. He helped introduce the WM formation, floodlights, and shirt numbers; he also added the white sleeves and brighter red to the club's jersey. Arsène Wenger is the longest-serving manager and won the most trophies. He won a record seven FA Cups, and his title-winning team set an English record for the longest top-flight unbeaten league run at 49 games between 2003 and 2004, receiving the nickname The Invincibles. In 2006, the club moved to the nearby Emirates Stadium. With an annual revenue of £367.1m in the 2021–22 season, Arsenal was estimated to be worth US$2.26 billion by Forbes, making it the world's tenth most valuable football club, while it is one of the most followed on social media. The motto of the club is Victoria Concordia Crescit, Latin for "Victory Through Harmony". Sources: https://www.premierleague.com/ https://www.wikipedia.org/ Music: 19th Floor - Bobby Richards #arsenal #top #scorers #goals #scorers #arsenalfc #thegunners #gunners #london #premierleague #soccer #football #fabiovierra #viera #robholding #holding #jakubkiwior #kiwior #leandrotrossard #trossard #oleksandrzinchenko #zinchenko #williamsaliba #saliba #benwhite #white #gabrielmagalhaes #magalhaes #reissnelson #nelson #thomaspartey #partey #eddienketiah #nketiah #granitxhaka #xhaka #gabrieljesus #jesus #bukayosaka #saka #gabrielmartinelli #martinelli #martinodegaard #odegaard
https://wn.com/Top_Arsenal_Goal_Scorers_This_Season_22_23_Shorts
Royal Arsenal Riverside Lifestyle Film; Live the Riverside Life | Berkeley
1:31

Royal Arsenal Riverside Lifestyle Film; Live the Riverside Life | Berkeley

  • Order:
  • Duration: 1:31
  • Uploaded Date: 23 Jun 2023
  • views: 4684
Visit the website here - https://www.berkeleygroup.co.uk/developments/london/woolwich/royal-arsenal-riverside
https://wn.com/Royal_Arsenal_Riverside_Lifestyle_Film_Live_The_Riverside_Life_|_Berkeley
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • 1981 Woolwich market area and Royal Arsenal gatehouse
    2:20
    1981 Woolwich market area and Royal Arsenal gatehouseremove from playlist
  • 【倫敦新地鐵河景盤】🇬🇧Woolwich 泰晤士河畔豪華公寓|坐擁🚆伊利沙白綫車站 ⭐五星級設施配套 #大型地區升級計劃 #龍頭發展商
    19:34
    【倫敦新地鐵河景盤】🇬🇧Woolwich 泰晤士河畔豪華公寓|坐擁🚆伊利沙白綫車站 ⭐五星級設施配套 #大型地區升級計劃 #龍頭發展商remove from playlist
  • SOUTH ➡️ NORTH LONDON: The truth about Arsenal Football Club
    27:15
    SOUTH ➡️ NORTH LONDON: The truth about Arsenal Football Clubremove from playlist
  • BUY AN APARTMENT WITH A 5% DEPOSIT AT ROYAL ARSENAL RIVERSIDE | SE London | Berkeley + Metro Bank
    8:55
    BUY AN APARTMENT WITH A 5% DEPOSIT AT ROYAL ARSENAL RIVERSIDE | SE London | Berkeley + Metro Bankremove from playlist
  • 1964 WOOLWICH - The significance, history, character, decline, markets, ferry, theatres, landmarks..
    33:20
    1964 WOOLWICH - The significance, history, character, decline, markets, ferry, theatres, landmarks..remove from playlist
  • Walking in Woolwich Arsenal - Powis Street and Hare Street - South East London - Greenwich
    9:00
    Walking in Woolwich Arsenal - Powis Street and Hare Street - South East London - Greenwichremove from playlist
  • 【BNO英國生活】東倫敦 Zone4 Woolwich Arsenal | 高升值能力? | 住了半年的感受  |  適合一家大細  | 泰晤士河景色 | Royal Arsenal
    12:02
    【BNO英國生活】東倫敦 Zone4 Woolwich Arsenal | 高升值能力? | 住了半年的感受 | 適合一家大細 | 泰晤士河景色 | Royal Arsenalremove from playlist
  • Drone Film 2022 - Royal Arsenal Riverside | Berkeley
    2:07
    Drone Film 2022 - Royal Arsenal Riverside | Berkeleyremove from playlist
  • Top Arsenal Goal Scorers This Season 22/23 #shorts
    0:29
    Top Arsenal Goal Scorers This Season 22/23 #shortsremove from playlist
PLAYLIST TIME: 0:00 / 1:56:33

1981 Woolwich market area and Royal Arsenal gatehouse

This YouTube video takes you on a trip down memory lane to the Woolwich market area in 1981. The video captures the vibrant atmosphere of the Woolwich market, with lively traders and a wide variety of stalls selling fresh produce, veg, meat, seafood, clothes and more. The market was bustling with activity, and the video's viewers who lived in this era can almost smell the aroma of fresh seafood and butcher meats. The market traders selling their wares to the Royal Arsenal gatehouse in the background, adding a touch of history to the bustling market scene. The video also shows a road running through the middle of the market, adding to the hustle and bustle of the area. The video serves as a reminder of how the market used to be and how it has changed over time. It's a nostalgic look at a bygone era and a glimpse into the past for those who never had the chance to experience it so it can be compared to today. Please click this link to subscribe https://www.youtube.com/@royal-arsenal-history?sub_confirmation=1 for more videos like this. September 1981 - Thames News footage For family research, rare footage, rare photos and documents can be found here by joining RAH groups: www.facebook.com/groups/royal.arsenal.history (2500+ Facebook group members can help you) www.royal-arsenal-history.com (Facebook Page) www.instagram.com/rahistory_com www.twitter.com/rahistory_com www.facebook.com/RoyalArsenalHistory www.facebook.com/groups/ThamesmeadSE28 This material is used on a non-commercial basis for educational purposes only, specifically for teaching and bringing discussion about local history. It is featured on Royal-Arsenal-history.com, a website that is primarily information-led, research-oriented, and not behind a paywall. The material is also shared on social media accounts, such as the Facebook page at https://www.facebook.com/RoyalArsenalHistory/, with the intention of promoting discussion and interest in local history.
2:20
1981 Woolwich market area and Royal Arsenal gatehouse
This YouTube video takes you on a trip down memory lane to the Woolwich market area in 198...
published: 03 Jan 2023
Play in Full Screen
19:34
【倫敦新地鐵河景盤】🇬🇧Woolwich 泰晤士河畔豪華公寓|坐擁🚆伊利沙白綫車站 ⭐五星級設施配套 #大型地區升級計劃 #龍頭發展商
🇬🇧Woolwich 泰晤士河畔豪華公寓 坐擁🚆伊利沙白綫車站及⭐五星級設施配套 💰一房 £54.5萬起丨兩房 £76萬起 位處倫敦東南部、泰晤士河邊的Woolwich小鎮曾經是...
published: 27 Jul 2022
Play in Full Screen
27:15
SOUTH ➡️ NORTH LONDON: The truth about Arsenal Football Club
Arsenal FC moved from south to north London. Here's why! 👇USE CODE FOOTY15 AT CHECKOUT👇 ...
published: 20 Jul 2022
Play in Full Screen
8:55
BUY AN APARTMENT WITH A 5% DEPOSIT AT ROYAL ARSENAL RIVERSIDE | SE London | Berkeley + Metro Bank
Hi guys! check out these apartments which you can buy using only a 5% deposit! Join me a...
published: 06 Jun 2023
Play in Full Screen
33:20
1964 WOOLWICH - The significance, history, character, decline, markets, ferry, theatres, landmarks..
Credits: RAH acknowledges the contribution of the following individuals to this video: Dir...
published: 09 Mar 2023
Play in Full Screen
9:00
Walking in Woolwich Arsenal - Powis Street and Hare Street - South East London - Greenwich
Subscribe and leave a comment please. I used to work in the area. Every morning I used to ...
published: 24 Aug 2021
Play in Full Screen
12:02
【BNO英國生活】東倫敦 Zone4 Woolwich Arsenal | 高升值能力? | 住了半年的感受 | 適合一家大細 | 泰晤士河景色 | Royal Arsenal
帶你到 Woolwich Arsenal 兜一個圈 ( ͡❛ ͜ʖ ͡❛) INSTAGRAM / @callmeabywong ( ❛ ͜ʖ ❛ )ENQUIRY / cal...
published: 26 Jul 2021
Play in Full Screen
2:07
Drone Film 2022 - Royal Arsenal Riverside | Berkeley
Visit our website: https://www.berkeleygroup.co.uk/developments/london/woolwich/royal-arse...
published: 03 Jan 2023
Play in Full Screen
0:29
Top Arsenal Goal Scorers This Season 22/23 #shorts
This video will show you the top Arsenal FC’s goal scorers this Premier League season (202...
published: 30 Jul 2023
Play in Full Screen
1:31
Royal Arsenal Riverside Lifestyle Film; Live the Riverside Life | Berkeley
Visit the website here - https://www.berkeleygroup.co.uk/developments/london/woolwich/roya...
published: 23 Jun 2023
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: royal arsenal

Edit

White Sox' Jonathan Cannon found the recipe for consistency, now it's about execution

Chicago Sun-Times 08 May 2025
Now it’s a fixture of his pitching arsenal — especially against left-handed hitters, of which the Royals had four in their lineup Wednesday night ... But the offense couldn’t come up with much off Royals ...
Edit

From underdogs to game changers: How Krunal Pandya and Suyash Sharma are powering RCB's dream run in IPL 2025

The Times of India 26 Apr 2025
If we compare the spin attacks of Delhi Capitals (DC) and Royal Challengers Bengaluru (RCB), DC would certainly have the upper hand, thanks to their spin arsenal, which includes Kuldeep Yadav, captain ...
Edit

Royal High pitcher Dean Barkman stays on target despite being close to blind in one eye

VC Star 24 Apr 2025
Royal has won seven of the eight games he has appeared in ... He’s added a breaking ball to his arsenal since last season, but the fastball is still good enough to blow by most high school batters, said Royal baseball coach Dan Maye.
  • 1
×