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

World War II

World War II (WWII or WW2), also known as the Second World War, was a global war that lasted from 1939 to 1945, although related conflicts began earlier. It involved the vast majority of the world's nations—including all of the great powers—eventually forming two opposing military alliances: the Allies and the Axis. It was the most widespread war in history, and directly involved more than 100 million people from over 30 countries. In a state of "total war", the major participants threw their entire economic, industrial, and scientific capabilities behind the war effort, erasing the distinction between civilian and military resources. Marked by mass deaths of civilians, including the Holocaust (in which approximately 11 million people were killed) and the strategic bombing of industrial and population centres (in which approximately one million were killed, and which included the atomic bombings of Hiroshima and Nagasaki), it resulted in an estimated 50 million to 85 million fatalities. These made World War II the deadliest conflict in human history.

Andy Russell

Andy Russell may refer to:

  • Andy Russell (singer), American popular vocalist
  • Andy Russell (American football), American football player
  • Andy Russell (soccer), soccer player
  • Andy Russell (Canadian author), conservationist
  • See also

  • Andrew Russell (disambiguation)
  • Andy Russell (singer)

    Andy Russell (born Andrés Rábago; September 16, 1919 – April 16, 1992) was an American popular vocalist, specializing in traditional pop and Latin music. He sold 8 million records in the 1940s to early 1950s singing in a romantic, baritone voice in his trademark bilingual English and Spanish style. He had chart-busters, such as "Bésame Mucho," "Amor," "What a Diff'rence a Day Made," "Laughing on the Outside (Crying on the Inside)," "Without You," and "The Anniversary Waltz." He also performed on many radio programs, most notably Your Hit Parade, in several movies, and on television. Later, he traveled to Mexico where he was the star of radio, television, motion pictures, records, and nightclubs. He also toured extensively throughout Latin America, Cuba, Portugal, and Spain and was the host of the television variety program El Show de Andy Russell in Buenos Aires, Argentina from 1956 to 1965, thus achieving international popularity and tremendous success during this period. Upon returning to the United States, he continued to record music, at which point his 1967 single "It's Such a Pretty World Today" was number one for 9 weeks on Billboard Magazine's Easy Listening Chart. During the 1970s and 1980s, he continued to perform, occasionally recording new records and making appearances on television. He received international accolades and awards, the most notable of which was being recognized as a trailblazer who not only introduced U.S. audiences to popular songs sung in English and Spanish but also influenced later performers--Hispanic and non-Hispanic—to sing bilingually, as well. Regrettably, today, Russell has been virtually forgotten and his enormous contributions as the first American Latino, bilingual singer who performed on three continents over a span of almost 50 years are hardly discussed by the media or scholars and much less credited by the performers who succeeded him.

    Andy Russell (American football)

    Charles Andrew "Andy" Russell (born October 29, 1941) is a former American football linebacker, playing his entire 12-year career for the Pittsburgh Steelers. He played college football for, and earned a degree in economics from, the University of Missouri. At Missouri he was a member of the Sigma Chi fraternity.

    As a freshman in high school, he moved from the New York area to St. Louis, attending Ladue High School. Having never played football in the East, he became a starter as a sophomore, playing end. In his junior and senior year, he played fullback and linebacker, earning all-state honors in his senior year. Heavily recruited by out-state universities, he selected Missouri and began a tradition of St. Louis area football players attending their home-state university under Coach Dan Devine.

    After playing for the Steelers his rookie season in 1963 and just missing out on playing the Chicago Bears for the NFL Championship, Russell temporarily left the team for the Army to fulfill ROTC commitments from Missouri. He was stationed in Germany for two years, achieving the rank of second lieutenant, and serving as an aide to a three-star general. He then returned to the Steelers in 1966, where he would spend the next 11 seasons.

    Podcasts:

    • Strict Rules Women Had To Follow During World War II

      More than ever before, women played key roles in World War II. Whether they were manning the homefront, working in factories, or doing the actual fighting, there were strict rules to be followed if they wanted to make it out alive. #WWII #Germany #USA Germany: Make new Nazis | 0:00 USA: Entertain the troops | 1:03 Allies: Loose lips sink ships | 1:55 U.S. and U.K.: Get a job | 2:39 U.S, U.K., Soviet Union: Enlist and fight | 3:26 U.S., France, U.K.: Improvise | 4:31 Occupied Europe: War crimes | 5:20 Represent from afar | 6:06 Occupied Europe: Resist | 6:53 U.K.: DIY cuisine | 7:49 Japan: Cultural adaptation | 8:29 Voiceover by: Tim Bensch Official Grunge Website https://www.grunge.com Read Full Article: https://www.grunge.com/1712527/strict-rules-women-followed-world-war-ii/

      published: 27 Dec 2024
    • World War II (short version)

      Watch the extended version here: https://youtu.be/-CQatuQdQv4 This video is a summary of the main stages of the Second World War. Let's retrace on a map the origins, course and consequences of the deadliest war in history. -------- Patreon: https://www.patreon.com/geohistory -------- English translation & voiceover: Rahul Venkit https://www.youtube.com/channel/UCD1X... -------- Original French version: https://youtu.be/aYFNuwShrhM Russian version: https://youtu.be/-iqfn8bOXUI Arabic version: https://youtu.be/nWe566JVlNQ Spanish version: https://youtu.be/_XZ-PAo_Gvc -------- Music: "Intentions" - "Anno Domini Beats" (YouTube Library) -------- Software used for editing: Adobe After Effects -------- Chapters 00:00 Introduction 00:16 End of World War I 00:47 Financial instability 01:31 ...

      published: 05 Oct 2018
    • World War 2, Explained in 5 Minutes!

      World War II was a global conflict in which Germany, Italy, and Japan, called the Axis powers fought against Britain, the Soviet Union, the US and China from 1939 to 45.

      published: 27 Mar 2024
    • World War II: From the Frontlines | Official Trailer | Netflix

      Through vividly enhanced archival footage and voices from all sides of the conflict, this docuseries brings WWII to life like never before. BAFTA winner John Boyega ("Star Wars," “The Woman King”) narrates this new exploration of the war's definitive moments. Watch on Netflix: https://www.netflix.com/title/81303912 About Netflix: Netflix is one of the world's leading entertainment services with over 247 million paid memberships in over 190 countries enjoying TV series, films and games across a wide variety of genres and languages. Members can play, pause and resume watching as much as they want, anytime, anywhere, and can change their plans at any time. World War II: From the Frontlines | Official Trailer | Netflix https://www.youtube.com/@Netflix Through vividly enhanced archival foot...

      published: 07 Dec 2023
    • WW2 - OverSimplified (Part 1)

      2 months of Skillshare for 99 cents: http://skl.sh/oversimplified MERCH: https://oversimplified.tv/merch PART 2 HERE: https://www.youtube.com/watch?v=fo2Rb9h788s Support us on Patreon (please)! https://www.patreon.com/OverSimple Want to know how I make these videos? I use Adobe After Effects and Photoshop. Get them here - https://goo.gl/zPHcm2 https://instagram.com/over_simplified https://twitter.com/over_simplified Copyright disclaimer - We do not give anyone permission to translate and/or reupload our videos or designs on YouTube or other social media platforms. -------------------------------------------------------------------- ATTRIBUTIONS All music licensed under Creative Commons: By Attribution 3.0 License (http://creativecommons.org/licenses/by/3.0/) All by Kevin Macleod (inco...

      published: 15 Mar 2018
    • The Complete History of the Second World War | World War II Documentary | Part 1

      RIP all those who lost their lives fighting for the future generations, it is our obligation to respect them and make this world a better place. A huge thank you to Tony Wilkins who helped tremendously on this video. It wouldn't have been possible without his knowledge and passion. You can check out some of his great work at https://defenceoftherealm.wordpress.com Thank you to CO.AG for the incredible custom-made sound tracks for this documentary. You can listen to all his music here: https://www.youtube.com/channel/UCcavSftXHgxLBWwLDm_bNvA https://www.patreon.com/user/community?u=3550597 ____________________________________________________________________ Don't forget to follow TOP5s on Social Media to keep up with upcoming videos, articles and new information! ►► https://www.in...

      published: 21 Sep 2017
    • WORLD WAR 2 Full Movie (1930s - 1945) - A Complete Overview

      The Full History of World War 2, goes through the entirety of the World War era starting with the rise of Fascism in 1920s Italy, until the end of the war in 1945! It is our double-length finale and serves as the seventh and final episode in our Late Modern megadocumentary, our look at history across the world from 1800 to 1945. Consider becoming a member for early access and to keep the project going: https://www.youtube.com/channel/UCFn4wt14ytUbngBJp8SsWKQ/join The video picks up where out World War I and the 1920s episode left off , and kicks off with the rise of the totalitarian regimes in Fascist Italy under Mussolini, Nazi Germany under Hitler, and the Stalinist USSR under Stalin. We also take a look at the Empire of Japan under Hirohito and the Spanish Civil War. We check out the...

      published: 20 Oct 2024
    • How Close Was Hitler To Winning WWII? #shorts #ww2 #war

      published: 15 Sep 2024
    • The Panther Tank: A River of History

      The Panther Tank: A River of History "The Panther Tank: A River of History" is a fascinating journey into the world of military machinery, showcasing the formidable Panther tank that left its mark on history. This video offers a glimpse into the intricate design and powerful presence of this iconic armored vehicle, highlighting its role in World War II and beyond. Viewers are taken on a riveting exploration of the tank's features, innovations, and the impact it had on the battlefield. With engaging visuals and insightful commentary, "The Panther Tank: A River of History" brings this legendary machine to life, inviting history enthusiasts and military buffs to immerse themselves in its legacy with a sense of awe and admiration. #ThePantherTank #RiverOfHistory #TankHistory #WorldWarII #Mi...

      published: 26 Dec 2024
    • World War II In Colour: Episode 1 - The Gathering Storm (WWII Documentary)

      With the Great Depression sapping the will of Western democracies to intervene, Mussolini and Hitler are able to grab and expand their powers. Recorded by World at War

      published: 21 Sep 2018
    developed with YouTube
    Strict Rules Women Had To Follow During World War II
    9:33

    Strict Rules Women Had To Follow During World War II

    • Order:
    • Duration: 9:33
    • Uploaded Date: 27 Dec 2024
    • views: 4173
    More than ever before, women played key roles in World War II. Whether they were manning the homefront, working in factories, or doing the actual fighting, there were strict rules to be followed if they wanted to make it out alive. #WWII #Germany #USA Germany: Make new Nazis | 0:00 USA: Entertain the troops | 1:03 Allies: Loose lips sink ships | 1:55 U.S. and U.K.: Get a job | 2:39 U.S, U.K., Soviet Union: Enlist and fight | 3:26 U.S., France, U.K.: Improvise | 4:31 Occupied Europe: War crimes | 5:20 Represent from afar | 6:06 Occupied Europe: Resist | 6:53 U.K.: DIY cuisine | 7:49 Japan: Cultural adaptation | 8:29 Voiceover by: Tim Bensch Official Grunge Website https://www.grunge.com Read Full Article: https://www.grunge.com/1712527/strict-rules-women-followed-world-war-ii/
    https://wn.com/Strict_Rules_Women_Had_To_Follow_During_World_War_Ii
    World War II (short version)
    11:22

    World War II (short version)

    • Order:
    • Duration: 11:22
    • Uploaded Date: 05 Oct 2018
    • views: 8997637
    Watch the extended version here: https://youtu.be/-CQatuQdQv4 This video is a summary of the main stages of the Second World War. Let's retrace on a map the origins, course and consequences of the deadliest war in history. -------- Patreon: https://www.patreon.com/geohistory -------- English translation & voiceover: Rahul Venkit https://www.youtube.com/channel/UCD1X... -------- Original French version: https://youtu.be/aYFNuwShrhM Russian version: https://youtu.be/-iqfn8bOXUI Arabic version: https://youtu.be/nWe566JVlNQ Spanish version: https://youtu.be/_XZ-PAo_Gvc -------- Music: "Intentions" - "Anno Domini Beats" (YouTube Library) -------- Software used for editing: Adobe After Effects -------- Chapters 00:00 Introduction 00:16 End of World War I 00:47 Financial instability 01:31 Rise of Nazism and Fascism 02:23 Events before the war 03:00 German annexations 03:37 German domination 04:24 French capitulation 04:59 Internationalization 05:52 Resistance 06:27 Operation Barbarossa 07:16 Pacific front 07:56 Crimes against humanity 08:37 Turning point 09:24 Retaking Europe 10:02 End of the war 10:32 Consequences
    https://wn.com/World_War_Ii_(Short_Version)
    World War 2, Explained in 5 Minutes!
    5:55

    World War 2, Explained in 5 Minutes!

    • Order:
    • Duration: 5:55
    • Uploaded Date: 27 Mar 2024
    • views: 131629
    World War II was a global conflict in which Germany, Italy, and Japan, called the Axis powers fought against Britain, the Soviet Union, the US and China from 1939 to 45.
    https://wn.com/World_War_2,_Explained_In_5_Minutes
    World War II: From the Frontlines | Official Trailer | Netflix
    1:48

    World War II: From the Frontlines | Official Trailer | Netflix

    • Order:
    • Duration: 1:48
    • Uploaded Date: 07 Dec 2023
    • views: 2356759
    Through vividly enhanced archival footage and voices from all sides of the conflict, this docuseries brings WWII to life like never before. BAFTA winner John Boyega ("Star Wars," “The Woman King”) narrates this new exploration of the war's definitive moments. Watch on Netflix: https://www.netflix.com/title/81303912 About Netflix: Netflix is one of the world's leading entertainment services with over 247 million paid memberships in over 190 countries enjoying TV series, films and games across a wide variety of genres and languages. Members can play, pause and resume watching as much as they want, anytime, anywhere, and can change their plans at any time. World War II: From the Frontlines | Official Trailer | Netflix https://www.youtube.com/@Netflix Through vividly enhanced archival footage and voices from all sides of the conflict, this docuseries brings WWII to life like never before.
    https://wn.com/World_War_Ii_From_The_Frontlines_|_Official_Trailer_|_Netflix
    WW2 - OverSimplified (Part 1)
    13:46

    WW2 - OverSimplified (Part 1)

    • Order:
    • Duration: 13:46
    • Uploaded Date: 15 Mar 2018
    • views: 94714318
    2 months of Skillshare for 99 cents: http://skl.sh/oversimplified MERCH: https://oversimplified.tv/merch PART 2 HERE: https://www.youtube.com/watch?v=fo2Rb9h788s Support us on Patreon (please)! https://www.patreon.com/OverSimple Want to know how I make these videos? I use Adobe After Effects and Photoshop. Get them here - https://goo.gl/zPHcm2 https://instagram.com/over_simplified https://twitter.com/over_simplified Copyright disclaimer - We do not give anyone permission to translate and/or reupload our videos or designs on YouTube or other social media platforms. -------------------------------------------------------------------- ATTRIBUTIONS All music licensed under Creative Commons: By Attribution 3.0 License (http://creativecommons.org/licenses/by/3.0/) All by Kevin Macleod (incompetech.com): "Exotic Battle" "Fast Talkin" "Infados" "Digya" "I Knew a Guy" "Faceoff" "Expeditionary" "Investigations" "The Chamber" "Marty Gots a Plan" "Earth Prelude" "Impact Intermezzo" "Constance" "Night Cave" Audionautix tracks are licensed under a Creative Commons Attribution licence Artist: http://audionautix.com/ Dark Mystery by Audionautix Temptation March by Audionautix All sound effects licensed under Creative Commons: By Attribution 3.0 License (http://creativecommons.org/licenses/by/3.0/): Airy Whoosh by sonictechtonic (https://freesound.org/people/sonictechtonic/sounds/243567/) Thuds by kgatto (https://freesound.org/people/kgatto/sounds/240281/) Pencil, Writing, Close, A (https://freesound.org/people/InspectorJ/sounds/398271/) throwing_garbage by simple machines (https://freesound.org/people/simple%20machines/sounds/46223/) Explosion_001 by cydon (https://freesound.org/people/cydon/sounds/268557/) SynthesisedExplosion04 by RSilveira_88 (https://freesound.org/people/RSilveira_88/sounds/216275/) GlasWindow by TheSoundcatcher (https://freesound.org/people/TheSoundcatcher/sounds/315646/) Several piercing funny pucker smacks by Zapsplat (https://www.zapsplat.com/music/several-piercing-funny-pucker-smacks/) Marching 3 by WebbFilmsUK (https://freesound.org/people/WebbFilmsUK/sounds/200322/) Chimes by Stickinthemud (https://freesound.org/people/Stickinthemud/sounds/44162/) LowerGunCock by woodmoose (https://freesound.org/people/woodmoose/sounds/177054/) Tearing Newspaper by Inspector J (https://freesound.org/people/InspectorJ/sounds/415767/) Garage Ceiling by NoiseCollector (https://freesound.org/people/NoiseCollector/sounds/126765/) Alley by NoiseCollector (https://freesound.org/people/NoiseCollector/sounds/126804/) Fireworks by InspectorJ (https://freesound.org/people/InspectorJ/sounds/410347/) Sherman E8 by nicStage (https://freesound.org/people/nicStage/sounds/368671/) 1204 sourMedusae by metamorphmuses (https://freesound.org/people/metamorphmuses/sounds/62142/) Alarm Siren by reinsamba (https://freesound.org/people/reinsamba/sounds/184323/) Footsteps Muddy by InspectorJ (https://freesound.org/people/InspectorJ/sounds/328166/) Till with Bell by Benboncan (https://freesound.org/people/Benboncan/sounds/91924/) Typing Phrase by jwestbury (https://freesound.org/people/jwestbury/sounds/144106/) World Map NASA Goddard Space Flight Center Image by Reto Stöckli (land surface, shallow water, clouds). Enhancements by Robert Simmon (ocean color, compositing, 3D globes, animation). Data and technical support: MODIS Land Group; MODIS Science Data Support Team; MODIS Atmosphere Group; MODIS Ocean Group Additional data: USGS EROS Data Center (topography); USGS Terrestrial Remote Sensing Flagstaff Field Center (Antarctica); Defense Meteorological Satellite Program (city lights). Grass Brushes by Dollyolly1 (https://dollyolly1.deviantart.com/art/Grass-Bruses-Pack1-CS4-154126314) CREATIVE COMMONS IMAGES: License (https://creativecommons.org/licenses/by/3.0/) Flag of Italy by Flanker (https://bit.ly/2VnGUtc) Flag of Spain (31-39) by SanchoPanzaXXI (https://bit.ly/2HaY43q) Flag of Spain (38-45) by SanchoPanzaXXI (https://bit.ly/2HatJ53) Flag of the Qing Dynasty by Sodacan https://en.wikipedia.org/wiki/Timeline_of_national_flags#/media/File:Flag_of_the_Qing_Dynasty_(1889-1912).svg Cara Legerro by NJR ZA (https://en.wikipedia.org/wiki/L3/35#/media/File:Carro_Leggero_3_35-001.jpg) Leidingen Landschaft by atreyu (https://commons.wikimedia.org/wiki/File:Leidingen_Landschaft.JPG) Hematite by Eurico Zimbres (https://commons.wikimedia.org/wiki/File:HematitaEZ.jpg) Waving flag icon collection by luis_molinero (https://www.freepik.com/free-vector/waving-flag-icon-collection_1152871.htm#term=flag&page=1&position=3) Cloudy Sky by FotoSleuth (https://commons.wikimedia.org/wiki/File:Cloudy_Sky_(11204371415).jpg) Paul v. Hindenburg by Bundesarchiv (German Federal Archives) (https://en.wikipedia.org/wiki/File:Bundesarchiv_Bild_183-C06886,_Paul_v._Hindenburg.jpg) Brandenburg Gate East by Eric Pancer (https://en.wikipedia.org/wiki/File:Vxla-berlin-brandenburg-gate-east.jpg) .
    https://wn.com/WW2_Oversimplified_(Part_1)
    The Complete History of the Second World War | World War II Documentary | Part 1
    48:30

    The Complete History of the Second World War | World War II Documentary | Part 1

    • Order:
    • Duration: 48:30
    • Uploaded Date: 21 Sep 2017
    • views: 6490031
    RIP all those who lost their lives fighting for the future generations, it is our obligation to respect them and make this world a better place. A huge thank you to Tony Wilkins who helped tremendously on this video. It wouldn't have been possible without his knowledge and passion. You can check out some of his great work at https://defenceoftherealm.wordpress.com Thank you to CO.AG for the incredible custom-made sound tracks for this documentary. You can listen to all his music here: https://www.youtube.com/channel/UCcavSftXHgxLBWwLDm_bNvA https://www.patreon.com/user/community?u=3550597 ____________________________________________________________________ Don't forget to follow TOP5s on Social Media to keep up with upcoming videos, articles and new information! ►► https://www.instagram.com/thetop5sofficial/?hl=en ►► https://twitter.com/TheTop5s ►►https://www.facebook.com/TheOfficialTop5s/ ►► Check out Top5s on Patreon! https://www.patreon.com/Top5ss ►► Top5s Merch! https://www.top5s.co.uk/store/ Special Thank you to CO.AG for the music as usual! If you are looking for music for any video production, games, movies etc. He is the man to speak to so check out his channel or send him a personal message! https://www.youtube.com/channel/UCcavSftXHgxLBWwLDm_bNvA Thanks for watching! Top5s DISCLAIMER: All materials in these videos are used for entertainment purposes and fall within the guidelines of fair use. No copyright infringement is intended. If you are, or represent the copyright owner of materials used in this video, and have an issue with the use of said material, PLEASE email us before putting in a claim and we can resolve the issue immediately. We can be reach on this email: info@top5s.co.uk
    https://wn.com/The_Complete_History_Of_The_Second_World_War_|_World_War_Ii_Documentary_|_Part_1
    WORLD WAR 2 Full Movie (1930s - 1945) - A Complete Overview
    2:12:03

    WORLD WAR 2 Full Movie (1930s - 1945) - A Complete Overview

    • Order:
    • Duration: 2:12:03
    • Uploaded Date: 20 Oct 2024
    • views: 1172339
    The Full History of World War 2, goes through the entirety of the World War era starting with the rise of Fascism in 1920s Italy, until the end of the war in 1945! It is our double-length finale and serves as the seventh and final episode in our Late Modern megadocumentary, our look at history across the world from 1800 to 1945. Consider becoming a member for early access and to keep the project going: https://www.youtube.com/channel/UCFn4wt14ytUbngBJp8SsWKQ/join The video picks up where out World War I and the 1920s episode left off , and kicks off with the rise of the totalitarian regimes in Fascist Italy under Mussolini, Nazi Germany under Hitler, and the Stalinist USSR under Stalin. We also take a look at the Empire of Japan under Hirohito and the Spanish Civil War. We check out the initial moves of those who would form the basis of the Axis Powers as Italy invades Ethiopia, Japan invades China, and Hitler takes control of Austria and Czechoslovakia. After the start of the war, we will check out the initial Axis victories, as Hitler expands across Europe, with a focus on the Battle of France and the Battle of Britain, Mussolini across the Mediterranean and North Africa, and Japan into Southeast Asia and the Pacific Islands, including the attack on Pearl Harbor. Hitler's next target is the USSR, and Operation Barbarossa is launched, the largest invasion force in history. As the Axis forces seem insurmountable, we check out the domestic front in Nazi Germany, including its conquered territories in Poland and Eastern Europe, where ghettos, concentration camps and extermination camps were set up for Jews, Communists, and those deemed Untermensch (subhuman). We also take a look at Japan's conquests and their propaganda promoting the Greater East Asia Co-Prosperity Sphere, as well as the Stakhanovite movement in the USSR, and the entry of a new player to the war: the United States. We then check out the series of turning points in the different theatres of war (El Alamein in North Africa, Stalingrad in Europe, Midway in the Pacific), that eventually led to the tide shifting against the Axis. The D-Day landings, the Battle of the Bulge, and the Battle of Berlin all marked the end of the war in Europe, while Iwo Jima, Okinawa, and the use of a devastating new atomic bomb onHiroshima and Nagasaki, brought the end in the Pacific. These are the strategic decisions, epic confrontations, and far-reaching consequences of the deadliest war in human history. 0:00 Totalitarian States (Rise of Mussolini and Hitler, Stalinist Soviet Union, Empire of Japan) 26:05 Initial Moves (Italy v Ethiopia, Hitler in Austria and Czechoslovakia, Japan v China) 44:24 World War II Begins (European, Asia-Pacific, and North African fronts) 1:07:19 Turning Points (El Alamein, Stalingrad, Midway) 1:28:28 End of the War (D-Day, Battle of Berlin, Iwo Jima, Okinawa) 2:07:32 Postwar (Division of Korea, Germany) The Late Modern Series: https://www.youtube.com/playlist?list=PLaWQkkziGGfdwS3UGpld38LS7XvZZ09aY Welcome to Late Modern series of the World History Summarized project! The entire project is meant to summarize broad topics in history and balances political history and events, with social/daily life, and culture. If you've watched our History of the World documentary, the project is a perfect next step. The videos are standalone, but presented in a chronological fashion. This series "the Late Modern" takes place after our megadocumentaries "The Ancient World", "The Medieval World", and the "Early Modern". It will be divided into 7 videos about the Late Modern period (c. 1800 - 1945) all over the world, and will be called Phase 4. Once these videos are completed, we will move onto Phase 5, the FINAL PHASE of the project, but this series will be considered completed, and compiled into ONE MEGA-DOCUMENTARY containing all 7 parts. ----- Check out the Sections on our Homepage for the series we are working on: https://www.youtube.com/c/MadeInHistory ----- Please subscribe to Made In History for more videos! We are always trying to grow! All images used with CC license. Music Used: Kevin Macleod - Crossing the Chasm Kevin Macleod - Crusade/Crusade Heavy Industry Kevin Macleod - Darkest Child Kevin Macleod - Wizardtorium Kevin Macleod - The Descent Alexander Nakarada - Chase #worldhistory #modernhistory #worldwar #history #ww2 #wwii
    https://wn.com/World_War_2_Full_Movie_(1930S_1945)_A_Complete_Overview
    How Close Was Hitler To Winning WWII? #shorts #ww2 #war
    0:36

    How Close Was Hitler To Winning WWII? #shorts #ww2 #war

    • Order:
    • Duration: 0:36
    • Uploaded Date: 15 Sep 2024
    • views: 6310214
    https://wn.com/How_Close_Was_Hitler_To_Winning_Wwii_Shorts_WW2_War
    The Panther Tank: A River of History
    0:49

    The Panther Tank: A River of History

    • Order:
    • Duration: 0:49
    • Uploaded Date: 26 Dec 2024
    • views: 572
    The Panther Tank: A River of History "The Panther Tank: A River of History" is a fascinating journey into the world of military machinery, showcasing the formidable Panther tank that left its mark on history. This video offers a glimpse into the intricate design and powerful presence of this iconic armored vehicle, highlighting its role in World War II and beyond. Viewers are taken on a riveting exploration of the tank's features, innovations, and the impact it had on the battlefield. With engaging visuals and insightful commentary, "The Panther Tank: A River of History" brings this legendary machine to life, inviting history enthusiasts and military buffs to immerse themselves in its legacy with a sense of awe and admiration. #ThePantherTank #RiverOfHistory #TankHistory #WorldWarII #MilitaryHistory #ThePantherTankExhibit #HistoricTanks #TankMuseum #WarHistory #ArmorHistory Join this channel to get access to the benefits: https://www.youtube.com/channel/UCkDCL6KVwckTXBOrJncNI3Q/join Help support my channel: https://www.paypal.me/ZolaTech https://www.patreon.com/ASmallPartofHistory Visit the online store: https://temu.to/m/u5x92iuink8 Use the reorder code and get a 10% discount : apu13134
    https://wn.com/The_Panther_Tank_A_River_Of_History
    World War II In Colour: Episode 1 - The Gathering Storm (WWII Documentary)
    51:14

    World War II In Colour: Episode 1 - The Gathering Storm (WWII Documentary)

    • Order:
    • Duration: 51:14
    • Uploaded Date: 21 Sep 2018
    • views: 2598856
    With the Great Depression sapping the will of Western democracies to intervene, Mussolini and Hitler are able to grab and expand their powers. Recorded by World at War
    https://wn.com/World_War_Ii_In_Colour_Episode_1_The_Gathering_Storm_(Wwii_Documentary)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Strict Rules Women Had To Follow During World War II
      9:33
      Strict Rules Women Had To Follow During World War IIremove from playlist
    • World War II (short version)
      11:22
      World War II (short version)remove from playlist
    • World War 2, Explained in 5 Minutes!
      5:55
      World War 2, Explained in 5 Minutes!remove from playlist
    • World War II: From the Frontlines | Official Trailer | Netflix
      1:48
      World War II: From the Frontlines | Official Trailer | Netflixremove from playlist
    • WW2 - OverSimplified (Part 1)
      13:46
      WW2 - OverSimplified (Part 1)remove from playlist
    • The Complete History of the Second World War | World War II Documentary | Part 1
      48:30
      The Complete History of the Second World War | World War II Documentary | Part 1remove from playlist
    • WORLD WAR 2 Full Movie (1930s - 1945) - A Complete Overview
      2:12:03
      WORLD WAR 2 Full Movie (1930s - 1945) - A Complete Overviewremove from playlist
    • The Panther Tank: A River of History
      0:49
      The Panther Tank: A River of Historyremove from playlist
    • World War II In Colour: Episode 1 - The Gathering Storm (WWII Documentary)
      51:14
      World War II In Colour: Episode 1 - The Gathering Storm (WWII Documentary)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Strict Rules Women Had To Follow During World War II

    More than ever before, women played key roles in World War II. Whether they were manning the homefront, working in factories, or doing the actual fighting, there were strict rules to be followed if they wanted to make it out alive. #WWII #Germany #USA Germany: Make new Nazis | 0:00 USA: Entertain the troops | 1:03 Allies: Loose lips sink ships | 1:55 U.S. and U.K.: Get a job | 2:39 U.S, U.K., Soviet Union: Enlist and fight | 3:26 U.S., France, U.K.: Improvise | 4:31 Occupied Europe: War crimes | 5:20 Represent from afar | 6:06 Occupied Europe: Resist | 6:53 U.K.: DIY cuisine | 7:49 Japan: Cultural adaptation | 8:29 Voiceover by: Tim Bensch Official Grunge Website https://www.grunge.com Read Full Article: https://www.grunge.com/1712527/strict-rules-women-followed-world-war-ii/
    9:33
    Strict Rules Women Had To Follow During World War II
    More than ever before, women played key roles in World War II. Whether they were manning t...
    published: 27 Dec 2024
    Play in Full Screen
    11:22
    World War II (short version)
    Watch the extended version here: https://youtu.be/-CQatuQdQv4 This video is a summary of ...
    published: 05 Oct 2018
    Play in Full Screen
    5:55
    World War 2, Explained in 5 Minutes!
    World War II was a global conflict in which Germany, Italy, and Japan, called the Axis pow...
    published: 27 Mar 2024
    Play in Full Screen
    1:48
    World War II: From the Frontlines | Official Trailer | Netflix
    Through vividly enhanced archival footage and voices from all sides of the conflict, this ...
    published: 07 Dec 2023
    Play in Full Screen
    13:46
    WW2 - OverSimplified (Part 1)
    2 months of Skillshare for 99 cents: http://skl.sh/oversimplified MERCH: https://oversimpl...
    published: 15 Mar 2018
    Play in Full Screen
    48:30
    The Complete History of the Second World War | World War II Documentary | Part 1
    RIP all those who lost their lives fighting for the future generations, it is our obligati...
    published: 21 Sep 2017
    Play in Full Screen
    2:12:03
    WORLD WAR 2 Full Movie (1930s - 1945) - A Complete Overview
    The Full History of World War 2, goes through the entirety of the World War era starting w...
    published: 20 Oct 2024
    Play in Full Screen
    0:36
    How Close Was Hitler To Winning WWII? #shorts #ww2 #war
    published: 15 Sep 2024
    Play in Full Screen
    0:49
    The Panther Tank: A River of History
    The Panther Tank: A River of History "The Panther Tank: A River of History" is a fascinat...
    published: 26 Dec 2024
    Play in Full Screen
    51:14
    World War II In Colour: Episode 1 - The Gathering Storm (WWII Documentary)
    With the Great Depression sapping the will of Western democracies to intervene, Mussolini ...
    published: 21 Sep 2018
    Play in Full Screen

    World War II

    World War II (WWII or WW2), also known as the Second World War, was a global war that lasted from 1939 to 1945, although related conflicts began earlier. It involved the vast majority of the world's nations—including all of the great powers—eventually forming two opposing military alliances: the Allies and the Axis. It was the most widespread war in history, and directly involved more than 100 million people from over 30 countries. In a state of "total war", the major participants threw their entire economic, industrial, and scientific capabilities behind the war effort, erasing the distinction between civilian and military resources. Marked by mass deaths of civilians, including the Holocaust (in which approximately 11 million people were killed) and the strategic bombing of industrial and population centres (in which approximately one million were killed, and which included the atomic bombings of Hiroshima and Nagasaki), it resulted in an estimated 50 million to 85 million fatalities. These made World War II the deadliest conflict in human history.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×