'+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:

  • The Sound of the Tai Lue language (Numbers, Words & Sample Text)

    Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. This video was made for educational purposes only. Non profit, educational, or personal use tips the balance in favor of fair use. All credits belong to the rightful owners. Language Preservation & Documentation. Special Thanks to the "Corpus Collector of China" Traditional dress based on Tai Lue (Lu) indigenous hill tribe people , Chiang Mai, Thailand Tai Lue (ᦅᧄᦺᦑ) kam tai Native to: China, Laos, Thailand, Myanmar, Vietnam, United States Region: Yunnan, China Ethnicity: Lu Native speakers: 550,000 (2000–2013) Language family: Kra–Dai Tai Lɯ, Tai Lü, Thai Lue, Tai Le, Xishuangbanna Dai (Chinese: 傣仂语; pinyin: Dǎilèyǔ; Burmese: လူးရှမ်း, romanized: luu Shan; Lao: ພາສາໄຕລື້; Tha...

    published: 28 Mar 2021
  • Speak Tai lesson-1 : Greeting in Tai language

    This Tai language, which is known as Shan language or Tai Yai (ไทยใหญ่) is the native language of Tai people in Shan state of Myanmar. Everyone can learn from my Speak Tai lessons for free. But I would appreciate it if learners can click on " Like, Share, Subscribe " buttons of the video clips. It will be the best support for me to create more lessons. Thanks for watching

    published: 23 Oct 2020
  • The History of the Kra-Dai (Tai-Kadai) Languages

    Check out Project Orochi at: https://projectorochi.com/?ref=bFcDmPFJiiBi Use the code DRAGONHISTORIAN at checkout to get 5% OFF Follow Project Orochi for more content and updates! https://www.instagram.com/projectorochi/ The Kra-Dai languages, also known as the Tai-Kadai languages, are a language family widely spoken across southern China and Mainland Southeast Asia. The Tai branch, which contains Thai and Lao, constitutes the bulk of the family. These languages are tonal. They also share many lexical similarities with the Chinese languages due to centuries of language contact. There are also hypotheses proposing that Kra-Dai may be related to the Austronesian or Hmong-Mien families. This video presents the history and evolution of the Kra-Dai languages from 2000 BCE to the present. Di...

    published: 25 Nov 2020
  • #Taiahom#Thailand#Assam Similar words between Tai ahom and Thai language||Jatiya hongit of Tai ahom

    Hlw guys! Once again wecome to my channel. I am Karabi Moran.. . In this video ,I have showed some common words between Tai ahom of Assam and Thai of Thailand.Like- 1.Rice is called Khao in both languages. 2.Water is called Naam in both languages. 3.Year is called Pi in both languages. 4.People are called Kun in Tai ahom and Khun in Thai. 5.Fish is called Pla/Pa in both languages. 6.Good is called Di in both languages. 7.Black is called Daam in both languages. 8.Eat is kin in both languages. 9.Go is Pai in both languages. 10.Sleep is Non in both languages. 11.Sit is Nang in both languages. 12.Come is Maa in both languages. Hope you guys enjoy the video.

    published: 01 Jun 2021
  • KRA DAI LANGUAGES

    Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. Kra-Dai, also known as Tai–Kadai, Daic, and Kadai, is a family of diverse languages found in southern China, northeast India, and Southeast Asia. The number of these languages is estimated to be close to a hundred, with approximately 100 million speakers all over the world. As the name itself suggests, Kra-Dai is made up of two major groups, Kra and Dai. The former refers to a number of lesser-known languages, some of which have only a few hundred fluent speakers or even less. The latter (also known as Tai, or Kam-Tai) is well established and comprises the best-known members of the family, Thai, and Lao, the national languages of Thailand and Laos respectively, whose speakers acc...

    published: 03 Jul 2022
  • KRA-DAI: THAI & ZHUANG (YONGBEI)

    Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. Please feel free to subscribe to see more of this. I hope you have a great day! Stay happy! Please support me on Patreon! https://www.patreon.com/user?u=16809442. Please support me on Ko-fi https://ko-fi.com/otipeps0124 If you are interested to see your native language/dialect be featured here. Submit your recordings to otipeps24@gmail.com. Looking forward to hearing from you!

    published: 16 Jul 2023
  • Let's learn Tai Ahom language ✍️ Nang Ichangdaw Boruah

    #Learning #TaiAhom language is a great way to make yourself proud. by learning Tai #Ahom #language you open up a whole new section of the south east Asia for you and you can comfortably explore it. Website : www.TaiAhom.com ......................................................................................................... Let's learn Tai Ahom language with Nang Ichangdaw Boruah ......................................................................................................... subscribe Nang Ichangdaw Boruah's YouTube channel link - https://youtube.com/channel/UCVXl6KiCznCXdFrsNpqg6cQ ............................. ................................................ learning a new language can improved memory, problem-solving and critical-thinking skills, enhanced concentrati...

    published: 03 Aug 2021
  • Amazing Thai 泰 ความมหัศจรรย์ของภาษาไท - Mind Blowing Thai Lao (Tai) Chinese Vietnamese Dialect Hack

    ภาษาไทสุดยอดจริง ๆ ...​ไม่ได้สะกดผิดนะ ต้องดูคลิบนี้กว่าจะรู้ว่าทำไมถึงสะกดคำว่า 'ไท' แบบนี้ รู้ไว้จะได้เก่งภาษา Even if you don't speak Thai, WATCH THIS CLIP! There is a hidden, underlying system running under the hood of the Thai language which if harnessed, Thai kids could quickly shift their Standard Thai into not only other Thai dialects, but completely other languages like Chinese, Vietnamese and even Burmese in a flash. I hope that this clip might open the beauty of the system on which the Thai language runs, and hopefully there will be Thais out there that take it and run with the ideas presented here to go and learn many other languages. In this clip, I mainly focus on tone shifts, however the system helps understand much more than that - to learn more, join Mindkraft where ...

    published: 18 Aug 2021
  • welcome to Speaking Tai Ahom Language . Lesson no - 1

    published: 11 Sep 2021
The Sound of the Tai Lue language (Numbers, Words & Sample Text)
1:50

The Sound of the Tai Lue language (Numbers, Words & Sample Text)

  • Order:
  • Duration: 1:50
  • Uploaded Date: 28 Mar 2021
  • views: 78318
Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. This video was made for educational purposes only. Non profit, educational, or personal use tips the balance in favor of fair use. All credits belong to the rightful owners. Language Preservation & Documentation. Special Thanks to the "Corpus Collector of China" Traditional dress based on Tai Lue (Lu) indigenous hill tribe people , Chiang Mai, Thailand Tai Lue (ᦅᧄᦺᦑ) kam tai Native to: China, Laos, Thailand, Myanmar, Vietnam, United States Region: Yunnan, China Ethnicity: Lu Native speakers: 550,000 (2000–2013) Language family: Kra–Dai Tai Lɯ, Tai Lü, Thai Lue, Tai Le, Xishuangbanna Dai (Chinese: 傣仂语; pinyin: Dǎilèyǔ; Burmese: လူးရှမ်း, romanized: luu Shan; Lao: ພາສາໄຕລື້; Thai: ภาษาไทลื้อ, phasa thai lue, pronounced [pʰāː.sǎː.tʰāj.lɯ́ː]; Vietnamese: tiếng Lự or tiếng Lữ), is a Tai language of the Lu people, spoken by about 700,000 people in Southeast Asia. This includes 280,000 people in China (Yunnan), 200,000 in Burma, 134,000 in Laos, 83,000 in Thailand and 4,960 in Vietnam. The language is similar to other Tai languages and is closely related to Kham Mueang or Tai Yuan, which is also known as Northern Thai language. In Yunnan, it is spoken in all of Xishuangbanna Dai Autonomous Prefecture, as well as Jiangcheng Hani and Yi Autonomous County in Pu'er City. In Vietnam, Tai Lue speakers are officially recognised as the Lự ethnic minority, although in China they are classified as part of the Dai people, along with speakers of the other Tai languages apart from Zhuang. Tai Lue has 21 syllable-initial consonants, 9 syllable finals and six tones (three different tones in checked syllables, six in syllables). LINKS: https://en.wikipedia.org/wiki/Tai_Lue_language https://en.wikipedia.org/wiki/Tai_Lue_people https://en.wikipedia.org/wiki/New_Tai_Lue_alphabet https://omniglot.com/writing/tailue.htm If you are interested to see your native language/dialect to be featured here. Submit your recordings to crystalsky0124@gmail.com. Looking forward to hearing from you!
https://wn.com/The_Sound_Of_The_Tai_Lue_Language_(Numbers,_Words_Sample_Text)
Speak Tai lesson-1 : Greeting in Tai language
3:05

Speak Tai lesson-1 : Greeting in Tai language

  • Order:
  • Duration: 3:05
  • Uploaded Date: 23 Oct 2020
  • views: 10462
This Tai language, which is known as Shan language or Tai Yai (ไทยใหญ่) is the native language of Tai people in Shan state of Myanmar. Everyone can learn from my Speak Tai lessons for free. But I would appreciate it if learners can click on " Like, Share, Subscribe " buttons of the video clips. It will be the best support for me to create more lessons. Thanks for watching
https://wn.com/Speak_Tai_Lesson_1_Greeting_In_Tai_Language
The History of the Kra-Dai (Tai-Kadai) Languages
6:16

The History of the Kra-Dai (Tai-Kadai) Languages

  • Order:
  • Duration: 6:16
  • Uploaded Date: 25 Nov 2020
  • views: 85853
Check out Project Orochi at: https://projectorochi.com/?ref=bFcDmPFJiiBi Use the code DRAGONHISTORIAN at checkout to get 5% OFF Follow Project Orochi for more content and updates! https://www.instagram.com/projectorochi/ The Kra-Dai languages, also known as the Tai-Kadai languages, are a language family widely spoken across southern China and Mainland Southeast Asia. The Tai branch, which contains Thai and Lao, constitutes the bulk of the family. These languages are tonal. They also share many lexical similarities with the Chinese languages due to centuries of language contact. There are also hypotheses proposing that Kra-Dai may be related to the Austronesian or Hmong-Mien families. This video presents the history and evolution of the Kra-Dai languages from 2000 BCE to the present. Disclaimer: all dates are approximations, and there are many hypotheses regarding the development and classification of these languages that are not represented in this video. Music by Brandon Fiechter https://youtu.be/yuhfdMu8OiQ
https://wn.com/The_History_Of_The_Kra_Dai_(Tai_Kadai)_Languages
#Taiahom#Thailand#Assam  Similar words between Tai ahom and Thai language||Jatiya hongit of Tai ahom
6:07

#Taiahom#Thailand#Assam Similar words between Tai ahom and Thai language||Jatiya hongit of Tai ahom

  • Order:
  • Duration: 6:07
  • Uploaded Date: 01 Jun 2021
  • views: 36542
Hlw guys! Once again wecome to my channel. I am Karabi Moran.. . In this video ,I have showed some common words between Tai ahom of Assam and Thai of Thailand.Like- 1.Rice is called Khao in both languages. 2.Water is called Naam in both languages. 3.Year is called Pi in both languages. 4.People are called Kun in Tai ahom and Khun in Thai. 5.Fish is called Pla/Pa in both languages. 6.Good is called Di in both languages. 7.Black is called Daam in both languages. 8.Eat is kin in both languages. 9.Go is Pai in both languages. 10.Sleep is Non in both languages. 11.Sit is Nang in both languages. 12.Come is Maa in both languages. Hope you guys enjoy the video.
https://wn.com/Taiahom_Thailand_Assam_Similar_Words_Between_Tai_Ahom_And_Thai_Language||Jatiya_Hongit_Of_Tai_Ahom
KRA DAI LANGUAGES
6:00

KRA DAI LANGUAGES

  • Order:
  • Duration: 6:00
  • Uploaded Date: 03 Jul 2022
  • views: 105062
Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. Kra-Dai, also known as Tai–Kadai, Daic, and Kadai, is a family of diverse languages found in southern China, northeast India, and Southeast Asia. The number of these languages is estimated to be close to a hundred, with approximately 100 million speakers all over the world. As the name itself suggests, Kra-Dai is made up of two major groups, Kra and Dai. The former refers to a number of lesser-known languages, some of which have only a few hundred fluent speakers or even less. The latter (also known as Tai, or Kam-Tai) is well established and comprises the best-known members of the family, Thai, and Lao, the national languages of Thailand and Laos respectively, whose speakers account for over half of the Kra-Dai population. The languages are typically tonal, isolating, and analytic, lacking in inflectional morphology, with no distinction for number and gender. A significant number of basic vocabulary items are monosyllabic but bisyllabic and multisyllabic compounds also abound. The ultimate genetic affiliation of Kra-Dai remains controversial, although a consensus among western scholars holds that it belongs under Austronesian. The majority of Kra-Dai languages have no writing systems of their own, particularly Kra. Languages with writing systems include Thai, Lao, Sipsongpanna Dai, and Tai Lue. These use Indic-based scripts. Others use Chinese character-based scripts, such as the Zhuang and Kam-Sui in southern China and surrounding regions. The government introduced Romanized scripts in the 1950s for the Zhuang and the Kam-Sui languages. Almost every group within Kra-Dai has a rich oral history tradition. Please feel free to subscribe to see more of this. I hope you have a great day! Stay happy! Please support me on Patreon! https://www.patreon.com/user?u=16809442. Please support me on Ko-fi https://ko-fi.com/otipeps0124 If you are interested to see your native language/dialect be featured here. Submit your recordings to otipeps24@gmail.com. Looking forward to hearing from you!
https://wn.com/Kra_Dai_Languages
KRA-DAI: THAI & ZHUANG (YONGBEI)
1:45

KRA-DAI: THAI & ZHUANG (YONGBEI)

  • Order:
  • Duration: 1:45
  • Uploaded Date: 16 Jul 2023
  • views: 31638
Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. Please feel free to subscribe to see more of this. I hope you have a great day! Stay happy! Please support me on Patreon! https://www.patreon.com/user?u=16809442. Please support me on Ko-fi https://ko-fi.com/otipeps0124 If you are interested to see your native language/dialect be featured here. Submit your recordings to otipeps24@gmail.com. Looking forward to hearing from you!
https://wn.com/Kra_Dai_Thai_Zhuang_(Yongbei)
Let's learn Tai Ahom language ✍️  Nang Ichangdaw Boruah
16:36

Let's learn Tai Ahom language ✍️ Nang Ichangdaw Boruah

  • Order:
  • Duration: 16:36
  • Uploaded Date: 03 Aug 2021
  • views: 18697
#Learning #TaiAhom language is a great way to make yourself proud. by learning Tai #Ahom #language you open up a whole new section of the south east Asia for you and you can comfortably explore it. Website : www.TaiAhom.com ......................................................................................................... Let's learn Tai Ahom language with Nang Ichangdaw Boruah ......................................................................................................... subscribe Nang Ichangdaw Boruah's YouTube channel link - https://youtube.com/channel/UCVXl6KiCznCXdFrsNpqg6cQ ............................. ................................................ learning a new language can improved memory, problem-solving and critical-thinking skills, enhanced concentration, ability to multitask, and better listening skills. ............................................................................................................ Support us by Donating 💰 at UPI ID: taiahomchannel@upi
https://wn.com/Let's_Learn_Tai_Ahom_Language_✍️_Nang_Ichangdaw_Boruah
Amazing Thai 泰 ความมหัศจรรย์ของภาษาไท - Mind Blowing Thai Lao (Tai) Chinese Vietnamese Dialect Hack
15:40

Amazing Thai 泰 ความมหัศจรรย์ของภาษาไท - Mind Blowing Thai Lao (Tai) Chinese Vietnamese Dialect Hack

  • Order:
  • Duration: 15:40
  • Uploaded Date: 18 Aug 2021
  • views: 321848
ภาษาไทสุดยอดจริง ๆ ...​ไม่ได้สะกดผิดนะ ต้องดูคลิบนี้กว่าจะรู้ว่าทำไมถึงสะกดคำว่า 'ไท' แบบนี้ รู้ไว้จะได้เก่งภาษา Even if you don't speak Thai, WATCH THIS CLIP! There is a hidden, underlying system running under the hood of the Thai language which if harnessed, Thai kids could quickly shift their Standard Thai into not only other Thai dialects, but completely other languages like Chinese, Vietnamese and even Burmese in a flash. I hope that this clip might open the beauty of the system on which the Thai language runs, and hopefully there will be Thais out there that take it and run with the ideas presented here to go and learn many other languages. In this clip, I mainly focus on tone shifts, however the system helps understand much more than that - to learn more, join Mindkraft where you'll internalise this system to get leverage on many other languages. Watch my FREE Tones and Pitch Accent Masterclass Webinar here: https://webinarkit.net/webinar/registration/61626d06a0a1b00018ea51e9 Everything you need to finally conquer tonal languages like Chinese, Thai, Lao, Vietnamese, or pitch accent languages like Japanese. #thai #chinese #ait If you liked this, you'd probably like my Mindkraft Discord server - come and join in the discussion on the brain, languages, tech, learning and evertyhing in between: https://discord.gg/qAJhCbyRTC Schedule an appointment with me: https://booking.setmore.com/scheduleappointment/0df12911-b710-4443-9059-6cec2640f9d2/bookappointment Check out the Mindkraft programme here - https://www.jcademy.com/courses/mindkraft-language-brain-builder-i To order a copy of my Cracking Thai Fundamentals Book - Installing a Thai Operating System for the Mind: https://www.jcademy.com/pages/cracking-thai-fundamentals-book Get some of the best Language learning, mind and brain merch on the street: https://shop.jcademy.com If you liked this content please reach over quickly and click 'subscribe' and 'like' - that will help me keep being able to develop great content for you. You can access all of my training modules at https://www.jcademy.com - create an account and get access to swathes of content and access to the premium content specific channels and related learning material from the Mindkraft Discord server: https://www.jcademy.com/bundles/member-resources You can read my blog at https://stujay.com
https://wn.com/Amazing_Thai_泰_ความมหัศจรรย์ของภาษาไท_Mind_Blowing_Thai_Lao_(Tai)_Chinese_Vietnamese_Dialect_Hack
welcome to Speaking Tai Ahom Language . Lesson no - 1
1:34

welcome to Speaking Tai Ahom Language . Lesson no - 1

  • Order:
  • Duration: 1:34
  • Uploaded Date: 11 Sep 2021
  • views: 12685
https://wn.com/Welcome_To_Speaking_Tai_Ahom_Language_._Lesson_No_1
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Sound of the Tai Lue language (Numbers, Words & Sample Text)
    1:50
    The Sound of the Tai Lue language (Numbers, Words & Sample Text)remove from playlist
  • Speak Tai lesson-1 : Greeting in Tai language
    3:05
    Speak Tai lesson-1 : Greeting in Tai languageremove from playlist
  • The History of the Kra-Dai (Tai-Kadai) Languages
    6:16
    The History of the Kra-Dai (Tai-Kadai) Languagesremove from playlist
  • #Taiahom#Thailand#Assam  Similar words between Tai ahom and Thai language||Jatiya hongit of Tai ahom
    6:07
    #Taiahom#Thailand#Assam Similar words between Tai ahom and Thai language||Jatiya hongit of Tai ahomremove from playlist
  • KRA DAI LANGUAGES
    6:00
    KRA DAI LANGUAGESremove from playlist
  • KRA-DAI: THAI & ZHUANG (YONGBEI)
    1:45
    KRA-DAI: THAI & ZHUANG (YONGBEI)remove from playlist
  • Let's learn Tai Ahom language ✍️  Nang Ichangdaw Boruah
    16:36
    Let's learn Tai Ahom language ✍️ Nang Ichangdaw Boruahremove from playlist
  • Amazing Thai 泰 ความมหัศจรรย์ของภาษาไท - Mind Blowing Thai Lao (Tai) Chinese Vietnamese Dialect Hack
    15:40
    Amazing Thai 泰 ความมหัศจรรย์ของภาษาไท - Mind Blowing Thai Lao (Tai) Chinese Vietnamese Dialect Hackremove from playlist
PLAYLIST TIME:

The Sound of the Tai Lue language (Numbers, Words & Sample Text)

Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. This video was made for educational purposes only. Non profit, educational, or personal use tips the balance in favor of fair use. All credits belong to the rightful owners. Language Preservation & Documentation. Special Thanks to the "Corpus Collector of China" Traditional dress based on Tai Lue (Lu) indigenous hill tribe people , Chiang Mai, Thailand Tai Lue (ᦅᧄᦺᦑ) kam tai Native to: China, Laos, Thailand, Myanmar, Vietnam, United States Region: Yunnan, China Ethnicity: Lu Native speakers: 550,000 (2000–2013) Language family: Kra–Dai Tai Lɯ, Tai Lü, Thai Lue, Tai Le, Xishuangbanna Dai (Chinese: 傣仂语; pinyin: Dǎilèyǔ; Burmese: လူးရှမ်း, romanized: luu Shan; Lao: ພາສາໄຕລື້; Thai: ภาษาไทลื้อ, phasa thai lue, pronounced [pʰāː.sǎː.tʰāj.lɯ́ː]; Vietnamese: tiếng Lự or tiếng Lữ), is a Tai language of the Lu people, spoken by about 700,000 people in Southeast Asia. This includes 280,000 people in China (Yunnan), 200,000 in Burma, 134,000 in Laos, 83,000 in Thailand and 4,960 in Vietnam. The language is similar to other Tai languages and is closely related to Kham Mueang or Tai Yuan, which is also known as Northern Thai language. In Yunnan, it is spoken in all of Xishuangbanna Dai Autonomous Prefecture, as well as Jiangcheng Hani and Yi Autonomous County in Pu'er City. In Vietnam, Tai Lue speakers are officially recognised as the Lự ethnic minority, although in China they are classified as part of the Dai people, along with speakers of the other Tai languages apart from Zhuang. Tai Lue has 21 syllable-initial consonants, 9 syllable finals and six tones (three different tones in checked syllables, six in syllables). LINKS: https://en.wikipedia.org/wiki/Tai_Lue_language https://en.wikipedia.org/wiki/Tai_Lue_people https://en.wikipedia.org/wiki/New_Tai_Lue_alphabet https://omniglot.com/writing/tailue.htm If you are interested to see your native language/dialect to be featured here. Submit your recordings to crystalsky0124@gmail.com. Looking forward to hearing from you!
1:50
The Sound of the Tai Lue language (Numbers, Words & Sample Text)
Welcome to my channel! This is Andy from I love languages. Let's learn different languages...
published: 28 Mar 2021
Play in Full Screen
3:05
Speak Tai lesson-1 : Greeting in Tai language
This Tai language, which is known as Shan language or Tai Yai (ไทยใหญ่) is the native lang...
published: 23 Oct 2020
Play in Full Screen
6:16
The History of the Kra-Dai (Tai-Kadai) Languages
Check out Project Orochi at: https://projectorochi.com/?ref=bFcDmPFJiiBi Use the code DRAG...
published: 25 Nov 2020
Play in Full Screen
6:07
#Taiahom#Thailand#Assam Similar words between Tai ahom and Thai language||Jatiya hongit of Tai ahom
Hlw guys! Once again wecome to my channel. I am Karabi Moran.. . In this video ,I have ...
published: 01 Jun 2021
Play in Full Screen
6:00
KRA DAI LANGUAGES
Welcome to my channel! This is Andy from I love languages. Let's learn different languages...
published: 03 Jul 2022
Play in Full Screen
1:45
KRA-DAI: THAI & ZHUANG (YONGBEI)
Welcome to my channel! This is Andy from I love languages. Let's learn different languages...
published: 16 Jul 2023
Play in Full Screen
16:36
Let's learn Tai Ahom language ✍️ Nang Ichangdaw Boruah
#Learning #TaiAhom language is a great way to make yourself proud. by learning Tai #Ahom #...
published: 03 Aug 2021
Play in Full Screen
15:40
Amazing Thai 泰 ความมหัศจรรย์ของภาษาไท - Mind Blowing Thai Lao (Tai) Chinese Vietnamese Dialect Hack
ภาษาไทสุดยอดจริง ๆ ...​ไม่ได้สะกดผิดนะ ต้องดูคลิบนี้กว่าจะรู้ว่าทำไมถึงสะกดคำว่า 'ไท' แบบน...
published: 18 Aug 2021
Play in Full Screen
1:34
welcome to Speaking Tai Ahom Language . Lesson no - 1
published: 11 Sep 2021
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)); } }); }); }); // -->

Latest News for: tai languages

Edit

Minister urges WHO inclusion in Israel op-ed

Taipei Times 07 May 2025
... Tai-yuan (邱泰源) said in an op-ed published in an Israeli newspaper on Tuesday ... Minister of Health and Welfare Chiu Tai-yuan speaks to reporters at the Legislative Yuan in Taipei on Thursday last week.
Edit

China's digital culture breaks borders, captivating global audiences

Urdu Point 28 Apr 2025
... cultural exports like dumpling-making, Tai Chi, or Chinese language learning - what some have dubbed the "old three hits" - China's digital content now speaks to a far broader audience.
Edit

Enthusiasts gather to celebrate World Tai Chi Day in Copenhagen

Xinhua 27 Apr 2025
COPENHAGEN, April 27 (Xinhua) -- As the World Tai Chi Day approaches, a two-day event promoting Chinese Tai Chi culture was held from Friday to Saturday, attracting hundreds of enthusiasts from across Denmark and other European countries.
Edit

Vaccine maker could face fine over alleged rat issue

Taipei Times 23 Apr 2025
... safety regulations, Minister of Health and Welfare Chiu Tai-yuan (邱泰源) said yesterday, after Chinese-language media said there was a rat-related sanitation breach at one of its facilities last year.
Edit

Namsai, ideal centre for Buddhist Circuit in North-East: Arunachal Dy CM Chowna Mein

Beijing News 21 Apr 2025
In fact, his tribe, the Tai Khamtis were the first, according to him, to wage the first war of independence against the British in 1839 ... According to Mein, they have preserved the Pali language through their Khamti script.
  • 1
×