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

Eastern Front

Eastern Front may refer to:

  • Eastern Front (World War I)
  • Eastern Front (World War II)
  • Eastern Front (Turkey), of the Turkish War of Independence
  • Turkish–Armenian War, often referred to by itself as the Eastern Front
  • Eastern Front (Sudan)
  • Eastern Front (video game)
  • 1635: The Eastern Front (novel)
  • See also

  • Frente Leste, the theater of anti-guerrilla operations for the Portuguese Armed Forces in the East of Angola, during the Portuguese Colonial War (1961-1974)
  • Eastern Front (World War I)

    The Eastern Front of World War I (Russian: Восточный фронт, sometimes called the "Second Fatherland War" or "Second Patriotic War" (Russian: Вторая Отечественная война) in Russian sources) was a major theatre of operations that encompassed at its greatest extent the entire frontier between the Russian Empire and Romania on one side and the Austro-Hungarian Empire, Bulgaria, the Ottoman Empire and Germany on the other. It stretched from the Baltic Sea in the north to the Black Sea in the south, included most of Eastern Europe and stretched deep into Central Europe as well. The term contrasts with "Western Front", which was being fought in Belgium and France.

    In the opening months of the war, the Imperial Russian Army attempted an invasion of eastern Prussia in the northwestern theater, only to be beaten back by the Germans after some initial success. At the same time, in the south, they successfully invaded Galicia, defeating the Austro-Hungarian forces there. In Russian Poland, the Germans failed to take Warsaw. But by 1915, the German and Austro-Hungarian armies were on the advance, dealing the Russians heavy casualties in Galicia and in Poland, forcing it to retreat. Grand Duke Nicholas was sacked from his position as the commander-in-chief and replaced by the Tsar himself. Several offensives against the Germans in 1916 failed, including Lake Naroch Offensive and the Baranovichi Offensive. However, General Aleksei Brusilov oversaw a highly successful operation against Austria-Hungary that became known as the Brusilov Offensive, which saw the Russian army make large gains.

    Eastern Front (Turkey)

    The Eastern Front (Modern Turkish: Şark Cephesi or Doğu Cephesi) was one of the fronts of the Army of the Grand National Assembly during the Turkish War of Independence. Its commanded all military units in Eastern Region. At first, its headquarters was located at Erzurum, and moved to Sarıkamış, then Kars during the Turkish–Armenian War (which itself is usually referred to synecdochically as the Eastern Front of the Turkish War of Independence).

    The Eastern Front has its foundations in remnants of the XV Corps of the Ottoman Army. It engaged in the Turkish–Armenian War and the Georgian operations.

    Formations

    Order of battle of the XV Corps, April 2, 1919

    On April 2, 1919, the XV Corps was organized as follows:

  • 3rd Caucasian Division (commander: Kaymakam Halid Bey (Karsıalan), chief of staff: Kurmay Binbaşı Yusuf Kemal Bey, Tortum - Isısu - Zivin - Girekösek areas, headquarters: Girekösek, present-day Yeşildere)
    • 7th Caucasian Infantry Regiment (Zivin, moved to Trabzon)
    • 8th Caucasian Infantry Regiment (Tortum, moved to Gümüşhane)
    • 11th Caucasian Infantry Regiment (İspir, moved to Hopa)
    • 3rd Artillery Regiment
    • Cavalry company
    • Health company
  • 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.

    Eastern Front (World War II)

    The Eastern Front of World War II was a theatre of conflict between the European Axis powers and co-belligerent Finland against the Soviet Union, Poland and other allies, which encompassed Northern, Southern and Central and Eastern Europe from 22 June 1941 to 9 May 1945. It has been known as the Great Patriotic War (Russian: Великая Отечественная Война, Velikaya Otechestvennaya Voyna) in the former Soviet Union and in modern Russia, while in Germany it was called the Eastern Front (German: die Ostfront), the Eastern Campaign (der Ostfeldzug) or the Russian Campaign (der Rußlandfeldzug).

    The battles on the Eastern Front constituted the largest military confrontation in history. They were characterized by unprecedented ferocity, wholesale destruction, mass deportations, and immense loss of life due to combat, starvation, exposure, disease, and massacres. The Eastern Front, as the site of nearly all extermination camps, death marches, ghettos, and the majority of pogroms, was central to the Holocaust. Of the estimated 70 million deaths attributed to World War II, over 30 million, many of them civilian, occurred on the Eastern Front. The Eastern Front was decisive in determining the outcome of World War II, eventually serving as the main reason for Germany's defeat. It resulted in the destruction of the Third Reich, the partition of Germany for nearly half a century and the rise of the Soviet Union as a military and industrial superpower.

    Podcasts:

    • Operation Barbarossa: German Invasion of Russia | Part One

      'Brutal Reality of Eastern Front Exposed by Lost German Diaries' On 22 June 1941, Hitler's Germany launched ‘Operation Barbarossa’, the attack of the Soviet Union, the largest invasion in military history. In June 2019, twelve dusty notebooks and a wealth of loose paperwork were discovered in Germany; the diaries of Oberleutnant Wilhelm Sander, a young officer in the 11th Panzer-Regiment who took part in the enormous campaign. On every single day Sander, in a brutally honest manner, elaborately recorded his experiences, impressions and the events he witnessed. Now transcribed and translated for the first time, they offer a brutally honest, intimate and fascinating view into the murderous and unforgiving nature of war on the Eastern Front from the summer of 1941 to the eventual German re...

      published: 21 Apr 2023
    • The Eastern Front | Full Action War Movie | WWll | World War 2

      The Eastern Front - A dwindling group of soldiers battle to return to their lines, whilst being forced to face some of the harsh realities of War. 2020. Stars: Josh Harper, Neal Ward, Laura Jean Marsh **Licensed from Distribution Solutions/Alliance Entertainment. All rights reserved** *SUBSCRIBE to MOVIE CENTRAL!* - https://bit.ly/3mRDJox Welcome to Movie Central. Subscribe and watch more Awesome Movies! https://www.youtube.com/channel/UCGBzBkV-MinlBvHBzZawfLQ/playlists MORE FULL MOVIES - FREE on YouTube!  Free Action Movies: https://bit.ly/3uMwRxq  Free Sci-Fi Movies: https://bit.ly/3o3lLAm  Free Horror Movies: https://bit.ly/3aBBt2J  Free Asylum Movies: https://bit.ly/3cipzeI  Free Crime/Thriller: https://bit.ly/3o01prJ  Free Drama Movies: https://bit.ly/3Pu4mN9  Free Comedy M...

      published: 27 Aug 2021
    • The Eastern Front | Documentary Trailer

      Watch The Eastern Front, a brand new documentary from John Sweeney & Byline TV covering war crimes, torture and conflict in Eastern Ukraine. Watch the film here: https://byline.tv/putindocumentary

      published: 16 May 2023
    • THE EASTERN FRONT Documentary PART 1 – BARBAROSSA THE INVASION

      A study of the German invasion of Russia during WWII, utilising newsreel film, animated maps and interviews with both German and Russian participants, and examining how the Germans’ use of armour led to an early success against a numerically superior enemy. Part 1: Barbarossa; The Invasion. The pre-war development of German & Russian armour and the progress of the invasion from June 1941 to the advance on Stalingrad in Aug 42. © 1984 Please don't forget to like, comment, and subscribe. Thanks for watching. This production is for viewing purposes only and should not be reproduced without prior consent.

      published: 06 Jan 2019
    • Operation Barbarossa: Brutal Account of German Invasion of Russia | Part Two

      On 22 June 1941, Hitler's Germany launched ‘Operation Barbarossa’, the attack of the Soviet Union, the largest invasion in military history. In June 2019, twelve dusty notebooks and a wealth of loose paperwork were discovered in Germany; the diaries of Oberleutnant Wilhelm Sander, a young officer in the 11th Panzer-Regiment who took part in the enormous campaign. On every single day Sander, in a brutally honest manner, elaborately recorded his experiences, impressions and the events he witnessed. Now transcribed and translated for the first time, they offer a brutally honest, intimate and fascinating view into the murderous and unforgiving nature of war on the Eastern Front from the summer of 1941 to the eventual German retreat in the terrible winter of 1941/1942, while offering a unique...

      published: 24 May 2023
    • Eastern Front animated: 1941

      In the summer of 1941 German army was the strongest in Europe and was preparing to use its superiority to defeat the Soviet Union in a three-month lightning campaign. The Soviets, on the other hand, were preparing for a long war and had built up a strong war economy, but the modernization and expansion of the Red Army was still underway and its methods and organization were not yet fully tested in battle. Can the Wehrmacht damage the Soviet Union enough to prevent a recovery or can the Soviets hold until their long-term advantages start to have a strong impact on the war? Patreon: https://www.patreon.com/Eastory Symbols: https://drive.google.com/open?id=1FVGSaFFwWyw1nrjVCOYJ2MUZ_kb8ZOBX Main sources for orders of battle and frontline positions: http://www.wwii-photos-maps.com/ http://ww...

      published: 20 May 2018
    • EASTERN FRONT IN A NUTSHELL (reupload)

      Source: https://youtu.be/EJcByHRQl24 https://youtu.be/hxSXv9xZZcM https://youtu.be/fKum4JmG-ew ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ► Business inquiries: reichmontage@gmail.com ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ # # #

      published: 30 Apr 2021
    • How bad was the Eastern Front in World War 2?

      During World War 2, Germany would fight on a number of fronts. One in particular would become perhaps the bloodiest campaign of the war. In this video we look at the Eastern Front during World War 2 and ask the question, how bad was it? At Premier History we want to take you on a journey through time and grow your knowledge to see what it was actually like to be in some of the pivotal points in World History. Make sure to leave a Like 👍 and a Comment 📜 down below or share this video with your friends. - - - 🔴 Subscribe to the channel: http://bit.ly/3pLtnXf - - - #PremierHistory #WW2 #EasternFront - - - Follow Premier History on socials: 🐦 Twitter: https://twitter.com/HistoryPremier 📸Instagram: https://www.instagram.com/premierhistory/ Cylinder Seven by Chris Zabriskie is licensed under...

      published: 06 Nov 2021
    • Andrey Vlasov: From Soviet General to German Collaborator

      🌐 Explore the riveting and controversial tale of Andrey Andreyevich Vlasov in this deep dive into one of World War II's most enigmatic figures. Born on September 14, 1901, Vlasov started as a Soviet Red Army general, but his story took a dramatic turn as he became a collaborator with Germany during the tumultuous Axis-Soviet campaigns. 🔍 In this video, we uncover Vlasov's role in the Battle of Moscow (1941–1942) and his capture while attempting to lift the siege of Leningrad. His defection to Germany marked a pivotal moment, leading to the formation of the Russian Liberation Army (ROA). Initially utilized by the Germans to manipulate Red Army troops, the ROA took a tangible form in 1944, thanks to Heinrich Himmler's efforts to address Germany's manpower shortage. 🛡️ As the war neared its...

      published: 22 Jul 2023
    • WW2: The Battles Won & Lost That Decided The Outcome Of The Greatest Conflict In History | Timeline

      As the war in the Pacific escalates, the Japanese have already established a foothold in mainland China, Singapore and Indonesia. However, the Australians prepare an offensive to drive the Japanese back... It's like Netflix for history... Sign up to History Hit, the world's best history documentary service, at a huge discount using the code 'TIMELINE' ---ᐳ http://bit.ly/3a7ambu You can find more from us on: https://www.facebook.com/timelineWH https://www.instagram.com/timelineWH This channel is part of the History Hit Network. Any queries, please contact owned-enquiries@littledotstudios.com #ConvoyPQ17 #KokodaTrackCampaign #PacificWar

      published: 03 May 2020
    developed with YouTube
    Operation Barbarossa: German Invasion of Russia | Part One
    1:27:34

    Operation Barbarossa: German Invasion of Russia | Part One

    • Order:
    • Duration: 1:27:34
    • Uploaded Date: 21 Apr 2023
    • views: 7438497
    'Brutal Reality of Eastern Front Exposed by Lost German Diaries' On 22 June 1941, Hitler's Germany launched ‘Operation Barbarossa’, the attack of the Soviet Union, the largest invasion in military history. In June 2019, twelve dusty notebooks and a wealth of loose paperwork were discovered in Germany; the diaries of Oberleutnant Wilhelm Sander, a young officer in the 11th Panzer-Regiment who took part in the enormous campaign. On every single day Sander, in a brutally honest manner, elaborately recorded his experiences, impressions and the events he witnessed. Now transcribed and translated for the first time, they offer a brutally honest, intimate and fascinating view into the murderous and unforgiving nature of war on the Eastern Front from the summer of 1941 to the eventual German retreat in the terrible winter of 1941/1942, while offering a unique glimpse into the world of thought of a highly politicised officer of the German Wehrmacht and member of the NSDAP. Follow the path of Leutnant Friedrich Sander, a Panzer officer in the German Wehrmacht during Operation Barbarossa, the attack on the Soviet Union. In the first part of a two-part film, we follow Leutnant Sander on the strenuous, and costly race towards Leningrad and learn about the murderous and terrifying goals of the German campaign in the east. Discover the past on History Hit with ad-free exclusive podcasts and documentaries released weekly presented by world renowned historians Dan Snow, Suzannah Lipscomb, Lucy Worsley, Mary Beard and more. Watch, listen and read history wherever you are, whenever you want it. Available on all devices: Apple TV, Amazon Firestick, Android TV, Samsung Smart TV, Roku, Xbox, Chromecast, Xfinity, and iOs & Android. Sign up to History Hit now and get 14 days free: http://access.historyhit.com/checkout We're offering a special discount to History Hit for our subscribers, get 50% off your first 3 months with code YOUTUBE: http://www.access.historyhit.com/ #historyhit #barbarossa #worldwartwo
    https://wn.com/Operation_Barbarossa_German_Invasion_Of_Russia_|_Part_One
    The Eastern Front | Full Action War Movie | WWll | World War 2
    1:42:48

    The Eastern Front | Full Action War Movie | WWll | World War 2

    • Order:
    • Duration: 1:42:48
    • Uploaded Date: 27 Aug 2021
    • views: 2726073
    The Eastern Front - A dwindling group of soldiers battle to return to their lines, whilst being forced to face some of the harsh realities of War. 2020. Stars: Josh Harper, Neal Ward, Laura Jean Marsh **Licensed from Distribution Solutions/Alliance Entertainment. All rights reserved** *SUBSCRIBE to MOVIE CENTRAL!* - https://bit.ly/3mRDJox Welcome to Movie Central. Subscribe and watch more Awesome Movies! https://www.youtube.com/channel/UCGBzBkV-MinlBvHBzZawfLQ/playlists MORE FULL MOVIES - FREE on YouTube!  Free Action Movies: https://bit.ly/3uMwRxq  Free Sci-Fi Movies: https://bit.ly/3o3lLAm  Free Horror Movies: https://bit.ly/3aBBt2J  Free Asylum Movies: https://bit.ly/3cipzeI  Free Crime/Thriller: https://bit.ly/3o01prJ  Free Drama Movies: https://bit.ly/3Pu4mN9  Free Comedy Movies: https://bit.ly/3IE0wPd  Free Western Movies: https://bit.ly/3RqTX6u  Free Adventure Movies: https://bit.ly/3yHolAT  MOVIE CENTRAL Channel: https://bit.ly/3o27Fze ** All of the content on this channel is under legal license from various copyright holders and distributors. We ask you to please contact us if you believe there are any copyright issues via - you_tube@valleyarm.com ** #WarMovies #MovieCentral #FreeYouTubeMovies
    https://wn.com/The_Eastern_Front_|_Full_Action_War_Movie_|_Wwll_|_World_War_2
    The Eastern Front | Documentary Trailer
    2:20

    The Eastern Front | Documentary Trailer

    • Order:
    • Duration: 2:20
    • Uploaded Date: 16 May 2023
    • views: 9764
    Watch The Eastern Front, a brand new documentary from John Sweeney & Byline TV covering war crimes, torture and conflict in Eastern Ukraine. Watch the film here: https://byline.tv/putindocumentary
    https://wn.com/The_Eastern_Front_|_Documentary_Trailer
    THE EASTERN FRONT Documentary PART 1 – BARBAROSSA THE INVASION
    26:53

    THE EASTERN FRONT Documentary PART 1 – BARBAROSSA THE INVASION

    • Order:
    • Duration: 26:53
    • Uploaded Date: 06 Jan 2019
    • views: 413547
    A study of the German invasion of Russia during WWII, utilising newsreel film, animated maps and interviews with both German and Russian participants, and examining how the Germans’ use of armour led to an early success against a numerically superior enemy. Part 1: Barbarossa; The Invasion. The pre-war development of German & Russian armour and the progress of the invasion from June 1941 to the advance on Stalingrad in Aug 42. © 1984 Please don't forget to like, comment, and subscribe. Thanks for watching. This production is for viewing purposes only and should not be reproduced without prior consent.
    https://wn.com/The_Eastern_Front_Documentary_Part_1_–_Barbarossa_The_Invasion
    Operation Barbarossa: Brutal Account of German Invasion of Russia | Part Two
    58:36

    Operation Barbarossa: Brutal Account of German Invasion of Russia | Part Two

    • Order:
    • Duration: 58:36
    • Uploaded Date: 24 May 2023
    • views: 1671837
    On 22 June 1941, Hitler's Germany launched ‘Operation Barbarossa’, the attack of the Soviet Union, the largest invasion in military history. In June 2019, twelve dusty notebooks and a wealth of loose paperwork were discovered in Germany; the diaries of Oberleutnant Wilhelm Sander, a young officer in the 11th Panzer-Regiment who took part in the enormous campaign. On every single day Sander, in a brutally honest manner, elaborately recorded his experiences, impressions and the events he witnessed. Now transcribed and translated for the first time, they offer a brutally honest, intimate and fascinating view into the murderous and unforgiving nature of war on the Eastern Front from the summer of 1941 to the eventual German retreat in the terrible winter of 1941/1942, while offering a unique glimpse into the world of thought of a highly politicised officer of the German Wehrmacht and member of the NSDAP. Re-join Leutnant Friedrich Sander, a Panzer officer in the German Wehrmacht as he continues his journey into the heart of the Soviet Union as part of Operation Barbarossa. In Part Two, we pick up with Sander as the Russian weather starts to turns, the German advance begins to stutter and the Soviets prepare for their enormous counter attack. The brutal reality of the Eastern Front during World War II is exposed through his lost German diaries. The speaker recounts firsthand experiences of the difficulties faced in the harsh conditions of the war. The Russian army was tough and the Germans struggled to advance and capture Moscow. The speaker also describes the violence and brutality directed towards civilian populations in areas where the Germans retreated, which even shook the dedicated National Socialist soldiers. The war was a traumatic experience, reflected upon by the speaker who has become a pacifist as a result. Discover the past on History Hit with ad-free exclusive podcasts and documentaries released weekly presented by world renowned historians Dan Snow, Suzannah Lipscomb, Lucy Worsley, Mary Beard and more. Watch, listen and read history wherever you are, whenever you want it. Available on all devices: Apple TV, Amazon Firestick, Android TV, Samsung Smart TV, Roku, Xbox, Chromecast, Xfinity, and iOs & Android. Sign up to History Hit now and get 14 days free: http://access.historyhit.com/checkout We're offering a special discount to History Hit for our subscribers, get 50% off your first 3 months with code YOUTUBE: http://www.access.historyhit.com/ #historyhit #worldwartwo #barbarossa
    https://wn.com/Operation_Barbarossa_Brutal_Account_Of_German_Invasion_Of_Russia_|_Part_Two
    Eastern Front animated: 1941
    9:51

    Eastern Front animated: 1941

    • Order:
    • Duration: 9:51
    • Uploaded Date: 20 May 2018
    • views: 9078467
    In the summer of 1941 German army was the strongest in Europe and was preparing to use its superiority to defeat the Soviet Union in a three-month lightning campaign. The Soviets, on the other hand, were preparing for a long war and had built up a strong war economy, but the modernization and expansion of the Red Army was still underway and its methods and organization were not yet fully tested in battle. Can the Wehrmacht damage the Soviet Union enough to prevent a recovery or can the Soviets hold until their long-term advantages start to have a strong impact on the war? Patreon: https://www.patreon.com/Eastory Symbols: https://drive.google.com/open?id=1FVGSaFFwWyw1nrjVCOYJ2MUZ_kb8ZOBX Main sources for orders of battle and frontline positions: http://www.wwii-photos-maps.com/ http://www.rkka.ru/imaps.htm http://bdsa.ru/ 80% of the divisional OOB and 95% of corps OOB shown in the video may be considered correct, (in places, where it is not simplified.) Troop and POW numbers: http://www.operationbarbarossa.net/ https://en.wikipedia.org/wiki/German_encirclements_of_Soviet_forces_during_Operation_Barbarossa Map: Terrain Europe: Elevation map of Europe - European Environment Agency. Outside Europe: https://maps-for-free.com/ Infrastructure: USSR: Europa 1: 2,500,000 Deutsche Heereskarte: Europaische Russland. 1943. Other: British 1944 1:2000,000 maps of Europe. Nerves Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 3.0 Licensehttp://creativecommons.org/licenses/by/3.0/
    https://wn.com/Eastern_Front_Animated_1941
    EASTERN FRONT IN A NUTSHELL (reupload)
    0:34

    EASTERN FRONT IN A NUTSHELL (reupload)

    • Order:
    • Duration: 0:34
    • Uploaded Date: 30 Apr 2021
    • views: 15614452
    Source: https://youtu.be/EJcByHRQl24 https://youtu.be/hxSXv9xZZcM https://youtu.be/fKum4JmG-ew ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ► Business inquiries: reichmontage@gmail.com ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ ▬ # # #
    https://wn.com/Eastern_Front_In_A_Nutshell_(Reupload)
    How bad was the Eastern Front in World War 2?
    8:03

    How bad was the Eastern Front in World War 2?

    • Order:
    • Duration: 8:03
    • Uploaded Date: 06 Nov 2021
    • views: 241019
    During World War 2, Germany would fight on a number of fronts. One in particular would become perhaps the bloodiest campaign of the war. In this video we look at the Eastern Front during World War 2 and ask the question, how bad was it? At Premier History we want to take you on a journey through time and grow your knowledge to see what it was actually like to be in some of the pivotal points in World History. Make sure to leave a Like 👍 and a Comment 📜 down below or share this video with your friends. - - - 🔴 Subscribe to the channel: http://bit.ly/3pLtnXf - - - #PremierHistory #WW2 #EasternFront - - - Follow Premier History on socials: 🐦 Twitter: https://twitter.com/HistoryPremier 📸Instagram: https://www.instagram.com/premierhistory/ Cylinder Seven by Chris Zabriskie is licensed under a Creative Commons Attribution 4.0 licence. https://creativecommons.org/licenses/by/4.0/ Source: http://chriszabriskie.com/cylinders/ Artist: http://chriszabriskie.com/
    https://wn.com/How_Bad_Was_The_Eastern_Front_In_World_War_2
    Andrey Vlasov: From Soviet General to German Collaborator
    10:17

    Andrey Vlasov: From Soviet General to German Collaborator

    • Order:
    • Duration: 10:17
    • Uploaded Date: 22 Jul 2023
    • views: 567
    🌐 Explore the riveting and controversial tale of Andrey Andreyevich Vlasov in this deep dive into one of World War II's most enigmatic figures. Born on September 14, 1901, Vlasov started as a Soviet Red Army general, but his story took a dramatic turn as he became a collaborator with Germany during the tumultuous Axis-Soviet campaigns. 🔍 In this video, we uncover Vlasov's role in the Battle of Moscow (1941–1942) and his capture while attempting to lift the siege of Leningrad. His defection to Germany marked a pivotal moment, leading to the formation of the Russian Liberation Army (ROA). Initially utilized by the Germans to manipulate Red Army troops, the ROA took a tangible form in 1944, thanks to Heinrich Himmler's efforts to address Germany's manpower shortage. 🛡️ As the war neared its end, Vlasov made yet another twist by switching sides and ordering the ROA to support the May 1945 Prague uprising against the Germans. However, his attempt to escape to the Western Front resulted in capture by Soviet forces, with the assistance of the United States. 🔒 The story takes a dark turn as Vlasov faced torture, a treason trial, and ultimately, execution by hanging. Join us in examining the complex and morally ambiguous journey of Andrey Vlasov, a figure whose choices during a turbulent period in history continue to spark debate and intrigue. 👍 If you find historical narratives fascinating, don't forget to like, share, and subscribe for more content on intriguing personalities and events from the past! #AndreyVlasov #WWIIHistory #RussianLiberationArmy
    https://wn.com/Andrey_Vlasov_From_Soviet_General_To_German_Collaborator
    WW2: The Battles Won & Lost That Decided The Outcome Of The Greatest Conflict In History | Timeline
    49:09

    WW2: The Battles Won & Lost That Decided The Outcome Of The Greatest Conflict In History | Timeline

    • Order:
    • Duration: 49:09
    • Uploaded Date: 03 May 2020
    • views: 2842662
    As the war in the Pacific escalates, the Japanese have already established a foothold in mainland China, Singapore and Indonesia. However, the Australians prepare an offensive to drive the Japanese back... It's like Netflix for history... Sign up to History Hit, the world's best history documentary service, at a huge discount using the code 'TIMELINE' ---ᐳ http://bit.ly/3a7ambu You can find more from us on: https://www.facebook.com/timelineWH https://www.instagram.com/timelineWH This channel is part of the History Hit Network. Any queries, please contact owned-enquiries@littledotstudios.com #ConvoyPQ17 #KokodaTrackCampaign #PacificWar
    https://wn.com/WW2_The_Battles_Won_Lost_That_Decided_The_Outcome_Of_The_Greatest_Conflict_In_History_|_Timeline
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Operation Barbarossa: German Invasion of Russia | Part One
      1:27:34
      Operation Barbarossa: German Invasion of Russia | Part Oneremove from playlist
    • The Eastern Front | Full Action War Movie | WWll | World War 2
      1:42:48
      The Eastern Front | Full Action War Movie | WWll | World War 2remove from playlist
    • The Eastern Front | Documentary Trailer
      2:20
      The Eastern Front | Documentary Trailerremove from playlist
    • THE EASTERN FRONT Documentary PART 1 – BARBAROSSA THE INVASION
      26:53
      THE EASTERN FRONT Documentary PART 1 – BARBAROSSA THE INVASIONremove from playlist
    • Operation Barbarossa: Brutal Account of German Invasion of Russia | Part Two
      58:36
      Operation Barbarossa: Brutal Account of German Invasion of Russia | Part Tworemove from playlist
    • Eastern Front animated: 1941
      9:51
      Eastern Front animated: 1941remove from playlist
    • EASTERN FRONT IN A NUTSHELL (reupload)
      0:34
      EASTERN FRONT IN A NUTSHELL (reupload)remove from playlist
    • How bad was the Eastern Front in World War 2?
      8:03
      How bad was the Eastern Front in World War 2?remove from playlist
    • Andrey Vlasov: From Soviet General to German Collaborator
      10:17
      Andrey Vlasov: From Soviet General to German Collaboratorremove from playlist
    • WW2: The Battles Won & Lost That Decided The Outcome Of The Greatest Conflict In History | Timeline
      49:09
      WW2: The Battles Won & Lost That Decided The Outcome Of The Greatest Conflict In History | Timelineremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Operation Barbarossa: German Invasion of Russia | Part One

    'Brutal Reality of Eastern Front Exposed by Lost German Diaries' On 22 June 1941, Hitler's Germany launched ‘Operation Barbarossa’, the attack of the Soviet Union, the largest invasion in military history. In June 2019, twelve dusty notebooks and a wealth of loose paperwork were discovered in Germany; the diaries of Oberleutnant Wilhelm Sander, a young officer in the 11th Panzer-Regiment who took part in the enormous campaign. On every single day Sander, in a brutally honest manner, elaborately recorded his experiences, impressions and the events he witnessed. Now transcribed and translated for the first time, they offer a brutally honest, intimate and fascinating view into the murderous and unforgiving nature of war on the Eastern Front from the summer of 1941 to the eventual German retreat in the terrible winter of 1941/1942, while offering a unique glimpse into the world of thought of a highly politicised officer of the German Wehrmacht and member of the NSDAP. Follow the path of Leutnant Friedrich Sander, a Panzer officer in the German Wehrmacht during Operation Barbarossa, the attack on the Soviet Union. In the first part of a two-part film, we follow Leutnant Sander on the strenuous, and costly race towards Leningrad and learn about the murderous and terrifying goals of the German campaign in the east. Discover the past on History Hit with ad-free exclusive podcasts and documentaries released weekly presented by world renowned historians Dan Snow, Suzannah Lipscomb, Lucy Worsley, Mary Beard and more. Watch, listen and read history wherever you are, whenever you want it. Available on all devices: Apple TV, Amazon Firestick, Android TV, Samsung Smart TV, Roku, Xbox, Chromecast, Xfinity, and iOs & Android. Sign up to History Hit now and get 14 days free: http://access.historyhit.com/checkout We're offering a special discount to History Hit for our subscribers, get 50% off your first 3 months with code YOUTUBE: http://www.access.historyhit.com/ #historyhit #barbarossa #worldwartwo
    1:27:34
    Operation Barbarossa: German Invasion of Russia | Part One
    'Brutal Reality of Eastern Front Exposed by Lost German Diaries' On 22 June 1941, Hitler'...
    published: 21 Apr 2023
    Play in Full Screen
    1:42:48
    The Eastern Front | Full Action War Movie | WWll | World War 2
    The Eastern Front - A dwindling group of soldiers battle to return to their lines, whilst ...
    published: 27 Aug 2021
    Play in Full Screen
    2:20
    The Eastern Front | Documentary Trailer
    Watch The Eastern Front, a brand new documentary from John Sweeney & Byline TV covering wa...
    published: 16 May 2023
    Play in Full Screen
    26:53
    THE EASTERN FRONT Documentary PART 1 – BARBAROSSA THE INVASION
    A study of the German invasion of Russia during WWII, utilising newsreel film, animated ma...
    published: 06 Jan 2019
    Play in Full Screen
    58:36
    Operation Barbarossa: Brutal Account of German Invasion of Russia | Part Two
    On 22 June 1941, Hitler's Germany launched ‘Operation Barbarossa’, the attack of the Sovie...
    published: 24 May 2023
    Play in Full Screen
    9:51
    Eastern Front animated: 1941
    In the summer of 1941 German army was the strongest in Europe and was preparing to use its...
    published: 20 May 2018
    Play in Full Screen
    0:34
    EASTERN FRONT IN A NUTSHELL (reupload)
    Source: https://youtu.be/EJcByHRQl24 https://youtu.be/hxSXv9xZZcM https://youtu.be/fKum4Jm...
    published: 30 Apr 2021
    Play in Full Screen
    8:03
    How bad was the Eastern Front in World War 2?
    During World War 2, Germany would fight on a number of fronts. One in particular would bec...
    published: 06 Nov 2021
    Play in Full Screen
    10:17
    Andrey Vlasov: From Soviet General to German Collaborator
    🌐 Explore the riveting and controversial tale of Andrey Andreyevich Vlasov in this deep di...
    published: 22 Jul 2023
    Play in Full Screen
    49:09
    WW2: The Battles Won & Lost That Decided The Outcome Of The Greatest Conflict In History | Timeline
    As the war in the Pacific escalates, the Japanese have already established a foothold in m...
    published: 03 May 2020
    Play in Full Screen

    Eastern Front

    Eastern Front may refer to:

  • Eastern Front (World War I)
  • Eastern Front (World War II)
  • Eastern Front (Turkey), of the Turkish War of Independence
  • Turkish–Armenian War, often referred to by itself as the Eastern Front
  • Eastern Front (Sudan)
  • Eastern Front (video game)
  • 1635: The Eastern Front (novel)
  • See also

  • Frente Leste, the theater of anti-guerrilla operations for the Portuguese Armed Forces in the East of Angola, during the Portuguese Colonial War (1961-1974)
  • '); } 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)); } }); }); }); // -->
    ×