- published: 23 Oct 2018
- views: 3058704
'+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; })); }); -->
Apollo 11 was the first spaceflight that landed humans on the Moon. Americans Neil Armstrong and Buzz Aldrin landed on July 20, 1969, at 20:18 UTC (46 years ago). Armstrong became the first to step onto the lunar surface six hours later on July 21 at 02:56 UTC. Armstrong spent about two and a half hours outside the spacecraft, and together with Aldrin collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. The third member of the mission, Michael Collins, piloted the command spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it just under a day later for the trip back to Earth.
Launched by a Saturn V rocket from Kennedy Space Center in Merritt Island, Florida, on July 16, Apollo 11 was the fifth manned mission of NASA's Apollo program. The Apollo spacecraft had three parts: a Command Module (CM) with a cabin for the three astronauts, and the only part that landed back on Earth; a Service Module (SM), which supported the Command Module with propulsion, electrical power, oxygen, and water; and a Lunar Module (LM) for landing on the Moon (which itself was composed of two parts). After being sent toward the Moon by the Saturn V's upper stage, the astronauts separated the spacecraft from it and traveled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the Sea of Tranquility. They stayed a total of about 21½ hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the Pacific Ocean on July 24.
Apollo 11 was the mission that sent the first people to the surface of moon.
It can also refer to:
Apollo 11 is a television film which aired on November 17, 1996 on The Family Channel. It was nominated for a Primetime Emmy.
Fearful that the Soviets would continue their lead in the space race and be the first to put a man on the moon, NASA felt an enormous pressure to push the Apollo Program forward as quickly as possible, though they knew that pushing too hard could lead to the ultimate disaster. This film recreates the tensions that were felt not only by the three astronauts, Neil Armstrong, Buzz Aldrin and Michael Collins, but also by their families and by the teams of technicians training to deal with anything that could go wrong.
Buzz Aldrin, one of the three Apollo 11 astronauts, contributed to this movie as technical advisor.
Man on the Moon may refer to:
"Man on the Moon" is a song by the American alternative rock band R.E.M., released as the second single from their 1992 album Automatic for the People. The song was written by the lead singer Michael Stipe. The song was well received by critics and peaked at number 30 on the Billboard Hot 100 and number 18 on the UK Singles Chart. It remains one of R.E.M.'s most popular songs and was included on the compilations In Time: The Best of R.E.M. 1988–2003 and Part Lies, Part Heart, Part Truth, Part Garbage 1982–2011.
Lyrically, the song is a tribute to the comedian and performer Andy Kaufman with numerous references to his career including his Elvis impersonation, wrestling, and the film My Breakfast with Blassie. The song's title and chorus refer to the moon landing conspiracy theories as an oblique allusion to rumors that Kaufman's death in 1984 was faked. The song gave its name to Miloš Forman's film based on Kaufman's life, and was featured prominently in the film's official soundtrack.
Man in the Moon is the tenth studio album (twelfth overall) released by the singer/songwriter Jonathan Edwards.
The moon landing was a feat of engineering, accomplished through the careful deconstruction of a 3,000 ton spacecraft. Subscribe to our channel! http://goo.gl/0bsAjO Apollo 11 launched on July 16, 1969, carrying Neil Armstrong, Buzz Aldrin, and Michael Collins on a journey to pull off humankind’s first moon landing. The eight-day journey was made possible by the careful deconstruction of the Saturn V rocket and Apollo spacecraft, and made use of a technique of docking components of the spacecraft in lunar orbit so the astronauts could land on, and then launch from, the lunar surface. Vox.com is a news website that helps you cut through the noise and understand what's really driving the events in the headlines. Check out http://www.vox.com. Watch our full video catalog: http://goo.gl/I...
On July 20, 1969, humans walked on another world for the first time in history, achieving the goal that President John F. Kennedy had set in 1961, before Americans had even orbited the Earth. After a landing that included dodging a lunar crater and boulder field just before touchdown, Apollo 11 astronauts Neil Armstrong and Buzz Aldrin explored the area around their lunar landing site for more than two hours. When the lunar module landed at 4:17 p.m EDT, only 30 seconds of fuel remained. Armstrong radioed "Houston, Tranquility Base here. The Eagle has landed." Mission control erupted in celebration as the tension breaks, and a controller tells the crew "You got a bunch of guys about to turn blue, we're breathing again." For more information on the Apollo Program, visit https://www.nasa.g...
Want more? Subscribe to NASA on iTunes! http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=283424434 Or get tweeted by NASA: http://twitter.com/NASAGoddard This video comparison between the original and the newly restored Apollo 11 video shows Neil Armstrong and Buzz Aldrin raise the American flag on the moon. To commemorate the 40th anniversary of Apollo 11, NASA released partially restored video of a series of 15 memorable moments from the July 20 moonwalk. The source material for the restoration project is the best of the available broadcast-format video. Lowry Digital, Burbank, Calif., is significantly enhancing the video using the company’s proprietary software technology and other restoration techniques. The video is part of a larger restoration project that will be...
#Apollo11 is in theaters everywhere March 8. From director Todd Douglas Miller (Dinosaur 13) comes a cinematic event fifty years in the making. Crafted from a newly discovered trove of 65mm footage, and more than 11,000 hours of uncatalogued audio recordings, Apollo 11 takes us straight to the heart of NASA’s most celebrated mission—the one that first put men on the moon, and forever made Neil Armstrong and Buzz Aldrin into household names. Immersed in the perspectives of the astronauts, the team in Mission Control, and the millions of spectators on the ground, we vividly experience those momentous days and hours in 1969 when humankind took a giant leap into the future.
Saturday marks the 55th anniversary of the Apollo 11 moon landing by Neil Armstrong and Buzz Aldrin. The cosmos is providing a full moon, and there are plenty of other events to honor the first lunar landing on July 20, 1969. Read more: https://bit.ly/46eLjjj #apollo #apollo11 #moonlanding Subscribe: http://smarturl.it/AssociatedPress Read more: https://apnews.com This video may be available for archive licensing via https://newsroom.ap.org/home
Apollo 11 Explained / Space Race Documentary | On July 16th 1969, the world watched as the Saturn V launched Apollo 11 into space, bringing the Space Race to an end, a defining moment in the Cold War. One of humanity's greatest achievements, Neil Armstrong, Buzz Aldrin and Michael Collins would embark on an 8-day journey to the Moon and back, 240,000 miles away. After decades of preparation and research, Neil Armstrong and Buzz Aldrin would become the first humans to step foot on another world, cementing America as the victors of the Space Race, 12 years of technological warfare between the worlds two largest superpowers; the United States and the Soviet Union. Man's journey to the moon would become the defining moment of the second half of the 20th century. Time Stamps 📽 Intro 0:00 ...
Get Exclusive NordVPN Deal Here: https://nordvpn.com/neovpn Follow neo on social media: Twitter: twitter.com/NeoExplains Facebook: facebook.com/NeoExplains Watch this video on Nebula: https://nebula.tv/videos/neo-what-does-the-moon-landing-site-look-like-today In this video, we will look at what the astronauts of Apollo 11 left behind. With the first people to step foot on the moon, NASA apollo 11 astronauts Neil Armstrong and Buzz Aldrin having left the site, they also left behind different experiments including a seismometer, the laser lunar retroflector and commemorative items such as soviet medals and an apollo 1 mission patch. In this space video I am revisiting a significant historical site, Tranquility Base, that noone has has visited since.
The liftoff of Apollo 11's Saturn V carrying Neil Armstrong, Buzz Aldrin and Michael Collins into space exploration history on July 16, 1969. Look for the shockwave as the Saturn V punches through the clouds at 1:14! Video: NASA/KSC. Via the Apollo Image Archive http://www.apolloarchive.com/apollo_archive.html
Découvrez l'histoire fascinante de la mission Apollo 11, qui a marqué l'humanité à jamais. Du décollage historique au premier pas de Neil Armstrong sur la Lune, revivez cette mission du siècle qui a prouvé que "rien n'est impossible". ------------------------------------- ✅La vidéo a été entièrement réalisée par mes soins, de l’écriture au montage. Il est possible que des erreurs ou des imprécisions se soient glissées malgré mes efforts pour croiser les informations issues de différentes sources en ligne ou de documentaires. Si tu repères une erreur ou une approximation, n’hésite pas à me le signaler dans les commentaires, cela m’aide à m’améliorer ! ------------------------------------- 📝 Sources : - Wikipédia - Apollo 11 Récit d’un voyage lunaire / PDF - Apollo 11 Film 2019 - Site NAS...
A detailed account of every second of the Apollo 11 descent and landing. The video combines data from the onboard computer for altitude and pitch angle, 16mm film that was shot throughout the descent at 6 frames per second. The audio recording is from two sources. The air/ground transmissions are on the left stereo channel and the mission control flight director loop is on the right channel. Subtitles are included to aid comprehension. As well as Neil Armstrong, Buzz Aldrin and Mike Collins, the video includes the following people from the mission control team: Flight - Gene Kranz CapCom - Charlie Duke GNC - Buck Willoughby EECOM - John Aaron FIDO - Jay Greene RETRO - Chuck Deiterich Guidance - Steve Bales Control - Bob Carlton TELCOM - Don Puddy Surgeon - John Zieglschmid This is part of ...
#Apollo11 is in theaters everywhere March 8. From director Todd Douglas Miller (Dinosaur 13) comes a cinematic event fifty years in the making. Crafted from a newly discovered trove of 65mm footage, and more than 11,000 hours of uncatalogued audio recordings, Apollo 11 takes us straight to the heart of NASA’s most celebrated mission—the one that first put men on the moon, and forever made Neil Armstrong and Buzz Aldrin into household names. Immersed in the perspectives of the astronauts, the team in Mission Control, and the millions of spectators on the ground, we vividly experience those momentous days and hours in 1969 when humankind took a giant leap into the future.
From director Todd Douglas Miller (Dinosaur 13) comes a cinematic event 50 years in the making. Crafted from a newly discovered trove of 65mm footage, and more than 11,000 hours of uncatalogued audio recordings, Apollo 11 takes us straight to the heart of NASA's most celebrated mission—the one that first put men on the moon, and forever made Neil Armstrong and Buzz Aldrin into household names. Immersed in the perspectives of the astronauts, the team in Mission Control, and the millions of spectators on the ground, we vividly experience those momentous days and hours in 1969 when humankind took a giant leap into the future. Bonus Features • Apollo 11: Discovering the 65MM • Trailer Website: https://uphe.com/movies/apollo-11-2019 Trailer: http://uni.pictures/Apollo11Trailer Facebook: https...
First Man - We Have Liftoff: The lunar mission begins on the launchpad. BUY THE MOVIE: https://www.fandangonow.com/details/movie/first-man-2018/MMVAE831EAE3647BD4C1B150A539222BA0BB?cmp=Movieclips_YT_Description Watch the best First Man scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqoHdRBubuyGsQVbLtHmbkeH FILM DESCRIPTION: Hoping to reach the moon by the end of the decade, NASA plans a series of extremely dangerous, unprecedented missions in the early 1960s. Engineer Neil Armstrong joins the space program, spending years in training and risking his life during test flights. On July 16, 1969, the nation and world watch in wonder as Armstrong and fellow astronauts Buzz Aldrin and Michael Collins embark on the historic Apollo 11 spaceflight. CREDITS: TM & © Universal (201...
This thrilling documentary covers the Space Race, the Gemini program, and the pivotal Apollo 8 and Apollo 10 missions that paved the way for the monumental achievement. Witness the triumphs and challenges faced by the brave astronauts, the ingenuity of NASA's engineers, and the groundbreaking scientific advancements that made this extraordinary feat possible. Prepare to be inspired by the story of how human determination and innovation conquered the final frontier. --- With everything from breathtaking cosmic vistas to fascinating insights into the lives of astronauts, Cosmic has the perfect documentary for any space lover out there. Whether you're an expert astronomer or a novice at the beginning of your extra-terrestrial journey, we've got just the thing for you. #apollo17 #apollo #...
Directed by TODD DOUGLAS MILLER Apollo 11 is the cinematic event fifty years in the making. Featuring never-before-seen large-format film footage of one of humanity’s greatest accomplishments. Twitter: @apollo11movie Instagram: @apollo11movie Facebook: @apollo11movie
From director Todd Douglas Miller (Dinosaur 13) comes a cinematic event fifty years in the making. Coming Soon To Theaters. Subscribe to GameSpot Universe Trailers! https://www.youtube.com/channel/UCJkvlOQedZfOijDDVXHYcXA/?sub_confirmation=1 Follow Us - http://twitter.com/GSUniverse Like Us - http://facebook.com/GameSpotUniverse http://www.gamespot.com
Moonwalk One is a feature-length documentary film about the flight of Apollo 11, which landed the first humans on the Moon. Besides portraying the massive technological achievement of that event, the film places it in some historical context and tries to capture the mood and the feel of the people on Earth when man first walked on another world. A year and a half before the Apollo 11 flight, NASA had approached Francis Thompson Inc about making a very ambitious film telling the story of the whole Apollo program, culminating with the landing on the Moon. Francis Thompson and his partner Alexander Hammid were at that time generally regarded as the best documentary filmmakers in the USA, having won fame as the creators of the hit of the 1964-65 New York World's Fair To Be Alive!, a multi-scr...
Join us as we delve deep into the details of the upcoming Apollo 11 Mission in 2024! Learn all about the history, significance, and exciting new developments surrounding this monumental event in space exploration. Get ready to witness history in the making with the ultimate guide to the Apollo 11 Mission! Stay tuned for all the latest updates and insider information. Don't miss out on this epic journey to the stars!Moon landing anniversary,Apollo 11 anniversary,Michael Collins,NASA,Apollo 11,Buzz Aldrin,Moon landing,Space exploration,Neil Armstrong,Space travel,Historic space mission,Apollo 11 documentary,Apollo program,Moon mission,Apollo 11 mission,Apollo mission,Lunar landing,Space history,Moon landing facts,Astronauts#Shorts #YouTubeMonetization #ShortsMonetization #whatifwonders
Apollo 11 Explained / Space Race Documentary | On July 16th 1969, the world watched as the Saturn V launched Apollo 11 into space, bringing the Space Race to an end, a defining moment in the Cold War. One of humanity's greatest achievements, Neil Armstrong, Buzz Aldrin and Michael Collins would embark on an 8-day journey to the Moon and back, 240,000 miles away. After decades of preparation and research, Neil Armstrong and Buzz Aldrin would become the first humans to step foot on another world, cementing America as the victors of the Space Race, 12 years of technological warfare between the worlds two largest superpowers; the United States and the Soviet Union. Man's journey to the moon would become the defining moment of the second half of the 20th century. Time Stamps 📽 Intro 0:00 ...
Apollo 11 was the first spaceflight that landed humans on the Moon. Americans Neil Armstrong and Buzz Aldrin landed on July 20, 1969, at 20:18 UTC (46 years ago). Armstrong became the first to step onto the lunar surface six hours later on July 21 at 02:56 UTC. Armstrong spent about two and a half hours outside the spacecraft, and together with Aldrin collected 47.5 pounds (21.5 kg) of lunar material for return to Earth. The third member of the mission, Michael Collins, piloted the command spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it just under a day later for the trip back to Earth.
Launched by a Saturn V rocket from Kennedy Space Center in Merritt Island, Florida, on July 16, Apollo 11 was the fifth manned mission of NASA's Apollo program. The Apollo spacecraft had three parts: a Command Module (CM) with a cabin for the three astronauts, and the only part that landed back on Earth; a Service Module (SM), which supported the Command Module with propulsion, electrical power, oxygen, and water; and a Lunar Module (LM) for landing on the Moon (which itself was composed of two parts). After being sent toward the Moon by the Saturn V's upper stage, the astronauts separated the spacecraft from it and traveled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the Sea of Tranquility. They stayed a total of about 21½ hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the Pacific Ocean on July 24.
Walking into eerie night
Slashing with my steel
Taste my sword I will abide
Wounds wich never heal
Standing like a warrior
In front of thousand eyes
I hear the howling wolves around
They're rulers of the night
I fought with steel a bloody fight
Crushed those unbelievers might
Hail warhammer in union we will stand
As one
You can control the night
Let none cross your way, be tight
Be brave and never give up your cause
We stand as one
Cry to the moon
And your mourning will sleep
A cry to the moon
Join the wolfs dream
After all I'm not alone
On shades of death I ride
Ancient songs that hit the night
For grieving loss of fight
I hear my singing brothers howl
For all is won and lost
I've lost my pride and home tonight
And all hope has it's cost
Ashes from those bloodred skies
A darkened chapter has begun
As the reaper came to mow us
Into hell
I can't control the night
Let none cross your way, be tight
Be brave and never give up your cause
Destroy, avenge
Cry to the moon
And your mourning will sleep
A cry to the moon
Join the wolfs dream
Cry to the moon
A cry to the moon