- published: 25 Mar 2016
- views: 86236
'+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; })); }); -->
The Olympiastadion (German pronunciation: [ʔoˈlʏmpi̯aˌʃtaːdi̯ɔn]) is a sports stadium in Berlin, Germany. It was originally built for the 1936 Summer Olympics by Werner March. During the Olympics the record attendance was thought to be over 100,000. Today the stadium is part of the Olympiapark Berlin.
After renovations in 2004 the Olympiastadion offers a permanent capacity of 74,475 seats and is the largest stadium in Germany for international football matches. Olympiastadion is a UEFA category four stadium and one of the world's most prestigious venues for sporting and entertainment events.
Aside its use as an athletics stadium, the arena built up a footballing tradition. Since 1963 it has been the home ground of Hertha BSC football team. It was used for 3 matches in the 1974 FIFA World Cup. It hosted six matches, including the final, in the 2006 FIFA World Cup and was renovated for that reason. The German Cup (DFB-Pokal) final match is held each year at the venue. The Olympiastadion Berlin served as a host for the 2011 FIFA Women's World Cup as well as the 2015 UEFA Champions League Final.
Olympic Stadium is the name usually given to the main stadium of an Olympics. An Olympic stadium is the site of the opening and closing ceremonies. Many, though not all, of these venues actually contain the words Olympic Stadium as part of their names.
Olympic Stadium may also be named a multi-purpose stadium which hosts Olympic sports.
In the case of the Summer Olympics, athletics competitions are traditionally held in the Olympic Stadium. Exceptions to this have occurred though at both the 1900 and 2016 Summer Olympics as well as at the 2010 and 2018 Summer Youth Olympic Games.
Early Winter Games often used figure skating venues as focal points. These were often designated as the Olympic Stadium, usually hosting the opening and closing ceremonies.
A number of stadiums have been used in more than one Olympics, in those cities that have held the Games more than once.
Lysgårdsbakkene was the main stadium of a Winter Olympics and a Winter Youth Olympic Games (YOG). Bergiselschanze was the main stadium of two Winter Olympics and one Winter YOG. Olympiahalle jointly shared the Olympic Stadium role with Bergiselschanze during the two Winter Olympics, but not during the Winter YOG. Only one stadium, the Los Angeles Memorial Coliseum, has been the main stadium of two Summer Olympics. In addition to the inaugural Summer Olympics, Panathinaiko Stadio was also the main stadium of the only Intercalated Games held. In 2022 Beijing National Stadium will join these in being the main stadium at two Olympics, but with a special distinction: it will become the only stadium to have been such at both a Summer and a Winter Olympics.
The Olympiastadion (Finnish: Helsingin Olympiastadion; Swedish: Helsingfors Olympiastadion), located in the Töölö district about 2 kilometres (1.2 mi) from the centre of the Finnish capital Helsinki, is the largest stadium in the country, nowadays mainly used for hosting sports events and big concerts. The stadium is best known for being the centre of activities in the 1952 Summer Olympics. During those games, it hosted athletics, equestrian show jumping, and the football finals.
The stadium was also the venue for the first World Athletics Championships in 1983 as well as for the 2005 World Championships in Athletics. It hosted the European Athletics Championships in 1971, 1994 and 2012.
It is also the home stadium of the Finland national football team.
The Stadium will close temporarily in 2015 for renovation works and will reopen in 2019.
The Olympic Stadium was designed in functionalistic style by the architects Yrjö Lindegren and Toivo Jäntti. Construction of the Olympic Stadium began in 1934 and it was completed in 1938, with the intent to host the 1940 Summer Olympics, which were moved from Tokyo to Helsinki before being cancelled due to World War II. It hosted the 1952 Summer Olympics over a decade later instead. The stadium was also to be the main venue for the cancelled 1943 Workers' Summer Olympiad.
Beijing National Stadium, officially the National Stadium (Chinese: 国家体育场; pinyin: guójiā tǐyùchǎng), also known as the Bird's Nest (鸟巢; niǎocháo), is a stadium in Beijing, The stadium (BNS) was a joint venture among architects Jacques Herzog and Pierre de Meuron of Herzog & de Meuron, project architect Stefan Marbach, artist Ai Weiwei, and CADG which was led by chief architect Li Xinggang. The stadium was designed for use throughout the 2008 Summer Olympics and Paralympics and will be used again in the 2022 Winter Olympics and Paralympics. The stadium is currently used mostly for football matches.
Located at the Olympic Green, the stadium cost US$428 million. The design was awarded to a submission from the Swiss architecture firm Herzog & de Meuron in April 2003 after a bidding process that included 13 final submissions. The design, which originated from the study of Chinese ceramics, implemented steel beams in order to hide supports for the retractable roof; giving the stadium the appearance of a bird's nest. Leading Chinese artist Ai Weiwei was the artistic consultant on the project. The retractable roof was later removed from the design after inspiring the stadium's most recognizable aspect. Ground was broken on 24 December 2003 and the stadium officially opened on 28 June 2008. A shopping mall and a hotel are planned to be constructed to increase use of the stadium, which has had trouble attracting events, football and otherwise, after the Olympics.
Berlin is the name of a sculpture on the Tauentzienstraße in western Berlin, the capital of Germany.
First conceived in 1985 and unveiled by the husband-and-wife sculpting team of Brigitte Matschinsky-Denninghoff and Martin Matschinsky in 1987, the sculpture's principal motif, a "broken chain", was meant to symbolize the severed connections between West and East Berlin due to the construction of the Berlin Wall.
Even though the Wall has since been dismantled, the sculpture was bought by the city from Mrs. Matschinsky-Denninghoff to commemorate the unfortunate chapter in German history.
Berlin was one of eight sculptures designed during "Skulpturenboulevard Kurfürstendamm" (Boulevard of Sculptures: Kurfürstendamm), an event commissioned by the city of West Berlin to celebrate Berlin's 750th anniversary in 1987. Of the eight sculptures unveiled, three were allowed to remain past the anniversary year (Berlin, Pyramide, and Cadillacs in Form der nackten Maja); the city and Deutsche Bank acquired Berlin after its original lease had expired.
A Berlin (or Berline) carriage was a type of covered four-wheeled travelling carriage with two interior seats. Initially noted for using two chassis rails and having the body suspended from the rails by leather straps, the term continued in use for enclosed formal carriages with two seats after the suspension system changed from leather straps to steel springs.
The carriage was designed around 1660 or 1670 by a Piedmontese architect commissioned by the General quartermaster to Frederick William, Elector of Brandenburg. The Elector used the carriage to travel from Berlin, Brandenburg's capital, to the French capital of Paris, where his carriage created a sensation. While heavy-duty vehicles had used double-railed frames before, passenger vehicles had normally used a single rail. The elegant but durable style was widely copied and named "berline" after the city from which the carriage had come. It was more convenient than other carriages of the time, being lighter and less likely to overturn. The berline began to supplant the less practical and less comfortable state coaches and gala coaches in the 17th century.
Berlin is the third studio album by German rock band Kadavar, released on 21 August 2015 by Nuclear Blast. It was the first album to fully feature new bassist Simon Bouteloup. It featured a cover of Nico's "Reich der Träume" as a bonus track.
After working for four months in the studio, the band finalized the production process of the new album on June 1, 2015, according to their Facebook page.
Drummer and producer Christoph "Tiger" Bartelt commented: "About 10 years ago, when we - independently of one another - moved to Berlin, we just wanted to break free from home and do something new. I thought it was comfortable, to blend in and just live from day to day. A lot of very long nights and so many completely different people at one place. Where there are opposites you can always ground yourself. We’re all different, come from different places but have managed to create something together we all like. I think the Berlin lifestyle has influenced our band very much and therefore fits perfectly as the album’s title."
► Sub now: http://redirect.bundesliga.com/_bwBd Fascinating, old and majestic, both inside and out, yet still a modern spectacle: The Olympiastadion in the German capital is unlike no other arena in the world. It has experienced dark times, but these days, the home fans turn it into one of the loudest stadiums in the Bundesliga. We take a closer look at the home of Hertha Berlin. Enjoy! The Official Bundesliga YouTube channel gives you access to clips from Germany's football league that you won't find anywhere else. Subscribe now and visit us at bndsl.ga/comYT to see what all the noise is about!
Welcome to the Olympic Stadium Berlin. In this documentary we will visit one of the oldest and historically most interesting sports grounds of Germany. But the stadium is not only a place of history, it’s also a modern, multifunctional venue of superlative events: from football to athletic sports, as well as rock and pop concerts, its program offers a great variety and as a result it holds a distinguished position in the event calendar of Berlin. Part 1 of 16 A production of panorama-b.de
A now & then of the Olympic Stadium, built for the 1936 Olympic Games. If video blocked: https://vimeo.com/252764275 MUSIC George Frederic Handel - Sarabande (intro) Dario Marianelli - Summit OTHER EPISODES Episode 1: Reichstag - https://youtu.be/ljIyGCDKWEQ Episode 2: Gestapo - https://youtu.be/VspbFEuiWL8 Episode 3: Lichterfelde Kaserne - https://youtu.be/hyNFhqTQDCk Episode 4: Olympics | Olympic Stadium - https://youtu.be/FVs7XRVz8XA Episode 5: Olympics | Olympic Park - https://youtu.be/hTBkLeMib3I Episode 6: Olympics | Glockenturm - https://youtu.be/JDGbEVSIezA Episode 7: Olympics | Olympic Village - https://youtu.be/8_WW0l8-4cQ Episode 8: Reich Offices | Reich Chancellery - https://youtu.be/Xpdgfmj7uNc Episode 9: Reich Offices | Ministry of Propaganda - https://youtu.be/jLh3EnbTz1g ...
Olympiastadion Berlin is one of the greatest stadiums ever built in Europe. It is located in Berlin on the western skirts. Today you will learn the 10 stunning and confounding facts about this stadium. 👕Olympiastadion merch: https://rdbl.co/3ymqsLw 🎥 Allianz Arena Facts: https://youtu.be/lqW7KybDQeE 🎥 Signal Iduna Park Facts: https://youtu.be/2mD0iBFt71I 🎥 Top 10 Biggest Stadiums in Germany: https://youtu.be/mtFROy_hSmw 🎥 Stadiums Facts: https://www.youtube.com/watch?v=lqW7KybDQeE&list=PLqF9suoUuMzla5njrpFEahH7Uzd7BY1Jq ₿ Get $10 of Bitcoin when you join Coinbase using my link: https://bit.ly/tfccoinbase 📰 Subscribe to Weekly Newsletter: https://bit.ly/tfcnewsletter 🛒Merch: https://rdbl.co/3ArqZdY 👕 Retro Football Shirts: https://bit.ly/3retrofootball_ 🔗Website: https://tfcstadiums.com/...
+ THANKS FOR WATCHING! Please LIKE the video, leave a COMMENT below, and SUBSCRIBE to the channel. + CONTENT: * Chris Cowlin visits the Olympic Stadium: the home of Hertha BSC (Hertha, Berliner Sport-Club e.V) #Tottenham #HerthaBerlin #Germany + 시청해주셔 감사합니다! 동영상에 좋아요 및 아래 코멘트를 남겨주신 후 채널 구독 부탁드립니다. #토트넘핫스퍼 #손흥민 #스퍼스 + 특징: * 크리스 코울린 + LINKS: * Media Enquires: [email protected] * Website: https://www.chriscowlin.com * Twitter: https://www.twitter.com/chriscowlin * Facebook: https://www.facebook.com/ChrisCowlinAuthor * YouTube: https://www.youtube.com/user/cowlinchristopher * Instagram: https://www.instagram.com/chriscowlin * Charity: https://www.justgiving.com/fundraising/chriscowlin2019 * Purchase Books: https://www.amazon.co.uk/Chris-Cowlin/e/B002I7M0VA + MERCHANDISE: * P...
Item title reads - 11th Olympiad. One hundred thousand pack Berlin Stadium. Berlin, Germany. M/S of male athlete taking the Olympic flame towards the stadium, crowds gathered do the nazi salute, M/S as the athlete runs with the flame. L/S aerial shot of the packed stadium. M/S as Adolf Hitler's car drives towards it, he is stood up acknowledging the crowds around him. Aerial view inside the stadium. M/S of Hitler and other officials walking in the stadium, a little girl does the nazi salute and presents him with a bouquet of flowers then curtseys. L/S of crowds doing salute as Hitler stands on the balcony and returns it. M/S as British athletes walk past followed by Italian and Japanese. Various shots as the competing countries parade past, M/S of lady athletes in the parade...
Enjoy a birds eye view from the Bell Tower of Berlin Olympic Stadium in our series "Berlin from above" during our city walk and see the Berlin Olympic stadium where the final of the FIFA World Cup took place in 2006. Please share, comment, like and suscribe to my channel, if you like the video! Thank you for your support! History In 1931, the International Olympic Committee selected Berlin to host the 11th Summer Olympics. When the Nazis came to power in Germany (1933), they decided to use the Olympic Games in 1936 for propaganda purposes. With these plans in mind, Adolf Hitler ordered the construction of a great sports complex in Grunewald named the "Reichssportfeld" with a totally new Olympiastadion. Architect Werner March remained in charge of the project, assisted by his brother ...
We visited the Olympic Stadium in Berlin. It was on a rainy summer day, and the timing was great! Very few people were there, so we enjoyed having the impressive place mostly to ourselves! Tickets are €8 per adult as of September 2017. Check out our blog post to learn about the things you see on the video, such as the bell, the stelae (stone pillars), the Buddy Bears, and more: www.escapevisa.com/olympicstadion For more, check out our links! Our blog: www.escapevisa.com Our newsletter: www.escapevisa.com/newsletter-signup Our Instagram: www.instagram.com/escapevisa Our Twitter: twitter.com/escapevisa
► If you liked this video, we appreciate a thumbs up 👍 ► To not miss anything, activate the gray bell to subscribe to our channel 🔔
The Olympiastadion is a sports stadium at Olympiapark Berlin in Berlin, Germany. It was originally built by Werner March for the 1936 SummerBerlin Olympics. During the Olympics, the record attendance was thought to be over 100,000. Today the stadium is part of the Olympiapark Berlin. Since renovations in 2004, the Berlin Olympiastadion has a permanent capacity of 74,475 seats and is the largest stadium in Germany for international football matches. The Olympiastadion of Berlin is a UEFA stadium, category four and one of the world's most prestigious venues for sporting and entertainment events. Besides its use as an athletics stadium, the arena has built a footballing tradition. Since 1963, it has been the home of the Hertha BSC. It hosted three matches in the 1974 FIFA World Cup. It was r...
The Olympiastadion (German pronunciation: [ʔoˈlʏmpi̯aˌʃtaːdi̯ɔn]) is a sports stadium in Berlin, Germany. It was originally built for the 1936 Summer Olympics by Werner March. During the Olympics the record attendance was thought to be over 100,000. Today the stadium is part of the Olympiapark Berlin.
After renovations in 2004 the Olympiastadion offers a permanent capacity of 74,475 seats and is the largest stadium in Germany for international football matches. Olympiastadion is a UEFA category four stadium and one of the world's most prestigious venues for sporting and entertainment events.
Aside its use as an athletics stadium, the arena built up a footballing tradition. Since 1963 it has been the home ground of Hertha BSC football team. It was used for 3 matches in the 1974 FIFA World Cup. It hosted six matches, including the final, in the 2006 FIFA World Cup and was renovated for that reason. The German Cup (DFB-Pokal) final match is held each year at the venue. The Olympiastadion Berlin served as a host for the 2011 FIFA Women's World Cup as well as the 2015 UEFA Champions League Final.