- published: 24 Apr 2018
- views: 958811
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
The Caspian Sea is the largest enclosed inland body of water on Earth by area, variously classed as the world's largest lake or a full-fledged sea. It is in an endorheic basin (it has no outflows) located between Europe and Asia. It is bounded to the northeast by Kazakhstan, to the northwest by Russia, to the west by Azerbaijan, to the south by Iran, and to the southeast by Turkmenistan. The Caspian Sea lies to the east of the Caucasus Mountains and to the west of the vast steppe of Central Asia. Its northern part, the Caspian Depression, is one of the lowest points on Earth. The ancient inhabitants of its coast perceived the Caspian Sea as an ocean, probably because of its saltiness and large size.
The sea has a surface area of 371,000 km2 (143,200 sq mi) (not including its detached lagoon of Garabogazköl Aylagy) and a volume of 78,200 km3 (18,800 cu mi). It has a salinity of approximately 1.2% (12 g/l), about a third of the salinity of most seawater.
The word Caspian is derived from the name of the Caspi, an ancient people who lived to the south-west of the sea in Transcaucasia.Strabo wrote that "to the country of the Albanians belongs also the territory called Caspiane, which was named after the Caspian tribe, as was also the sea; but the tribe has now disappeared". Moreover, the Caspian Gates, which is the name of a region in Iran's Tehran province, possibly indicates that they migrated to the south of the sea. The Iranian city of Qazvin shares the root of its name with that of the sea. In fact, the traditional Arabic name for the sea itself is Bahr al-Qazwin (Sea of Qazvin).
Mirza (/ˈmɜːrzə/ or /mɪəˈzɑː/) is a historical title of Persian origin, denoting the rank of a high nobleman or Prince. It is usually defined in English as a royal or imperial Prince of the Blood.
Today, Mirza is used as a name to identify patriarchal lineage to royal aristocracies of Eastern Europe, Central Asia, and the Indian Subcontinent. Historically, it was used as a title by and signified patriarchal lineage to the imperial families of the Turkish Empire, Persia, Circassia, Shirvan, Mughals (aka Moguls) and Muslim Rajputs. It was also a title bestowed upon members of the highest aristocracies in Tatar states, such as the Khanates of Kazan and Astrakhan.
Under Catherine the Great, empress of Russia, the Mirzas gained equal rights with the Russian nobility due to their extreme wealth. In return, the Mirzas financed her Russo-Turkish war against the Ottoman Empire. Abdul Mirza was given the title Prince Yusupov, and his descendant Prince Felix Yusupov married a niece of Tsar Nicholas II of Russia.
The giant mouse lemurs (Mirza) are a genus of strepsirrhine primates. Two species have been formally described; the northern giant mouse lemur (Mirza zaza) and Coquerel's giant mouse lemur (Mirza coquereli). Like all other lemurs, they are native to Madagascar, where they are found in the western dry deciduous forests and further to the north in the Sambirano valley and Sahamalaza Peninsula. First described in 1867 as a single species, they were grouped with mouse lemurs and dwarf lemurs. In 1870, British zoologist John Edward Gray assigned them to their own genus, Mirza. The classification was not widely accepted until the 1990s, which followed the revival of the genus by American paleoanthropologist Ian Tattersall in 1982. In 2005, the northern population was declared a new species, and in 2010, the World Wide Fund for Nature announced that a southwestern population might also be a new species.
Giant mouse lemurs are about three times larger than mouse lemurs, weighing approximately 300 g (11 oz), and have a long, bushy tail. They are most closely related to mouse lemurs within Cheirogaleidae, a family of small, nocturnal lemurs. Giant mouse lemurs sleep in nests during the day and forage alone at night for fruit, tree gum, insects, and small vertebrates. Unlike many other cheirogaleids, they do not enter a state of torpor during the dry season. The northern species is generally more social than the southern species, particularly when nesting, though males and females may form pair bonds. The northern species also has the largest testicle size relative to its body size among all primates and is atypical among lemurs for breeding year-round instead of seasonally. Home ranges often overlap, with related females living closely together while males disperse. Giant mouse lemurs are vocal, although they also scent mark using saliva, urine, and secretions from the anogenital scent gland.
Mirza is a Persian royal title.
Mirza may refer to:
There's some confusion around the Caspian Sea, namely, is it actually a sea? Don't we usually call fully enclosed bodies of water, lakes? Hopefully this clears things up a little. Music provided by StoneOcean: https://soundcloud.com/stone_ocean
Watch a short video with interesting facts and amazing footage about the Caspian Sea. Don't forget to subscribe to the channel. Thank you. ------------------------------------------ The Caspian Sea is the world's largest inland body of water, often described as the world's largest lake. It lies between Europe and Asia; east of the Caucasus, west of the broad steppe of Central Asia. It has a surface area of 372,000 km2 (144,000 sq mi) and covers an area larger than Germany. It has a salinity of approximately 1.2%, about a third of the salinity of average seawater. It is bounded by Kazakhstan to the northeast, Russia to the northwest, Azerbaijan to the southwest, Iran to the south, and Turkmenistan to the southeast. The sea stretches 1,200 km (750 mi) from north to south, with an aver...
The Caspian sea is an extremely large body of water in eastern Asia. But despite its name, it isn’t actually a sea at all. Instead, the Caspian Sea is classified as a lake because it’s completely surrounded by land, and doesn't have any natural water connections to the ocean. But to understand why the Caspian Sea is even named this way, we have to go back a couple thousand years. For centuries, the people surrounding this area couldn’t grasp how large this body of water was, and thought that it was either an ocean, or some sort of sea similar to the Mediterranean Because of this, a Greek Philosopher showed up and gave it the name, the “Caspian Sea”, which was named after the Caspi people, who lived in the Caucasus mountain region. Obviously, today, we live in a world where satellite im...
Caspian Sea Facts! Caspian sea is the largest inland water body in the world. It is also one of the largest salt lake in the world. In todays video, we will know the reasons why it is one of the disputed sea in the world. Time Stamps: 0:00- Intro 0:35- History 0:54- Marine species 1:15- Cavier farming 1:45- Caspian sea new facts 1:53- Caspian sea summit 2:00- Difference between lake & sea 2:28- Caspian sea dispute reasons Audio voiceover: IBM Watson TTS Thanks for watching Subscribe for more interesting facts: https://www.youtube.com/channel/UCPGjshfdtHkJ12Ghmvs7xcw watch our most recent videos: https://www.youtube.com/channel/UCPGjshfdtHkJ12Ghmvs7xcw/videos --------------------------------------------------------------------------------------------------------------------------- More V...
In the 1960s, an American satellite flying over the USSR captured something that had left many within the US intelligence community scratching their heads. A gigantic machine that didn’t look like anything they’d seen before: not a plane, not a ship but something else. Confused by the type and purpose the Americans dubbed their discovery the Caspian Monster or the Caspian Sea monster which is how it's generally known today. If you'd like to support Real Reporter: 💵Buy me a coffee - https://www.buymeacoffee.com/RealReporter 💵Patreon - https://www.patreon.com/RealReporter 💵Boosty - https://boosty.to/realreporter/donate 📺 Follow me on Odysee - https://odysee.com/@RealReporter
The world's largest lake is drying up dramatically. While most of the world is experiencing sea level rise in coastal areas, the opposite is true for the Caspian Sea. https://cna.asia/3UoPRPv Subscribe to our channel here: https://cna.asia/youtubesub Subscribe to our news service for must-read stories: Telegram - https://cna.asia/telegram WhatsApp - https://cna.asia/whatsapp Follow us: CNA: https://cna.asia CNA Lifestyle: http://www.cnalifestyle.com Facebook: https://www.facebook.com/channelnewsasia Instagram: https://www.instagram.com/channelnewsasia Twitter: https://www.twitter.com/channelnewsasia TikTok: https://www.tiktok.com/@channelnewsasia
The Caspian Sea is the largest lake on earth, and it is so big that it is often called a sea. It's located between Europe and Asia, like a big water bridge connecting the two continents. People have been living around the Caspian Sea for thousands of years, and it is home to lots of different plants and animals, including some species that can only be found there. People also use the Caspian Sea for fishing and shipping, making it a busy and bustling place. #CaspianSea #LargestLake #Travel
Discover the stunning beauty of Azerbaijan! 🇦🇿🌿 From the Caspian Sea coastline to breathtaking mountain landscapes, Azerbaijan is a land of rich history and natural wonders. Explore the magic of Gobustan National Park, the Flame Towers, Khinalug, Lake Goygol, Sheki, and more! 🏔️🏞️ Which of these beautiful places is your favorite? Let us know in the comments! 💬👇 🔔 Like, subscribe, and explore the wonders of our world with us! #Azerbaijan #MostBeautifulPlaces #WildEarthWonders #AzerbaijanNature #TravelAzerbaijan #HiddenGems #ScenicViews #NatureLover #ExploreTheWorld #BreathtakingLandscapes #PeacefulNature #SerenePlaces #Gobustan #FlameTowers #LakeGoygol
Visit r2awatches.com to find watches inspired by this and other great technological achievements. These craft were originally developed by the Soviet Union as very high-speed military transports, and were based mostly on the shores of the Caspian Sea and Black Sea. The largest had max take-off weight over 544 tonnes. About 120 ekranoplans (A-90 Orlyonok class) were initially planned to enter military service in the Soviet Navy. After the collapse of the Soviet Union smaller ekranoplans for non-military use have been under development. The CHDB had already developed the eight-seat Volga-2 in 1985, and Technologies and Transport developed a smaller version by the name of Amphistar.
Experience the heartwarming moments as Mirza and Tajma celebrate the birth of their beautiful new member in this documentary, capturing the joy of a nomadic family's life in the hospital. Join Mirza and Tajma as they welcome their newborn into the world, showcasing the love, happiness, and hope that fill the hospital room. Witness the emotions, traditions, and unity of the nomadic family as they embrace the arrival of the precious new addition, highlighting the resilience and joy that define their way of life. Explore the bonds of family, the beauty of new beginnings, and the sense of community that surrounds Mirza and Tajma during this special time, offering a glimpse into the warmth and love that permeate their nomadic existence. #MirzaAndTajmas #NewbornsArrival #BabyBirth #NomadicFami...
Mirza (মির্জা) Official Trailer | Ankush Hazra | Oindrila Sen | Kaushik Ganguly | Sumeet - Saahil | Upcoming Bengali Action Movie | Ankush Hazra Motion Pictures | EID 2024 Experience the thrilling showdown in 'Mirza' as the enigmatic Joker (Mirza) enters the card game, daring to challenge the reigning Ace (Sultan). Who will emerge victorious in this epic clash of power? #Mirza Releasing this EID 11th April 2024 in theatres near you. Film Credits : Cast : Ankush Hazra, Oindrila Sen, Kaushik Ganguly, Rishi Kaushik, Priya Mondal, Shoaib Kabeer, Shantilal Mukherjee, Sankar Debnath, Rajat Ganguly, Krishnendu Chakraborty, Sumit Ganguly, Jammy Banerjee, Kunal Bhandari, Moulik Ghosh, Sankhadeep Banerjee, Beas Dhar, Mina Ghosh, Ratan Sarkhel, Ayush Majumder, Tamaghno Paul, Tarit Byabarta, R...
Red Leaf Music & Goldy Kehal Presents Official Video of "Mirza" New Punjabi Songs 2024, Latest Punjabi Song 2024& Punjabi Songs 2024. Sung by Pardeep Sran , Sargi Maan . Lyrics are penned by Gurjas sidhu . Music is given by Cheetah . Video Directed by Roy Rajput #Pardeepsran #Mirza #sargimaan #PunjabiSong #NewPunjabiSong2024 #PunjabiSongs #NewPunjabiSongs2024 #NewPunjabiSong #LatestPunjabiSongs2024 #PunjabiSongs2024 Song : Mirza Singer : Pardeep Sran , Sargi Maan Music : Cheetah Featuring : Pooja Singh Rajput , Ansh KhanneAlla Lyrics : Gurjas Sidhu Mix Master : MixByDense Costumes : Rajat manchanda Makeup : Sudhir Kumar Editor Colourist : Yatin Arora Dop : Jass Sudan Still & Making : Malkit Hair : Sahil deol Director : Roy Rajput Assistant Director : Gaurav bindal Produced ...
Credits: Directed By: Sumeet Goradia, Saahil Goradia Cast: Ankush Hazra, Oindrila Sen, Shoiab Kabeer Singer : Amit Mishra, Aneek Dhar Music Director : Aneek Dhar Produced By: @ahmotionpictures DOP: Animesh Ghorui Choreographer: Rahul Veer Kumar Ghosh Assistant Choreographer: Saikat Dutta and Jeet Das Production Design: Bablu Singha Lyrics : Pranjal Das Music Programmed by : KD Music Arranged by : Aneek Dhar & KD Mixed & Mastered by : Gautam Chakrabortty @ Meet Brothers Studio, Andheri West,Mumbai Rhythm Designs & Live Percussions (Dhol,Tasha,Trash Can,Snare Drum,Bass Drum,Timbales,Tambourine, Cow Bell) : Dipesh Varma Assistants : Mahesh Sakat & Pratik Tapase Live Percussions recorded @ Studio 504, Lokhandwala, Mumbai Recordist : Rahul Sharma Assisted by : Samir & Rohit Guitar De...
Mirza (মির্জা) Official Teaser | Ankush Hazra | Oindrila Sen | Kaushik Ganguly | Sumeet - Saahil | Upcoming Bengali Action Movie | EID 2024 Meet the mysterious characters of Mirza! Get ready for a glimpse into a world where each character has a unique story to share. Film Credits : Cast : Ankush Hazra, Oindrila Sen, Kaushik Ganguly, Rishi Kaushik, Priya Mondal, Shoaib Kabeer, Shantilal Mukherjee, Sankar Debnath, Rajat Ganguly, Krishnendu Chakraborty, Sumit Ganguly, Jammy Banerjee, Kunal Bhandari, Moulik Ghosh, Sankhadeep Banerjee, Beas Dhar, Mina Ghosh, Ratan Sarkhel, Ayush Majumder, Tamaghno Paul, Tarit Byabarta, Rahul Barui, Biswaroop Biswas, Arup Kumar Deb, Bonnis Chakraborty, Rishaan Chakraborty, Ryan Guha Neogi. Producer : Ankush Harza Director : Sumeet Saahil Music : Ishan...
Mirza - Maidaan Full Audio Song Ajay Devgan A.R. Rahman #mirza #ajaydevgan #arrahman #arrahmansongs #arrahmanmusic #bollywoodsongs2024 #maidaan #maidaansongs
Mirza | Sidhu Moosewala | Prod. A-Vee Vocals - Sidhu Moosewala Lyrics- karnail Sivia Music- A-Vee Original video: https://youtu.be/YlcLzvw9Yf0 Subscribe for more fire mixes 🔔 Enjoy & stay connected with us! ► Follow us on Snapchat: @thisiz_avee ► Follow us on Soundcloud: @officialdjavee ► Follow us on Instagram: https://www.instagram.com/thisiz_avee Video Edit: https://www.instagram.com/rbeffectsfi... Like || Share || Spread || Love #justiceforsidhumoosewala #sidhumoosewala #punjabi #music
Presenting the Music Video of the Song "Mirza". Sung by Tanishk Bagchi & Shehnaaz Gill, Composed & Written by Tanishk Bagchi. #Mirza #TanishkBagchi #ShehnaazGill Gulshan Kumar & T-Series Presents Bhushan Kumar's "Mirza" ♪Full Song Available on♪ JioSaavn: https://bit.ly/3vcnmed Spotify: https://bit.ly/3vatUKh Hungama: https://bit.ly/3RwPNLq Apple Music: https://bit.ly/3vh1Apq Amazon Prime Music: https://bit.ly/3v8oteO Wynk: https://bit.ly/486vdbO YouTube Music: https://bit.ly/3GUuQFe Song Credits: Song: Mirza. Music: Tanishk Bagchi. Lyrics: Tanishk Bagchi. Singers: Tanishk Bagchi & Shehnaaz Gill. Music Arrangement: Tanishk Bagchi and Ganesh Waghela. Mixing & Mastering: Eric Pillai at Future Sound of Bombay. Directed By: Apar Anand, Raghav Puri Edited By: Shreejit Nair Styled by: Akan...
Embark on a real journey into the lives of a nomadic family in the delightful spring wilderness, where the challenges of nomadic life unfold amidst the collaborative efforts of the Yekdali family in building a home. Witness the harmonious coordination and selfless sacrifice of family members as they come together to create a shelter, showcasing the cultural values and spirit of unity within the nomadic community. Experience the essence of familial cooperation and dedication in the face of nature's demands. #NomadicFamily #SpringWilderness #UnityAndSacrifice #FamilyCollaboration #DocumentaryJourney #CulturalValues #SpiritOfUnity #FamilialCooperation #Dedication #NomadicLife
The Caspian Sea is the largest enclosed inland body of water on Earth by area, variously classed as the world's largest lake or a full-fledged sea. It is in an endorheic basin (it has no outflows) located between Europe and Asia. It is bounded to the northeast by Kazakhstan, to the northwest by Russia, to the west by Azerbaijan, to the south by Iran, and to the southeast by Turkmenistan. The Caspian Sea lies to the east of the Caucasus Mountains and to the west of the vast steppe of Central Asia. Its northern part, the Caspian Depression, is one of the lowest points on Earth. The ancient inhabitants of its coast perceived the Caspian Sea as an ocean, probably because of its saltiness and large size.
The sea has a surface area of 371,000 km2 (143,200 sq mi) (not including its detached lagoon of Garabogazköl Aylagy) and a volume of 78,200 km3 (18,800 cu mi). It has a salinity of approximately 1.2% (12 g/l), about a third of the salinity of most seawater.
The word Caspian is derived from the name of the Caspi, an ancient people who lived to the south-west of the sea in Transcaucasia.Strabo wrote that "to the country of the Albanians belongs also the territory called Caspiane, which was named after the Caspian tribe, as was also the sea; but the tribe has now disappeared". Moreover, the Caspian Gates, which is the name of a region in Iran's Tehran province, possibly indicates that they migrated to the south of the sea. The Iranian city of Qazvin shares the root of its name with that of the sea. In fact, the traditional Arabic name for the sea itself is Bahr al-Qazwin (Sea of Qazvin).
Where've you been? Where I can't see
Wooden lion on your knee
Washed & dressed by mountain hand
Came from water to the sand
Promise me, Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea
Where've you been? Where I can't see
Wooden lion on your knee
Washed & dressed by mountain hand
Came like water to the sand
Promise me, Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea
Caspian Sea