- published: 24 Apr 2020
- views: 541428
'+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; })); }); -->
Yerevan (/ˌjɛrəˈvɑːn/; (Eastern Armenian: Երևան; Western Armenian: Երեւան) [jɛɾɛˈvɑn], listen ), is the capital and largest city of Armenia, and one of the world's oldest continuously inhabited cities. Situated along the Hrazdan River, Yerevan is the administrative, cultural, and industrial center of the country. It has been the capital since 1918, the thirteenth in the history of Armenia, and the seventh located in or around the Ararat plain.
The history of Yerevan dates back to the 8th century BC, with the founding of the fortress of Erebuni in 782 BC by king Argishti I at the western extreme of the Ararat plain. Erebuni was "designed as a great administrative and religious centre, a fully royal capital." During the centuries long Iranian rule over Eastern Armenia that lasted from the early 16th century up to 1828, it was the center of Iran's Erivan khanate administrative division from 1736. In 1828, it became part of Imperial Russia alongside the rest of Eastern Armenia which conquered it from Iran through the Russo-Persian War (1826-1828). After World War I, Yerevan became the capital of the First Republic of Armenia as thousands of survivors of the Armenian Genocide in the Ottoman Empire settled in the area. The city expanded rapidly during the 20th century as Armenia became part of the Soviet Union. In a few decades, Yerevan was transformed from a provincial town within the Russian Empire, to Armenia's principal cultural, artistic, and industrial center, as well as becoming the seat of national government.
Coordinates: 40°N 45°E / 40°N 45°E / 40; 45
Armenia (i/ɑːrˈmiːniə/, /-ˈmiːnjə/;Armenian: Հայաստան, tr. Hayastan, IPA: [hɑjɑsˈtɑn]), officially the Republic of Armenia (Armenian: Հայաստանի Հանրապետություն, tr. Hayastani Hanrapetut’yun), is a sovereign state in the South Caucasus region of Eurasia. Located in Western Asia, it is bordered by Turkey to the west, Georgia to the north, the de facto independent Nagorno-Karabakh Republic and Azerbaijan to the east, and Iran and the Azerbaijani exclave of Nakhchivan to the south.
Armenia is a unitary, multi-party, democratic nation-state with an ancient cultural heritage. The Kingdom of Van was established in 860 BC and by the 6th century BC it was replaced by the Satrapy of Armenia. In the 1st century BC the Kingdom of Armenia reached its height under Tigranes the Great. Armenia became the first state in the world to adopt Christianity as its official religion. In between the late 3rd century to early years of the 4th century, the state became "the first Christian nation." The official date of state adoption of Christianity was 301 AD. The ancient Armenian kingdom was split between the Byzantine and Sasanid empires around the early 5th century. Under the Bagratuni dynasty, the Armenian Kingdom was restored in the 9th century. Declining due to the wars against the Byzantines, the kingdom fell in 1045 and Armenia was soon after invaded by the Seljuk Turks. An Armenian principality and later a kingdom Cilician Armenia was located on the coast of the Mediterranean Sea between the 11th and 14th centuries.
Armenia was a merchant vessel launched at Calcutta in 1796. Captain Thomas Meek (or Meik), was her only captain. In 1799 the East India Company (EIC) took her up. She made one trip to Britain for the EIC. On that trip she left St Helena on 6 July in the company of the East Indiamen Tellicherry, Triton, and Barwell, and under escort by the 18-gun Cornwallis.Armenia arrived in Britain on 27 September.
The French privateer Clarisse captured Armenia on 5 July 1800 and sent her into Mauritius.Clarisse was armed with 16 guns and had a crew of 180 men under the command of Captain La Meme. Armenia encountered Clarisse at 7°30′S 79°30′E / 7.500°S 79.500°E / -7.500; 79.500, and after a five-hour chase she caught up with Armenia and combat ensued. Captain Meik resisted, but after about 40 minutes of exchanging fire he stuck. Armenia had lost her Third Officer killed and six men wounded, one of whom died later; Clarisse appeared to have had three men killed. Another report has Clarisse's casualties as seven killed and 20 wounded.
The name Armenia enters English via Latin, from Ancient Greek Ἀρμενία. The Armenian endonym for the Armenian people and country is hayer and hayk’, respectively. The exact etymology of the name is unknown, and there are various speculative attempts to connect it to older toponyms or ethnonyms.
The earliest attestations of the exonym Armenia date around the 6th century BC. In his trilingual Behistun Inscription, Darius I the Great of Persia refers to Urashtu (in Babylonian) as Armina (in Old Persian) and Harminuya (in Elamite). In Greek, Αρμένιοι "Armenians" is attested from about the same time, perhaps the earliest reference being a fragment attributed to Hecataeus of Miletus (476 BC).Herodotus, in c. 440 BC, said "the Armenians were equipped like Phrygians, being Phrygian colonists" (7.73) (Ἀρμένιοι δὲ κατά περ Φρύγες ἐσεσάχατο, ἐόντες Φρυγῶν ἄποικοι.). Xenophon describes many aspects of Armenian village life and hospitality. He relates that the people spoke a language that to his ear sounded like the language of the Persians.
Yerevan is the capital of the Republic of Armenia.
Yerevan may also refer to:
Places
Brand names / Titles
Culture
Media
Sports
RADIO STATION | GENRE | LOCATION |
---|---|---|
Yerevan Nights | Varied | Armenia |
Radio Van | Pop | Armenia |
Radio Aurora | Pop,Top 40 | Armenia |
Armenian Christian Radio | Christian Contemporary | Armenia |
Yerevan is the capital of Armenia. It's a post Soviet country that's trying hard to build its economy, attract tourism and live a prosperous life. #Yerevan
"Join us on a beautiful autumn day as we explore the heart of Yerevan! In this walking tour through downtown Yerevan on October 24, 2024, we capture the city’s vibrant atmosphere as fall begins to transform the streets with warm hues. From iconic landmarks to charming side streets, experience Yerevan's unique mix of culture, history, and modern city life. Perfect for anyone interested in Armenian culture, travel enthusiasts, or those planning a trip to Yerevan. Don’t forget to like, subscribe, and hit the bell for more immersive travel experiences from OBSERVER!" 00:00 Preview 01:30 Route Map 01:40 Teryan St. 08:25 Sayat Nova Ave. 17:40 Abovyan St. 29:15 Aram St. 31:05 Nalbandyan St. 31:30 Republic Sq. 36:50 Abovyan St. 39:40 Northern Ave. 50:40 Freedom Sq. Subscribe to this channel for ...
YEREVAN, ARMENIA is so much more than just another capital. Most people only know 1 or 2 things about Armenia, and neither are very useful in understanding what it's actually like to spend time in the city today. I enjoyed Yerevan so much that I actually ended up extending my stay. Between the incredible people, the art, the culture, and the food, there was so much for me to consistently be entertained. The country has faced a great deal of adversity over the years, most notably through the Armenian Genocide. But the best part of my visit was seeing how the people are so hospitable to foreigners, even despite everything that they've gone through in the past. It was super inspiring and made me love the city even more. Are you from Armenia? Yerevan? I can't wait to hear what you think. Le...
Welcome to Yerevan, the capital of Armenia and one of the oldest cities in the world. We spent a few days exploring Yerevan and we are excited to share the best things to do and top things to see in Yerevan, from the famous Cascade complex to the traditional market. We also share with you where you can have the best traditional Armenian dishes in Yerevan. 🌐 Explore Armenia with these great deals: ✈️ Flights: https://www.stay22.com/allez/kayak?aid=travelwithme&campaign=youtube22&campaign=vyebPhrG0UM&category=flight&address=Armenia%2CYerevan Yerevan: 🏨 Hotels & Rentals: https://www.stay22.com/allez/hotelscom?aid=travelwithme&campaign=youtube22&campaign=vyebPhrG0UM&category=accommodation&address=Armenia%2CYerevan 🚗 Car Rentals: https://www.stay22.com/allez/kayak?aid=travel...
#YerevanPlaces #PlacesInYerevan Yerevan is one of the biggest tourist attractions in Armenia having many best places in Yerevan. Yerevan, Armenia's capital, is marked by grand Soviet-era architecture. The Matenadaran library, housing thousands of ancient Greek and Armenian manuscripts, dominates its main avenue. Republic Square is the city's core, with musical water fountains and colonnaded government buildings. The 1920s History Museum of Armenia on the square's eastern side contains archaeological objects like a circa-3500-B.C. leather shoe. As Yerevan famous places has such a long history and covers a lot of ground, it means that there is a huge amount to see and do – but as best places in Yerevan is so well connected even if you only have one day in this city, because of a layover or ...
Join us on a city tour of Yerevan, the capital of Armenia! This travel guide will show you the best sights and attractions in Yerevan, from historic landmarks to delicious local cuisine. Explore Yerevan with us and immerse yourself in the rich culture of Armenia! Accomodation you saw in this video: Yerevan - Capsula Hostel: https://hostelworld.tp.st/9IOW8jzj Where should we go next? 🌍🗺️ Let’s connect! Who are we and where are we travelling? - https://thedeparturebrief.com/ Instagram - / @thedeparturebrief TikTok - / @thedeparturebrief Facebook - / @thedeparturebrief Some of the links above contain affiliate links. All this means is if you make a purchase after clicking the link, TDB gets a small commission at no additional cost to you. Essentially means you will help us cont...
Barev dzez and Welcome to this aerial drone footage of Yerevan City, Capital of Armenia in 4K UHD resolution! Yerevan Armenia 4K ULTRA HD HDR 60 FPS Collection of Drone & Aerial Footage Armenia 8K ULTRA HD 60 FPS Collection of Drone & Aerial Footage Please Subscribe our New YouTube Channel & show us your love & support. Exploropia 8K Link Below: 👇 👇 👇 https://www.youtube.com/@Exploropia8K 📌 Please Keep Supporting us guys✌️!!!! 📌 Make sure to Subscribe ▶️ with Bell 🔔 turned on & don't miss out on New Videos!!!! _____________________________ More 4K UHD HD Videos ⏬ Watch also BATUMI, GEORGIA 🇬🇪 in 4K : https://youtu.be/ETsuzGQ7tPw Watch also TBILISI, GEORGIA 🇬🇪 in 4K : https://youtu.be/f3lV2SchOX8 Watch also Moscow, Russia 🇷🇺 in 4K : https://youtu.be/1gND3LB5zGQ Watch also St. PETERS...
#Armenia #Yerevan English text below ԵՐԵՎԱՆ •••••••••••• Երաժշտությունը՝ ԱՐԱ ԳԵՎՈՐԳՅԱՆԻ Ռեժիսոր` ՎԱՀԱՆ ՍԵԹՈՅԱՆ Գլխ. օպերատոր` ԱՐԹՈՒՐ ՂԱՐԱՅԱՆ Ձայնագրվել է •ԱՐԳՈ• ձայնագրման ստուդիայում Միքս և մաստերինգ` ՀՄԱՅԱԿ ՌՈՍՏՈՄՅԱՆ (Ardini Studio) Օպերատորներ ԳԵՎՈՐԳ ՂԱՐԱՅԱՆ ՄԿՐՏԻՉ ԽԱՉԱՏՐՅԱՆ ԱՆԴՐԱՆԻԿ ԳԵՎՈՐԳՅԱՆ Օդային նկարահանումներ ՎԱՀԵ ԱՅՎԱԶՅԱՆ Stage Style ԲԱԳՐԱՏ ԴԻՎԱՆՅԱՆ Մոնտաժ և հետարտադրություն •NEW ARENA• Production Քանոնահարներ՝ ՀԱՍՄԻԿ ԼԵՅԼՈՅԱՆ ԾՈՎԻՆԱՐ ՀՈՎՀԱՆՆԻՍՅԱՆ ԱՐՄԻՆԵ ԱՍԱՏՐՅԱՆ ՄԱՐԻՆԵ ԱՍԱՏՐՅԱՆ ԳԱՅԱՆԵ ԱԲԱՋՅԱՆ Ազգային նվագարանների պետական նվագախմբի քանոնահարներ` Աննա Մարիկյան, Քրիստինե Մուշեղյան, Նարինե Զաքարյան, Արմինե Հարությունյան, Գոհար Բալյան, Անահիտ Մխիթարյան։ Ուանողներ բուհերից, քոլեջներից և դպրոցներից․ ՀՊՄՀ Կ/Ֆ-ի երաժշտության ամբիոն, Կոմիտասի անվա...
Republic Square in Yerevan, Armenia! Discover its stunning architecture, vibrant atmosphere, and the famous singing fountains. #Yerevan #RepublicSquare #TravelVlog #Armenia #ExploreWithMe
Join me on a vibrant walking tour through downtown Yerevan on a sunny September afternoon! ☀️ Starting at 5 PM, we’ll explore the bustling streets of Armenia’s capital, taking in the lively atmosphere, historic landmarks, and local culture. Watch as Yerevan comes alive with people enjoying the warmth and energy of the city. From the modern cafes to the charming old architecture, there’s something for everyone to see. Experience the beauty of the golden hour as the sun sets over the cityscape. Whether you’re a local or dreaming of visiting Yerevan, this tour will give you a real feel of life downtown. Don’t miss out on this beautiful journey through one of the most iconic cities in the Caucasus! 🌆 00:00 Preview 01:53 Route Maps 02:03 Mashtots Ave. 09:00 France Sq. 09:45 Baghramyan Ave. 12:...
Lets take a look at Armenia in 2019! This up and coming country has great potential in tourism. #Armenia
From the incredible mountains of the Caucasus to ancient monasteries that look like they’re straight out of a fairy tale, Armenia has so much to offer. Whether it’s the tantalizing flavors of Armenian cuisine or the heartwarming hospitality of its people, get ready to uncover some truly shocking facts about this remarkable country. Subscribe to our channel if you like this video #armenia #europe I put a lot of work into this video with my team – researching, writing, recording, and editing. Please ask before using it, and I really hope you enjoy it!
Dig into the history of the Armenian Genocide, during which the Ottoman Empire killed over 1 million Armenians during WWI. -- When an Armenian resistance movement began to form in the 19th century, Sultan Abdul Hamid II took decisive action. He led the Hamidian Massacres— a relentless campaign of violence that killed over 150,000 Armenians. These massacres were the culmination of centuries of oppression, yet they were only the beginning of an even greater tragedy. Ümit Kurt uncovers the history of the Armenian Genocide. Lesson by Ümit Kurt, directed by Héloïse Dorsan-Rachet. Support Our Non-Profit Mission ---------------------------------------------- Support us on Patreon: http://bit.ly/TEDEdPatreon Check out our merch: http://bit.ly/TEDEDShop -----------------------------------------...
ARMENIA IN 2024: The Weirdest Country In Europe.. | 45 Bizarre Facts 🔔 Subscribe now with all notifications on for more in-depth European travel guides, hidden gems in Europe, and insightful European culture explorations! Hello and welcome back to another exciting video on 'Europe In Detail'! Today, we're embarking on an extraordinary journey to explore Armenia, a land rich in history, culture, and natural beauty. Join us as we uncover forty-five unbelievable facts about this captivating country. From ancient traditions to modern marvels, Armenia's story is as intriguing as it is diverse. #armenia #yerevan #armenian 📺 Watch the entire video for more information! _________________________________________________________________ About Europe In Detail 🎥 Videos about detailed European tr...
For 10% off your first Squarespace website or domain, visit https://www.squarespace.com/epimetheus and use my Coupon Code: EPIMETHEUS This video is sponsored by Squarespace. The history of Armenia explained (Documentary) Sources Historical Dictionary of Armenia by Rouben Paul Adalian Larousse Encyclopedia of Ancient and Medieval History A History of Armenia by Vahan M. Kurkjian Armenia: Art, Religion, and Trade in the Middle Ages The Kingdom of Armenia: A History by M. Chahin Support new videos from Epimetheus on Patreon! :D https://www.patreon.com/Epimetheus1776
I can't get over how beautiful Armenia is 💛 We need to start talking about this country right now, because with its epic nature and friendly people, I can see it becoming the next BIG travel destination 😍 My roadtrip across Armenia took me from the capital Yerevan (which is super cool and happening, by the way!) to the mountains in the West, across all the Monasteries (Tatev, Sevan, Khor Virap...), to Lake Sevan and Garni. It. Was. Epic. » FOLLOW ME ON INSTA FOR DAILY TRAVEL: http://www.instagram.com/evazubeck
Armenia should be your next bucket list destination; you may not know this yet, but after seeing its ancient temples, stunning landscapes, and vibrant culture, you'll be convinced. This Armenia travel guide will show you why this country deserves a spot on your travel radar. If you are coming to Armenia and need a car you can use our link to get a discount on your next rental: https://www.discovercars.com/?a_aid=DreamTeam Chapters: 0:00 Armenia 0:30 Yeravan 6:39 Garni Temple 8:00 Bread Maker 9:54 Symphony of Stones 10:44 Geghard Monastery 12:19 Authentic Armenia 13:47 World's First Cathedral 14:41 Ancient Ruins 15:42 Dungeon 17:02 World's First Winery 19:06 Switzerland of Armenia #Armenia #ArmeniaTravel #visitarmenia
SUBSCRIBE! http://bit.ly/PlanetDoc Full Documentaries every Tuesday, Thursday and Saturday! FULL DOCUMENTARIES | http://bit.ly/Full-Docs Full Documentary "Armenia, the Land of Noah" A travel across Armenia, one of the most fascinating places in Europe. The marvelous adaptation of the Armenian people, their exemplary spiritual strength and the establishment of enduring culture have made possible the consolidation of a lineage that for millennia, has kept alive the legacy of one of the world's oldest civilizations. SUBSCRIBE | http://bit.ly/PlanetDoc FULL DOCUMENTARIES | http://bit.ly/Full-Docs FACEBOOK | http://bit.ly/FBPDoc TWITTER | http://bit.ly/TwPDoc TUMBLR | http://bit.ly/TbPlDoc
Yerevan is the capital of Armenia. It's a post Soviet country that's trying hard to build its economy, attract tourism and live a prosperous life. #Yerevan
Yerevan (/ˌjɛrəˈvɑːn/; (Eastern Armenian: Երևան; Western Armenian: Երեւան) [jɛɾɛˈvɑn], listen ), is the capital and largest city of Armenia, and one of the world's oldest continuously inhabited cities. Situated along the Hrazdan River, Yerevan is the administrative, cultural, and industrial center of the country. It has been the capital since 1918, the thirteenth in the history of Armenia, and the seventh located in or around the Ararat plain.
The history of Yerevan dates back to the 8th century BC, with the founding of the fortress of Erebuni in 782 BC by king Argishti I at the western extreme of the Ararat plain. Erebuni was "designed as a great administrative and religious centre, a fully royal capital." During the centuries long Iranian rule over Eastern Armenia that lasted from the early 16th century up to 1828, it was the center of Iran's Erivan khanate administrative division from 1736. In 1828, it became part of Imperial Russia alongside the rest of Eastern Armenia which conquered it from Iran through the Russo-Persian War (1826-1828). After World War I, Yerevan became the capital of the First Republic of Armenia as thousands of survivors of the Armenian Genocide in the Ottoman Empire settled in the area. The city expanded rapidly during the 20th century as Armenia became part of the Soviet Union. In a few decades, Yerevan was transformed from a provincial town within the Russian Empire, to Armenia's principal cultural, artistic, and industrial center, as well as becoming the seat of national government.