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

Podcasts:

  • Interview with a Volga Tatar Woman

    An interview with a Volga Tatar Woman, on a train from Kazan to Izhevsk, May 2021. Leysan Ildarovna provides some interesting insights and perspective about this little known, outside of the former USSR, ethnic group. #Russia #Tatarstan #Kazan #Tatars #Tatar #Tatarka #Ethnography

    published: 11 Jun 2021
  • Who are the Tatars? Europe's Oldest Remaining Islamic Community

    Just who are the Tatars? The Tatars are arguably Europe's oldest remaining Islamic community, stretching back many hundreds (possibly over a thousand) years and today number in the tens of millions. Scattered over many parts of Eastern Europe, the Tatars are divided between a multitude of different groups with very diverse origins and histories. The different Tatar groups, which includes those with a range of phenotypes and cultures; from more East Asian, European or Middle Eastern-looking individuals as well as those belonging to traditional Islamic, Christian, pagan and even Jewish communities. Thanks for watching! Sources: https://www.researchgate.net/figure/The-homelands-and-the-early-migrations-of-the-Turkic-peoples_fig1_341548378 https://www.worldatlas.com/articles/who-are-the-tar...

    published: 02 Aug 2020
  • Volga Tatars ☀️ Bulgars ☀️ Tatarstan ☀️ Suas El

    Kazan Tatars / Volga Tatars. Kazan Tatar song "Tuhan yak". Republic of Tatarstan of Russian Federation. Music and culture of Kazan Tatars. Tatarstan is one the most powerful republics of Russia with the great degree of autonomy. Kazan Tatars, formerly known as Bulgars (Bulghars) speak Turkic language of Qipchak group, very similiar to Crimean Tatar (spoken in south Ukraine), Nogai (ancient Cumans of south Ukraine and of Hungarian puszta / Kunsag province), Turkish, Kazakh, Bashqir, Azeri, Uzbek. Unlike Turks, Tatars use Cyrillic script. Most of Volga Tatars are Moslems but many are Orthodox Christians. Kazan Tatars consists of 2 groups: Mishars and Teptiars. Modern Kazan Tatars are great mixture of peoples (ancient Bulgars & Qipchaq Turks (East Kazakh Tatars & north Kazakh Madiars). Ancien...

    published: 06 Jul 2013
  • Volga Tatar traditional music (Russia)

    published: 07 Nov 2018
  • Tatars of Kazan 2 Bulgars Volga Tatars

    published: 23 Feb 2015
  • History of Tatars

    published: 01 Jun 2016
  • Brief History of the Tatars

    Sh. Marjani Institute of History released an animated video Brief History of The Tatars. The video is presented within the framework of State Program of the Republic of Tatarstan - Preservation of National Identity of the Tatar People (for the years 2014-2016).

    published: 30 Jul 2017
  • Казак камчысы ⚔ Volga Tatars 🎼 Tatar folk music

    Казак камчысы. Татарська пісня. Культура поволзьких татар (древніх булгар). Виконання: Салават Фетгетдінов. Tatar folk song by F?thetdinov Salavat Z?ki ugl? from Kazan, Republic of Tatarstan (Volga Tatars / Great Bulgars), Russian Federation ПІДТРИМАЙ МІЙ ПРОЕКТ! YOUR SUPPORT WILL BE HIGHLY APPRECIATED. SUPPORT MY PROJECT HERE: https://www.patreon.com/zakharii

    published: 14 Oct 2013
Interview with a Volga Tatar Woman
10:27

Interview with a Volga Tatar Woman

  • Order:
  • Duration: 10:27
  • Uploaded Date: 11 Jun 2021
  • views: 6698
An interview with a Volga Tatar Woman, on a train from Kazan to Izhevsk, May 2021. Leysan Ildarovna provides some interesting insights and perspective about this little known, outside of the former USSR, ethnic group. #Russia #Tatarstan #Kazan #Tatars #Tatar #Tatarka #Ethnography
https://wn.com/Interview_With_A_Volga_Tatar_Woman
Who are the Tatars? Europe's Oldest Remaining Islamic Community
11:38

Who are the Tatars? Europe's Oldest Remaining Islamic Community

  • Order:
  • Duration: 11:38
  • Uploaded Date: 02 Aug 2020
  • views: 955255
Just who are the Tatars? The Tatars are arguably Europe's oldest remaining Islamic community, stretching back many hundreds (possibly over a thousand) years and today number in the tens of millions. Scattered over many parts of Eastern Europe, the Tatars are divided between a multitude of different groups with very diverse origins and histories. The different Tatar groups, which includes those with a range of phenotypes and cultures; from more East Asian, European or Middle Eastern-looking individuals as well as those belonging to traditional Islamic, Christian, pagan and even Jewish communities. Thanks for watching! Sources: https://www.researchgate.net/figure/The-homelands-and-the-early-migrations-of-the-Turkic-peoples_fig1_341548378 https://www.worldatlas.com/articles/who-are-the-tartar-people.html https://academic.oup.com/mbe/article/27/10/2220/963437 https://www.nature.com/articles/srep30197 https://www.nationalgeographic.com/news/2014/3/140314-crimea-tatars-referendum-russia-muslim-ethnic-history-culture/
https://wn.com/Who_Are_The_Tatars_Europe's_Oldest_Remaining_Islamic_Community
Volga Tatars ☀️ Bulgars ☀️ Tatarstan ☀️ Suas El
3:09

Volga Tatars ☀️ Bulgars ☀️ Tatarstan ☀️ Suas El

  • Order:
  • Duration: 3:09
  • Uploaded Date: 06 Jul 2013
  • views: 57637
Kazan Tatars / Volga Tatars. Kazan Tatar song "Tuhan yak". Republic of Tatarstan of Russian Federation. Music and culture of Kazan Tatars. Tatarstan is one the most powerful republics of Russia with the great degree of autonomy. Kazan Tatars, formerly known as Bulgars (Bulghars) speak Turkic language of Qipchak group, very similiar to Crimean Tatar (spoken in south Ukraine), Nogai (ancient Cumans of south Ukraine and of Hungarian puszta / Kunsag province), Turkish, Kazakh, Bashqir, Azeri, Uzbek. Unlike Turks, Tatars use Cyrillic script. Most of Volga Tatars are Moslems but many are Orthodox Christians. Kazan Tatars consists of 2 groups: Mishars and Teptiars. Modern Kazan Tatars are great mixture of peoples (ancient Bulgars & Qipchaq Turks (East Kazakh Tatars & north Kazakh Madiars). Ancient Bulgars spoke Oghur Turkic (Chuvash) language (not Oghuz as now). Oghuz Turkic language was imposed on Bulgars during invasion of Qipchaq (Tatars & Madiars (all from Kazakhstan) were among them) hordes. So in a way, neighboring Chuvash are more Bulgars, at least lingistically. Important: The Chuvash still refer to Kazan Tatarstan as "Suas" El (Land of Suas). Su-as (Water Asses) - Asses (Jass, As) are selfname of Alans & Sarmatians (Ossetians, Alan Jasses (Jasz/ Jaszok) of Hungary, extinct Burtas (Burt-as / beehive asses) of Volga). All these were Sarmatian (Alan / Scythian) tribes who spoke N. Eastern Iranian language (close to extinct Sogdian, Yaghnobi, Avestan). Thats why some Bulgars have pure Iranic looks (like Alsu, famous Kazan Tatar singer, pop star in Russia). Oghuz tribe / Qipchaq (Kazakh) tribe of Madiars picked up Ugrians on the way during their migraion. Madiars with Ugrians settled Pannonia (Hungary). Bulgars of Bulgaria and Macedonia come from Old Bulgaria (Ukraine) not from Kazan Volga. Kazan Bulgars moved to north also from Old Bulgaria (Ukraine). Grave of Great Bulgar king Kubrat is in Ukraine (in Poltava region). Kubrat was of Dulo clan that was Scythian / Sarmatian (Iranian) royal line. As a nation, Kazan Tatars are a great mixture of peoples (they say the very name "Bulgar" means "mixed") and officially consist of two major subgroups: 1-st subgroup of Volga Tatars: western Mishars (Mazhars-Meshchera) - remnants of turko-ugric Magyars (Magyars were originally Turkic tribe from north Kazakhstan who mixed with Ugrians coming from northerly Perm region). These Mishars also absorbed a number of local warlike scytho-sarmatian Burtasses (Beehive Alans / Ossetians) and Suasses (River Alans / Ossetians) who lived along Volga basin - that's why they have a lot of paternal R1a group. The dominant were Turkic (Qipchak) speaking Magyar tribe (Magyar tribe of north Kazkahstan are quite mongoloid) and their language is a modern western Tatar (Mishar) dialect. 80% of Tatars who live in Moscow are mainly Mishars. Mishars also have some admixture from Volga Finns (Mordvin related tribe) evident in birch weaven artefacts. 2-nd subgroup of Volga Tatars: Teptiars / eastern Kazan Tatars (Bulgars proper) who are the dominant group. It is believed that Bulgars were originally also a Scytho-Sarmatian tribe, later tatarized / turcosized. Thats why many Tatars have pure European look and paternal R1a goup (Tatar women clothing is very similiar to Gilakis of north Iran and Lemkos of Ukraine, all of same scytho-sarmatian stock), while others have mongoloid features (from invading Ugrian & Turco-Magyar tribes in 8th cen., and later again 12th cen from powerful Mongol invasion who formed Golden Horde centered on Volga. ---------------------------------------------------------------------------- Modern Russia (originally Muscovite tsardom) is often regarded as successor of Golden horde politically. But ethnically and genetically just Russians of Ivanovo and Ryazan regions (historic Meshchera, original home of Mishar Tatars) are related to Mishar Tatars (and Hungarians themselves, having the most similar genetic Slavic-Mishar pool). Modern Hungary, however was inhabited by Slavic tribes (Great Moravia) before arrival of turco-ugrian Magyars (Mazhars) from Volga, these Pannonian Slavs never moved but became part of Hungarian nation. Thats why they look European. Similiar case was in Bulgaria where Volga Bulgars settled too mixing with Slavs and adopting their language. Otherwise said -original Bulgarians are related to eastern Tatars (Bulgars), while original Hungarians are related to western Tatars (Mishars / Mozhars). Ukrainians too absorbed much of Qipchak culture by assimilating Torks (bearers of Ukrainian last name Torchenko are clear mongoloids) and many Cumans (much evident in cossack culture) related tribes of Qipchak tongue, as Ukrainian Crimean Tatars speak same Qipchak tongue as Kazan Tatars). Paternal genetics: Tatars have haplogroups I, J2, G and plenty of R1a (Scytho-Sarmatian / East Slavic) and even L.
https://wn.com/Volga_Tatars_☀️_Bulgars_☀️_Tatarstan_☀️_Suas_El
Volga Tatar traditional music (Russia)
36:11

Volga Tatar traditional music (Russia)

  • Order:
  • Duration: 36:11
  • Uploaded Date: 07 Nov 2018
  • views: 128327
https://wn.com/Volga_Tatar_Traditional_Music_(Russia)
Tatars of Kazan 2    Bulgars   Volga Tatars
3:11

Tatars of Kazan 2 Bulgars Volga Tatars

  • Order:
  • Duration: 3:11
  • Uploaded Date: 23 Feb 2015
  • views: 2820
https://wn.com/Tatars_Of_Kazan_2_Bulgars_Volga_Tatars
History of Tatars
5:41

History of Tatars

  • Order:
  • Duration: 5:41
  • Uploaded Date: 01 Jun 2016
  • views: 179987
https://wn.com/History_Of_Tatars
Brief History of the Tatars
16:06

Brief History of the Tatars

  • Order:
  • Duration: 16:06
  • Uploaded Date: 30 Jul 2017
  • views: 507409
Sh. Marjani Institute of History released an animated video Brief History of The Tatars. The video is presented within the framework of State Program of the Republic of Tatarstan - Preservation of National Identity of the Tatar People (for the years 2014-2016).
https://wn.com/Brief_History_Of_The_Tatars
Казак камчысы ⚔ Volga Tatars 🎼 Tatar folk music
3:38

Казак камчысы ⚔ Volga Tatars 🎼 Tatar folk music

  • Order:
  • Duration: 3:38
  • Uploaded Date: 14 Oct 2013
  • views: 66508
Казак камчысы. Татарська пісня. Культура поволзьких татар (древніх булгар). Виконання: Салават Фетгетдінов. Tatar folk song by F?thetdinov Salavat Z?ki ugl? from Kazan, Republic of Tatarstan (Volga Tatars / Great Bulgars), Russian Federation ПІДТРИМАЙ МІЙ ПРОЕКТ! YOUR SUPPORT WILL BE HIGHLY APPRECIATED. SUPPORT MY PROJECT HERE: https://www.patreon.com/zakharii
https://wn.com/Казак_Камчысы_⚔_Volga_Tatars_🎼_Tatar_Folk_Music
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Interview with a Volga Tatar Woman
    10:27
    Interview with a Volga Tatar Womanremove from playlist
  • Who are the Tatars? Europe's Oldest Remaining Islamic Community
    11:38
    Who are the Tatars? Europe's Oldest Remaining Islamic Communityremove from playlist
  • Volga Tatars ☀️ Bulgars ☀️ Tatarstan ☀️ Suas El
    3:09
    Volga Tatars ☀️ Bulgars ☀️ Tatarstan ☀️ Suas Elremove from playlist
  • Brief History of the Tatars
    16:06
    Brief History of the Tatarsremove from playlist
  • Казак камчысы ⚔ Volga Tatars 🎼 Tatar folk music
    3:38
    Казак камчысы ⚔ Volga Tatars 🎼 Tatar folk musicremove from playlist
PLAYLIST TIME:

Interview with a Volga Tatar Woman

An interview with a Volga Tatar Woman, on a train from Kazan to Izhevsk, May 2021. Leysan Ildarovna provides some interesting insights and perspective about this little known, outside of the former USSR, ethnic group. #Russia #Tatarstan #Kazan #Tatars #Tatar #Tatarka #Ethnography
10:27
Interview with a Volga Tatar Woman
An interview with a Volga Tatar Woman, on a train from Kazan to Izhevsk, May 2021. Leys...
published: 11 Jun 2021
Play in Full Screen
11:38
Who are the Tatars? Europe's Oldest Remaining Islamic Community
Just who are the Tatars? The Tatars are arguably Europe's oldest remaining Islamic communi...
published: 02 Aug 2020
Play in Full Screen
3:09
Volga Tatars ☀️ Bulgars ☀️ Tatarstan ☀️ Suas El
Kazan Tatars / Volga Tatars. Kazan Tatar song "Tuhan yak". Republic of Tatarstan of Russia...
published: 06 Jul 2013
Play in Full Screen
36:11
Volga Tatar traditional music (Russia)
published: 07 Nov 2018
Play in Full Screen
3:11
Tatars of Kazan 2 Bulgars Volga Tatars
published: 23 Feb 2015
Play in Full Screen
5:41
History of Tatars
published: 01 Jun 2016
Play in Full Screen
16:06
Brief History of the Tatars
Sh. Marjani Institute of History released an animated video Brief History of The Tatars. ...
published: 30 Jul 2017
Play in Full Screen
3:38
Казак камчысы ⚔ Volga Tatars 🎼 Tatar folk music
Казак камчысы. Татарська пісня. Культура поволзьких татар (древніх булгар). Виконання: Сал...
published: 14 Oct 2013
Play in Full Screen
'); } 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)); } }); }); }); // -->
×