- published: 27 Jul 2012
- views: 128563676
'+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 2012 Summer Olympics, formally the Games of the XXX Olympiad and commonly known as London 2012, was a major international multi-sport event celebrated in the tradition of the Olympic Games, as governed by the International Olympic Committee (IOC). It took place in London and to a lesser extent across the United Kingdom from 25 July to 12 August 2012. The first event, the group stage in women's football began on 25 July at the Millennium Stadium in Cardiff, followed by the opening ceremonies on 27 July. More than 10,000 athletes from 204 National Olympic Committees (NOCs) participated.
Following a bid headed by former Olympic champion Sebastian Coe and then-Mayor of London Ken Livingstone, London was selected as the host city on 6 July 2005 during the 117th IOC Session in Singapore, defeating bids from Moscow, New York City, Madrid and Paris. London was the first city to host the modern Olympic Games three times, having previously done so in 1908 and in 1948.
Construction for the Games involved considerable redevelopment, with an emphasis on sustainability. The main focus was a new 200-hectare (490-acre) Olympic Park, constructed on a former industrial site at Stratford, East London. The Games also made use of venues that already existed before the bid.
The 2004 Summer Olympic Games (Modern Greek: Θερινοί Ολυμπιακοί Αγώνες 2004, Therinoí Olympiakoí Agó̱nes 2004), officially known as the Games of the XXVIII Olympiad and commonly known as Athens 2004, was a premier international multi-sport event held in Athens, Greece, from 13 to 29 August 2004 with the motto Welcome Home. 10,625 athletes competed, some 600 more than expected, accompanied by 5,501 team officials from 201 countries. There were 301 medal events in 28 different sports. Athens 2004 marked the first time since the 1996 Summer Olympics that all countries with a National Olympic Committee were in attendance. 2004 marked the return of the games to the city where they began.
A new medal obverse was introduced at these Games, replacing the design by Giuseppe Cassioli that had been used since the 1928 Games. This rectified the long lasting mistake of using a depiction of the Roman Colosseum rather than a Greek venue. The new design features the Panathinaiko Stadium. The 2004 summer games were hailed as "unforgettable, dream games" by IOC President Jacques Rogge, and left Athens with a significantly improved infrastructure, including a new airport, ring road, and subway system.
The 2008 Summer Olympic Games, officially known as the Games of the XXIX Olympiad (Chinese: 第二十九届夏季奥林匹克运动会; pinyin: Dì Èrshíjiǔ Jiè Xiàjì Àolínpǐkè Yùndònghuì) and commonly known as Beijing 2008, was a major international multi-sport event that took place in Beijing, China, from 8 to 24 August 2008. A total of 10,942 athletes from 204 National Olympic Committees (NOCs) competed in 28 sports and 302 events (a total of one event more than the schedule of the 2004 Games). China became the 22nd nation to host the Olympic Games and the 18th to hold a Summer Olympic Games. It was the third time that the Summer Olympic Games were held in Asia, after Tokyo, Japan, in 1964 and Seoul, South Korea, in 1988. This was the second time the Summer Olympic Games were staged in a socialist country, after the 1980 Olympics in the Soviet Union.
The equestrian events were held in Hong Kong, making it the third time the events of the same Olympics were held under the jurisdiction of two different NOCs, while sailing was contested in Qingdao, and football events took place in several different cities.
1988 Olympics refers to both:
The 2016 Summer Olympics (Portuguese: Jogos Olímpicos de Verão de 2016), officially known as the Games of the XXXI Olympiad, and commonly known as Rio 2016, are a major international multi-sport event that will take place in Rio de Janeiro, Brazil, from August 5 to August 21, 2016. Record numbers of countries and sets of medals are awaiting in the games. More than 10,500 athletes from 206 National Olympic Committees (NOCs), including from Kosovo and South Sudan for the first time, will take part in this sporting event. With 306 sets of medals, the games will feature 28 Olympic sports — including rugby sevens and golf, which were added by the International Olympic Committee in 2009. These sporting events will take place on 33 venues in the host city and additionally on 5 venues in the cities of São Paulo (Brazil's largest city), Belo Horizonte, Salvador, Brasília (Brazil's capital), and Manaus.
The host city of Rio de Janeiro was announced at the 121st IOC Session held in Copenhagen, Denmark, on 2 October 2009. The other finalists were Madrid, Spain; Chicago, United States; and Tokyo, Japan. Rio will become the first South American city to host the Summer Olympics, the second city in Latin America to host the event after Mexico City in 1968, and the first since 2000 in the Southern Hemisphere. This will be the third time the Summer Olympics are held in a developing country, after the 1968 Games in Mexico and the 1988 Games in South Korea.
The 2018 Winter Olympics, officially known as the XXIII Olympic Winter Games (French: Les XXIIIes Jeux olympiques d'hiver;Hangul: 평창 동계 올림픽; hanja: 平昌 冬季 올림픽; RR: PyeongChang Donggye Ollimpik) and commonly known as PyeongChang 2018, is a major international multi-sport event scheduled to take place from 9 to 25 February 2018, in PyeongChang, South Korea. It will be the first winter Olympics to be held on mainland Asia.
The elected host city was announced on 6 July 2011 by the International Olympic Committee (IOC), after the 123rd IOC Session in Durban, South Africa. Other candidates that applied to host the games were Annecy, France and Munich, Germany. Pyeongchang won on its third consecutive bid, having lost previously to Vancouver in Canada and Sochi in Russia.
It will be the first Winter Olympic Games and second Olympic Games in South Korea; the 1988 Summer Olympics were held in Seoul. Pyeongchang will also be the third Asian city to host the Winter Games after Sapporo, Japan (1972) and Nagano, Japan (1998). It will be the first Winter Olympic Games since 1992 to be held in a ski resort town.
The 1960 Summer Olympics, officially known as the Games of the XVII Olympiad (Italian: Giochi della XVII Olimpiade), was an international multi-sport event held from August 25 to September 11, 1960 in Rome, Italy. Rome had been awarded the organization of the 1908 Summer Olympics, but after the 1906 eruption of Mount Vesuvius, was forced to decline and pass the honors to London.
On June 15, 1955, at the 50th IOC Session in Paris, France, Rome beat out Lausanne, Detroit, Budapest (being the first city of the Eastern Bloc to bid for the Olympic Games), Brussels, Mexico City and Tokyo for the rights to host the Games. Tokyo and Mexico City would eventually host the following 1964 and 1968 Summer Olympics.
Toronto was initially interest in the bidding, but appears to have been dropped during the final bid process. This is the first of five attempts by Toronto from 1960 to 2001.
📺 Re-live ALL the incredible #Paris2024 action ➡️ https://go.olympics.com/watch Rowan Atkinson performs under the guise of his famous character Mr. Bean at the Opening Ceremony of the London 2012 Olympic Games. Every two years, the world's finest athletes gather at the Olympic Games - a spectacular celebration of sporting excellence that captures the attention of billions of people around the world. However, the Games are about much more than just sport. They bring the Olympic values to life and provide a global arena for a unique combination of sport, culture, education and ceremonies. At the Olympic Games in London 2012, about 10,500 athletes from 204 countries compete in 26 different sports, comprising 302 medal events. Whether athletes win a medal or not, they can forever call thems...
📺 Re-live ALL the incredible #Paris2024 action ➡️ https://go.olympics.com/watch Daniel Craig reprises his role as British secret agent James Bond as he accompanies Her Majesty The Queen to the opening ceremony of the London 2012 Olympic Games. The Ceremony also featured appearances from Mr. Bean, Monty Python and a re-imagining of the British Industrial Revolution. Every two years, the world's finest athletes gather at the Olympic Games - a spectacular celebration of sporting excellence that captures the attention of billions of people around the world. However, the Games are about much more than just sport. They bring the Olympic values to life and provide a global arena for a unique combination of sport, culture, education and ceremonies. At the Olympic Games in London 2012, about 1...
📲 Subscribe to @olympics: http://oly.ch/Subscribe The best athletes of the world met on 27 July 2012 for the Opening Ceremony of the London 2012 Olympic Games. And it wasn't just them. Even James Bond and Mr Bean showed up for the celebration. Re-live it in full right now! Full replay of the London 2012 Opening Ceremony from the Queen Elizabeth Olympic Park. _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
📺 Re-live ALL the incredible #Paris2024 action ➡️ https://go.olympics.com/watch Jamaican Usain Bolt sets a new Olympic record as he retains his 100m Gold medal at the London 2012 Olympics on the 5 August 2012. Fellow Jamaican Yohan Blake finished second, with USA's Justin Gatlin taking the Bronze medal in the event. Since 1896, athletics has been on the programme of each edition of the Games of the Olympiad. Its presence on the Games programme has allowed its popularity to increase across the world. This popularity was also strengthened by the creation of the IAAF in 1912. Women's events appeared for the first time at the 1928 Olympic Games in Amsterdam, while the men's programme was standardised as of the 1932 Games in Los Angeles. Although at the beginning women were authorised to ...
The golden moments of Team GB from the London 2012 Olympic Games. Team GB celebrated their most successful Olympic Games since 1908 after securing 65 medals across the 39 disciplines including medals from Jess Ennis, Tom Daley, Chris Hoy, Ben Ainslie, Bradley Wiggins, Andy Murray and many more. Subscribe to our channel today: https://bit.ly/2lAC6Qh Team GB is the Great Britain and Northern Ireland Olympic Team run by the British Olympic Association. Follow Team GB on the road to the Tokyo 2020 Olympic Games: Website: https://www.teamgb.com/ Shop: https://shop.teamgb.com Facebook: https://www.facebook.com/TeamGB Twitter: https://www.twitter.com/TeamGB Instagram: https://www.instagram.com/teamgb TikTok: https://www.tiktok.com/@TeamGB Snapchat: teamgb
📺 Re-live ALL the incredible #Paris2024 action ➡️ https://go.olympics.com/watch The USA team, featuring Michael Phelps in his final London 2012 race, win the gold medal in the 4 x 100m medley. The team, consisting of Phelps, Matt Grevers, Brendan Hansen and Nathan Adrian took 1st place ahead of Japan in 2nd and Australia in 3rd. Every edition has its own story to tell and will be remembered for some truly remarkable performances from sporting legends such as Jesse Owens, Abebe Bikila, Jean-Claude Killy, Nadia Comaneci, Katarina Witt, Michael Phelps and Usain Bolt, to name just a few. Swimming Men's 4 x 100m Medley Relay Final Full Replay from the Aquatics Centre at the London 2012 Olympic Games. - 4 August 2012 Swimming has featured on the programme of all editions of the Games since 1...
📺 Re-live ALL the incredible #Paris2024 action ➡️ https://go.olympics.com/watch Spice Girls (Mel B, Mel C, Emma Bunton, Geri Halliwell and Victoria Beckham) perform a medley of Wannabe and Spice Up Your Life, in a spectacular performance at the closing ceremony of the London 2012 Olympic Games. The ceremony also included performances from Emeli Sandé, Queen, Take That and Jessie J. ========================================= 📲 Subscribe to @olympics: http://oly.ch/Subscribe 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home Daniel Craig reprises his role as British secret agent James Bond as he accompanies Her Majesty The Queen to the opening ceremony of the London 2012 Olympic Games, in this special film produced by the BBC. Producer: Lisa Osborne, Executive Producer: Nick Brown Olympic Games | London 2012 | BBC #BBC #Olympic Games #London 2012 All our TV channels and S4C are available to watch live through BBC iPlayer, although some programmes may not be available to stream online due to rights. If you would like to read more on what types of programmes are available to watch live, check the 'Are all programmes that are broadcast available on BBC iPlayer?' FAQ 👉 https://bbc.in/2m8ks6v.
📺 Re-live ALL the incredible #Paris2024 action ➡️ https://go.olympics.com/watch The Jamaican team set a new world record of 36.84s at the London 2012 Games. Here we re-live the full race coverage as Jamaica's team of Carter, Frater, Blake and Bolt take the gold medal. Since 1896, athletics has been on the programme of each edition of the Games of the Olympiad. Its presence on the Games programme has allowed its popularity to increase across the world. This popularity was also strengthened by the creation of the IAAF in 1912. Women's events appeared for the first time at the 1928 Olympic Games in Amsterdam, while the men's programme was standardised as of the 1932 Games in Los Angeles. Although at the beginning women were authorised to participate in only some events, today their progr...
📲 Subscribe to @olympics: http://oly.ch/Subscribe Queen Elizabeth II announces the opening of the London 2012 Olympic Games at the Opening Ceremony held in the Olympic Stadium (27 July). Every two years, the world's finest athletes gather at the Olympic Games - a spectacular celebration of sporting excellence that captures the attention of billions of people around the world. However, the Games are about much more than just sport. They bring the Olympic values to life and provide a global arena for a unique combination of sport, culture, education and ceremonies. At the Olympic Games in London 2012, about 10,500 athletes from 204 countries compete in 26 different sports, comprising 302 medal events. Whether athletes win a medal or not, they can forever call themselves Olympians. The...
Relive the full Opening Ceremony of the 2004 Summer Olympic Games in Athens (Greece) that took place in the Olympic Stadium in Marousi! The guiding themes of this epic Opening Ceremony have been Heart Beat and Running. _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
📲 Subscribe to @olympics: http://oly.ch/Subscribe Review a wonderful opening ceremony as the Athens 2004 Summer Olympic Games gets underway. Athletes featured in this video : Opening Ceremony, Greece : http://www.olympic.org/athens-2004-summer-olympics For more Olympic videos go to http://www.youtube.com/olympic and visit the official website of the Olympic Movement at http://www.olympic.org for all information on Olympic Games, Sports and Athletes, National Olympic Committees and Olympic News. _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
📲 Want to watch live sport and original documentaries for free? Check out our website: https://oly.ch/WatchLiveSport The 2004 Summer Olympics took place from August 13 to 29 in Athens, the birthplace of the Games, and marked the return of the Olympics to Europe for the first time since 1992 in Barcelona. With 202 participating nations, a new record was set, surpassing the previous record of 199 nations set in Sydney in 2000. A total of 301 competitions were held. 🔥 One of the outstanding personalities of the Games was swimmer Michael Phelps, who won six gold medals and set a new record with a total of eight medals in a single Olympics. In cycling, Leontien Ziljaard-van Moorsel set new standards by becoming the first female cyclist to win a total of four gold medals in her career, bringing...
📺 Re-live ALL the incredible #Paris2024 action ➡️ https://go.olympics.com/watch 📲 Subscribe to @olympics: http://oly.ch/Subscribe Iceland's global star Bjork performs her song Oceania on August 13, 2004, during the Athens 2004 Olympic Games Opening Ceremony. Watch the complete Opening Ceremony for free at: http://oly.ch/Olympics/en/playback/athens-2004-opening-ceremony/ Subscribe to the Olympic Channel here: http://bit.ly/1dn6AV5 _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
📲 Subscribe to @olympics: http://oly.ch/Subscribe Highlights as Team GB shock favourites USA to win Gold by 0.01 seconds in the 4x100m Men's Relay at the Olympic Stadium in Athens. _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
📲 Want to watch live sport and original documentaries for free? Check out our website: https://oly.ch/WatchLiveSport _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
📺 Re-live ALL the incredible #Paris2024 action ➡️ https://go.olympics.com/watch 📲 Subscribe to @olympics: http://oly.ch/Subscribe Enjoy this look back at the Men's 200m Freestyle final the Summer Olympic Games in Athens 2004, also known as "the Race of the Century" in Olympic swimming or "the greatest swimming race of all time". Featuring some of the most iconic Olympic swimmers of all time, Ian Thorpe, Pieter van den Hoogenband, and Michael Phelps! What is your favorite Olympic moment of all time? Let us know in the comments below and it might be featured in the next #ThrowbackThursday! _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https:...
Relive full the Opening Ceremony from the Summer Olympic Games 2008 in beautiful Beijing, China. The ceremony was held at the Bird's Nest on Friday, 8 August 2008. It was directed by Chinese filmmaker Zhang Yimou. What is your favorite Olympic moment of all time? Let us know in the comments below and it might be featured in the next #ThrowbackThursday! _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
📺 Re-live ALL the incredible #Paris2024 action ➡️ https://go.olympics.com/watch Remember one of the biggest goosebump moments of the 2008 Summer Olympics Opening Ceremony that was held at the Beijing National Stadium, also known as the Bird's Nest? It was the moment when 2,008 drummers played the bronze Fou drums and sang the quote from The Analects of Confucius written 2000 years ago: "Isn’t it delightful to have friends coming from afar?” to welcome friends from all over the world. Enjoy watching and tell us your favorite Olympic Memory in the comments. _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
📺 Re-live ALL the incredible #Paris2024 action ➡️ https://go.olympics.com/watch Can't wait? Watch more: https://oly.ch/MensBasketballFinalBeijing2008 Relive the full Men's Basketball Final from the 2008 Summer Olympic Games in Beijing! The United States' "Redeem Team" with NBA superstars like LeBron James, Dwyane Wade, Team captain Kobe Bryant faced the Spanish squad. After a disappointing third place in the 2004 Olympics, the pressure was high on the USA to regain an Olympic title and to carry on the legacy of the former Olympic Dream Team of 1992. Would they manage to beat Spain in the final match for the Gold Medal? Enjoy watching and find out! _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://...
📲 Subscribe to @olympics: http://oly.ch/Subscribe Team USA faced Spain in the Basketball final of the Olympic Games 2008 in Beijing. It promised to be an incredibly exciting match, and after "only" grabbing the bronze medal in 2004, the "Redeem Team" had again the chance to claim the gold medal for the USA. Enjoy the entire Golden Generation documentary, only on the Olympic Channel: https://bit.ly/2O8R7Bj _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
Enjoy watching this look back at the Men's Football Semi-Finals of the 2008 Summer Olympic Games in Beijing. Superstars like Ronaldinho and Juan Roman Riquelme but also the young Lionel Messi took centrestage in this Olympic encounter. Brazil’s dream of an Olympic Gold ended in spectacular style after they were thumped 3-0 by archenemies Argentina in the Worker’s stadium in Beijing. A feist first-half ended goalless with both teams failing to break the deadlock but second-half goals from Aguero (two) and a penalty from Riquelme gave Argentina the victory they deserved and a place in the final vs Nigeria. Argentina went on to win Olympic Gold as they defended their Athens 2004 top spot with another impressive olympic outing. What is your favorite Olympic moment of all time? Let us know in ...
📺 Re-live ALL the incredible #Paris2024 action ➡️ https://go.olympics.com/watch Usain Bolt eases his way to two gold medals and two world records in the 100 and 200 meter events at the Beijing 2008 Olympic Games. Every edition has its own story to tell and will be remembered for some truly remarkable performances from sporting legends such as Jesse Owens, Abebe Bikila, Jean-Claude Killy, Nadia Comaneci, Katarina Witt, Michael Phelps and Usain Bolt, to name just a few. _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
📲 Subscribe to @olympics: http://oly.ch/Subscribe Relive all the excitement of the Gold Medal match-up between Argentina and Nigeria from the 2008 Summer Olympic Games in Beijing. This game will be remembered as an all-time great, with some of the biggest players in the world giving it their all, for the Gold! _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
📺 Re-live ALL the incredible #Paris2024 action ➡️ https://go.olympics.com/watch Enjoy this look back at Michael Phelps' historic performance at the Summer Olympic Games 2008 in Beijing, China. Before Phelps became the most decorated Olympian of all time, he set the record for the single most Gold medals at any single Olympic Games, the USA swimmer finished with 8 Gold medals at the Beijing 2008 Games. _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
Subscribe, like, comment and click the bell. Etsy: https://prikklpickle.etsy.com Shop my Amazon shop https://www.amazon.com/shop/braie-gymnasticscoachjudge *as an amazon associate, I earn from qualifying purchases Thank you for the support!!! Judging inquiries: -You can now send videos that you would like me to judge where I will breakdown, critque and give pointers as a judge for each video. Send videos to my email [email protected] $15 charge per video! Venmo: coachbraie OR Find me on Smeeple.com Guiding a Gymnast PDF download: https://koji.to/@ayybraiebraie Socials: Facebook https://www.facebook.com/braieswann/ Instagram https://www.instagram.com/ayybraiebraie/ TikTok https://www.tiktok.com/@ayybraiebraie?lang=en Pinterest https://pin.it/D60JI1M Gymnastics jo...
The FIBA Basketball World Cup is taking place in China right now - reason enough to throw it back to the Summer Olympics 2008 in Bejing, where the all-time Olympic Basketball champion USA played against the host China. What is your favorite Olympic moment of all time? Let us know in the comments below and it might be featured in the next #ThrowbackThursday! _____________________________________________________ 🇨🇳 #Beijing2022 replays: https://oly.ch/B22Replays 🇯🇵 #Tokyo2020 replays: https://oly.ch/T20Replays 🗞️ News from the Olympic world: https://oly.ch/News
The 2012 Summer Olympics, formally the Games of the XXX Olympiad and commonly known as London 2012, was a major international multi-sport event celebrated in the tradition of the Olympic Games, as governed by the International Olympic Committee (IOC). It took place in London and to a lesser extent across the United Kingdom from 25 July to 12 August 2012. The first event, the group stage in women's football began on 25 July at the Millennium Stadium in Cardiff, followed by the opening ceremonies on 27 July. More than 10,000 athletes from 204 National Olympic Committees (NOCs) participated.
Following a bid headed by former Olympic champion Sebastian Coe and then-Mayor of London Ken Livingstone, London was selected as the host city on 6 July 2005 during the 117th IOC Session in Singapore, defeating bids from Moscow, New York City, Madrid and Paris. London was the first city to host the modern Olympic Games three times, having previously done so in 1908 and in 1948.
Construction for the Games involved considerable redevelopment, with an emphasis on sustainability. The main focus was a new 200-hectare (490-acre) Olympic Park, constructed on a former industrial site at Stratford, East London. The Games also made use of venues that already existed before the bid.