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

Guaraní people

Guarani are a group of culturally related indigenous peoples of South America. They are distinguished from the related Tupí by their use of the Guaraní language. The traditional range of the Guaraní people is in what is now Paraguay between the Uruguay River and lower Paraguay River, the Misiones Province of Argentina, southern Brazil once as far as north as Rio de Janeiro, and parts of Uruguay and Bolivia. Although their demographic dominance of the region has been reduced by European colonisation and the commensurate rise of mestizos, there are contemporary Guaraní populations in these areas. Most notably, the Guarani language, still widely spoken across traditional Guaraní homelands, is one of the two official languages in Paraguay, the other one being Spanish. The language was once looked down upon by the upper and middle classes, but it is now often regarded with pride and serves as a symbol of national distinctiveness. The Paraguayan population learns Guaraní both informally from social interaction and formally in public schools. In modern Spanish Guaraní is also applied to refer to any Paraguayan national in the same way that the French are sometimes called Gauls.

Podcasts:

  • Receiving the name of hope Paraguay Mbyá GuaraniㅣExploring the Origin of Humanity

    Paraguay sits in the center of North America and 300km away from the capital Asunción, located at the eastern edge of the country lives the indigenous group of Guarani, the Mbyá Guarani people At around the age of 10, a child-naming ritual is held where the child is given an indigenous name based on their vocation

    published: 20 Jun 2022
  • GUARANI PEOPLE, CULTURE, & LANGUAGE

    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 Guaraní specifically the primary variety known as Paraguayan Guarani meaning "the people's language" is a South American language that belongs to the Tupi–Guarani family of the Tupian languages. It is one of the official languages of Paraguay (along with Spanish), where it is spoken by the majority of the population, and where half of the rural population are monolingual speakers of the language. It is spoken by communities in neighboring countries, includin...

    published: 07 Oct 2022
  • American visits the Guaraní people - Paraguay

    Español abajo- I went with my brother and entered into the world of the Guaraní in Alto Paraná, Paraguay. My guaraní isn't as bad as I thought it was. Me fui con mi hermano para entrar en el mundo Guaraní en Alto Paraná, Paraguay. Hablo mejor en Guaraní de lo que pensé

    published: 21 Jul 2021
  • Indigenous tribe in Rio de Janeiro preserves the Guarani language

    United Nations - When visiting a tribe in Maricá, a town 60 km (37 miles) away from Rio de Janeiro, it´s possible to find out indigenous people trying to maintain their culture, their language and their tradition. In the Tekoa Ka’guy Ovy Porã village, Mbya Guarani is taught at school, along with Portuguese. #SomosIndígenas #WeAreIndigenous #GlobalGoals

    published: 09 Aug 2017
  • Paraguayans: The World's Weirdest Latinos

    What exactly makes Paraguay different? And why are they known throughout Latin America and some places beyond that as the weirdest Latinos? Today let's look at the history of one of the smallest, but certainly not weakest, Hispanic countries; a country that not very many outsiders know much about. Let me know your thoughts on the history and modern people of Paraguay. Thanks for watching! Video has been demonetized due to the title... worth it. Sources: https://www.ozy.com/flashback/the-modern-eras-most-destructive-war-took-place-in-paraguay/76683 https://www.daytranslations.com/blog/2018/05/the-guarani-language-of-paraguay-is-making-a-comeback-11565/ https://www.britannica.com/topic/Guarani-language https://www.britannica.com/place/Paraguay#ref989473

    published: 19 Oct 2018
  • Guarani People Protests Against Bolsonaro

    Snapshot | Brazil’s Guarani people protests Anti-Indigenous government of Jair Bolsonaro. https://videosenglish.telesurtv.net/video/771042/guarani-people-protests-against-bolsonaro/

    published: 30 Mar 2019
  • The Guarani Language

    This video is all about Guarani, an indigenous language of South America and one of the official languages of Paraguay. ►Learn a language with Pimsleur: https://imp.i271380.net/langfocus ► Get started with a free trial! (Disclosure: The above link is an affiliate link, so Langfocus gets a small referral fee - at no extra cost to you) Special thanks to Iván who recorded the audio samples for this video and provided valuable feedback. Check out his channel for learning Guarani (through Spanish): https://www.youtube.com/channel/UCM0ri9700CquKx1gFjWfJGg ►Support Langfocus on Patreon at https://patreon.com/langfocus. These amazing people are already patrons: AmateurTextualCriticism Andrew Doehler Auguste Fields Bennett Seacrist Bill Walderman Brian King Bruce C CFitz17 Colin Milner Irina B...

    published: 20 Aug 2021
  • WIKITONGUES: María speaking Guarani

    Guarani is spoken by more than four million people throughout South America and by diaspora communities worldwide. It is the national language of Paraguay, where it shares co-official status with Spanish. Though it is one of the most widely-spoken indigenous languages in the Americas, Guarani's literary tradition is historically recent; its speakers first adopted the Latin alphabet in the sixteenth century, and the language's modern alphabet was not standardized until 1950. Read more on Wikipedia: http://bit.ly/1OLbamb. Help us caption & translate this video! http://amara.org/v/7MX3/

    published: 24 Sep 2015
  • Brazil Guarani Indians: Local tribe battles to survive in its homeland

    In Brazil, one of South America's oldest tribes is fighting for its survival. The Guarani Indians have lived on a reserve in Sao Paulo for more than 300 years. The government has long promised to give them new land, but as Christine Pirovolakis reports, most still live in squalid camps. Subscribe: http://trt.world/subscribe Livestream: http://trt.world/ytlive Facebook: http://trt.world/facebook Twitter: http://trt.world/twitter Instagram: http://trt.world/instagram Visit our website: http://trt.world

    published: 12 Sep 2017
  • Guarani indigenous people: discover the Amazon Indians living at the edge of Rio de Janeiro

    Guarani are an American indigenous peoples and one of the Amazon tribes. Come with us and discover their aboriginal culture as we travel to the edge of Rio de Janeiro, where this Brazilian native tribe is keeping its traditions and its language alive. *CHAPTERS* 00:00 At the edge of Rio de Janeiro, meet the Guarani Amazon tribe 01:39 The wealthy neighbours don’t like living next to a Guarani indigenous community 02:36 The Guarani children all go to their own school, where they learn topics including their indigenous culture 04:25 The Guarani church is where the God Tupã is worshipped, an important part of their indigenous religion 05:29 This Guarani village is sacred land for the indigenous community 07:10 Daily life of Guarani tribe includes crafting by hand and fishing in Itaipu Lagoon...

    published: 24 Apr 2021
developed with YouTube
Receiving the name of hope Paraguay Mbyá GuaraniㅣExploring the Origin of Humanity
34:53

Receiving the name of hope Paraguay Mbyá GuaraniㅣExploring the Origin of Humanity

  • Order:
  • Duration: 34:53
  • Uploaded Date: 20 Jun 2022
  • views: 946152
Paraguay sits in the center of North America and 300km away from the capital Asunción, located at the eastern edge of the country lives the indigenous group of Guarani, the Mbyá Guarani people At around the age of 10, a child-naming ritual is held where the child is given an indigenous name based on their vocation
https://wn.com/Receiving_The_Name_Of_Hope_Paraguay_Mbyá_GuaraniㅣExploring_The_Origin_Of_Humanity
GUARANI PEOPLE, CULTURE, & LANGUAGE
9:39

GUARANI PEOPLE, CULTURE, & LANGUAGE

  • Order:
  • Duration: 9:39
  • Uploaded Date: 07 Oct 2022
  • views: 26523
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 Guaraní specifically the primary variety known as Paraguayan Guarani meaning "the people's language" is a South American language that belongs to the Tupi–Guarani family of the Tupian languages. It is one of the official languages of Paraguay (along with Spanish), where it is spoken by the majority of the population, and where half of the rural population are monolingual speakers of the language. It is spoken by communities in neighboring countries, including parts of northeastern Argentina, southeastern Bolivia and southwestern Brazil, and is a second official language of the Argentine province of Corrientes since 2004; it is also an official language of Mercosur. Guaraní is one of the most widely spoken American languages, and remains commonly used among the Paraguayan people and neighboring communities. 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/Guarani_People,_Culture,_Language
American visits the Guaraní people - Paraguay
14:17

American visits the Guaraní people - Paraguay

  • Order:
  • Duration: 14:17
  • Uploaded Date: 21 Jul 2021
  • views: 19596
Español abajo- I went with my brother and entered into the world of the Guaraní in Alto Paraná, Paraguay. My guaraní isn't as bad as I thought it was. Me fui con mi hermano para entrar en el mundo Guaraní en Alto Paraná, Paraguay. Hablo mejor en Guaraní de lo que pensé
https://wn.com/American_Visits_The_Guaraní_People_Paraguay
Indigenous tribe in Rio de Janeiro preserves the Guarani language
2:39

Indigenous tribe in Rio de Janeiro preserves the Guarani language

  • Order:
  • Duration: 2:39
  • Uploaded Date: 09 Aug 2017
  • views: 40694
United Nations - When visiting a tribe in Maricá, a town 60 km (37 miles) away from Rio de Janeiro, it´s possible to find out indigenous people trying to maintain their culture, their language and their tradition. In the Tekoa Ka’guy Ovy Porã village, Mbya Guarani is taught at school, along with Portuguese. #SomosIndígenas #WeAreIndigenous #GlobalGoals
https://wn.com/Indigenous_Tribe_In_Rio_De_Janeiro_Preserves_The_Guarani_Language
Paraguayans: The World's Weirdest Latinos
12:42

Paraguayans: The World's Weirdest Latinos

  • Order:
  • Duration: 12:42
  • Uploaded Date: 19 Oct 2018
  • views: 1883098
What exactly makes Paraguay different? And why are they known throughout Latin America and some places beyond that as the weirdest Latinos? Today let's look at the history of one of the smallest, but certainly not weakest, Hispanic countries; a country that not very many outsiders know much about. Let me know your thoughts on the history and modern people of Paraguay. Thanks for watching! Video has been demonetized due to the title... worth it. Sources: https://www.ozy.com/flashback/the-modern-eras-most-destructive-war-took-place-in-paraguay/76683 https://www.daytranslations.com/blog/2018/05/the-guarani-language-of-paraguay-is-making-a-comeback-11565/ https://www.britannica.com/topic/Guarani-language https://www.britannica.com/place/Paraguay#ref989473
https://wn.com/Paraguayans_The_World's_Weirdest_Latinos
Guarani People Protests Against Bolsonaro
1:31

Guarani People Protests Against Bolsonaro

  • Order:
  • Duration: 1:31
  • Uploaded Date: 30 Mar 2019
  • views: 1389
Snapshot | Brazil’s Guarani people protests Anti-Indigenous government of Jair Bolsonaro. https://videosenglish.telesurtv.net/video/771042/guarani-people-protests-against-bolsonaro/
https://wn.com/Guarani_People_Protests_Against_Bolsonaro
The Guarani Language
16:18

The Guarani Language

  • Order:
  • Duration: 16:18
  • Uploaded Date: 20 Aug 2021
  • views: 387294
This video is all about Guarani, an indigenous language of South America and one of the official languages of Paraguay. ►Learn a language with Pimsleur: https://imp.i271380.net/langfocus ► Get started with a free trial! (Disclosure: The above link is an affiliate link, so Langfocus gets a small referral fee - at no extra cost to you) Special thanks to Iván who recorded the audio samples for this video and provided valuable feedback. Check out his channel for learning Guarani (through Spanish): https://www.youtube.com/channel/UCM0ri9700CquKx1gFjWfJGg ►Support Langfocus on Patreon at https://patreon.com/langfocus. These amazing people are already patrons: AmateurTextualCriticism Andrew Doehler Auguste Fields Bennett Seacrist Bill Walderman Brian King Bruce C CFitz17 Colin Milner Irina Bruce Italy Made Easy J Choi Jacob Madsen John Moffat Karl-Erik Wångstedt Kenny Kirk Kirkpatrick Michael Arbagi Michael Cuomo Michael J Synnott Mody Neil Sills Nobbi Lampe-Strang Paul Falstad Rosalind Resnick Ruben Sanchez Jr ShadowCrossZero Ulf Hermjakob Victoria Goh Vincent David Walter Moore Wolfgang Egon Schroder Yuko Sunda 19jks94 A Friend Abdullah Al-Kazaz Adam Powell Adam Vanderpluym Al Fung Alan Corley Alana Kalinowski Aleksei Alen Alex McKenzie Ali Muhammed Alshehri Alice Amittai Aviram Andrew Woods Anthony Kinread Anthony Peter Swallow Aous Mansouri Arnoud Hoorn Ashley Dierolf Avital Levant Bartosz Czarnotta Ben Benjamin Tipton Brent Warner Brian Begnoche Bruce Stark Chelsea Boudreau chris brown Chris Shifman Christian Langreiter Christopher Lowell Connor Burns contumaciousCulimancer Cyrus Shahrivar Daniel Young Darek David Eggleston David LeCount Dean Cary Debbie Diana Fulger Diane Young DickyBoa Dieter Raber digitalmobius Dina Trageser divad Divadrax Don Ross Donald Tilley Drew Gatewood Dulta Tracey Ed Heard Edward Wilson Elaine Salmon Emilia Bruns Eren Parla Eric Loewenthal Fabio Martini fatimahl Fawad Quraishi frederick shiels G Bot Grace Wagner Gregory Garecki Grégoire Le Corre Guillaume Brodar Harry Kek Henri Saussure Henrik Flyvbjerg Herr K Hila Ghebrehiwot Howard Clark Hugh AULT Ina Mwanda Jack Jackson James and Amanda Soderling James Lillis JAMES ORR Jay Bernard Jaye Ferrone Jens Aksel Takle Jesús Horacio Báez Ávila Jim McLaughlin JL Bumgarner Joe Dubya Johannes John E. McLaughlin John Flanagan John Gavin John Hyaduck John Lloyd Josh Rotenberg Julie Sriken Kate MacDonald Kimball Pierce kingvaeonic Kit Marcos Konrad Krzysztof Dobrzanski KW Lance Bedasie Laura Morland Lee Dedmon Leo Barudi Lincoln Hutton Lissette Talledo Louie dela Fuente Luke Jensen m maiku Manuel Rosales Margaret Langendorf Margrét Mark Mark Bonneaux Mark Judge Mark Kemp Markzipan Martin Blackwell Melanie Falk Merrick Bobb Merrick Bobb Michael Regal Mike Frysinger Mike Smigielski Mohammed A. Abahussain Mário Pegado Naama and Geoff Shang Nicholas Gentry Nicholas Paul Nicolas Elsishans Niro noxialisrex Oleksandr Ivanov Ondra Oto Kohulák Patrick smith Patriot Nurse Paul Flynn Paul Shutler Pauline Pavon Paulla Fetzek Peter Andersson Peter Nikitin Peter Scollar piero Pudim de Cana Raymond Thomas Richard Kelly Robert Brockway Robert Williams Roger Smith Roland Seuhs Ron McKinnon Ronald Brady Ryan Rubinstein Saffo Papantonopoulou Sergio Pascalin Sheila Perryman Sierra Rooney Sigbjørn Nerland Simon Blanchet Simon Jaglom sinastral SJWS Sonja Lang Srga91 . Stefan Reichenberger Steven Severance Suzanne Jacobs system_survivor Tara Pride Theophagous Thomas Chapel Thomas Gijsbers Tim Hopmann tommy dahill Tony DeSantis Ty Ovendale Vinicius Marchezini Vitor Waltraud Seemann Warren McKenzie William MacKenzie William O Beeman Yagub Alserkal Yeshar Hadi Yuriy Vrublevskiy Yuval Filmus Zachary Root zhangyimo Éric Martin Вайзефакнот 洋平 木嶋 00:00 Basic information about Guarani 00:53 A brief history of Guarani 03:40 How many Paraguayans speak Guarani? 03:55 What is Jopara? 04:24 Orthography and phonology 05:55 Guarani is agglutinative 07:17 Guarani Syntax 08:31 Guarani Verbs 12:16 Nominal tense in Guarani 12:57 Demonstratives in Guarani 13:43 More about Jopara 14:55 Closing comments 15:21 The Question of the Day
https://wn.com/The_Guarani_Language
WIKITONGUES: María speaking Guarani
2:51

WIKITONGUES: María speaking Guarani

  • Order:
  • Duration: 2:51
  • Uploaded Date: 24 Sep 2015
  • views: 192206
Guarani is spoken by more than four million people throughout South America and by diaspora communities worldwide. It is the national language of Paraguay, where it shares co-official status with Spanish. Though it is one of the most widely-spoken indigenous languages in the Americas, Guarani's literary tradition is historically recent; its speakers first adopted the Latin alphabet in the sixteenth century, and the language's modern alphabet was not standardized until 1950. Read more on Wikipedia: http://bit.ly/1OLbamb. Help us caption & translate this video! http://amara.org/v/7MX3/
https://wn.com/Wikitongues_María_Speaking_Guarani
Brazil Guarani Indians: Local tribe battles to survive in its homeland
2:19

Brazil Guarani Indians: Local tribe battles to survive in its homeland

  • Order:
  • Duration: 2:19
  • Uploaded Date: 12 Sep 2017
  • views: 2383
In Brazil, one of South America's oldest tribes is fighting for its survival. The Guarani Indians have lived on a reserve in Sao Paulo for more than 300 years. The government has long promised to give them new land, but as Christine Pirovolakis reports, most still live in squalid camps. Subscribe: http://trt.world/subscribe Livestream: http://trt.world/ytlive Facebook: http://trt.world/facebook Twitter: http://trt.world/twitter Instagram: http://trt.world/instagram Visit our website: http://trt.world
https://wn.com/Brazil_Guarani_Indians_Local_Tribe_Battles_To_Survive_In_Its_Homeland
Guarani indigenous people: discover the Amazon Indians living at the edge of Rio de Janeiro
19:53

Guarani indigenous people: discover the Amazon Indians living at the edge of Rio de Janeiro

  • Order:
  • Duration: 19:53
  • Uploaded Date: 24 Apr 2021
  • views: 40265
Guarani are an American indigenous peoples and one of the Amazon tribes. Come with us and discover their aboriginal culture as we travel to the edge of Rio de Janeiro, where this Brazilian native tribe is keeping its traditions and its language alive. *CHAPTERS* 00:00 At the edge of Rio de Janeiro, meet the Guarani Amazon tribe 01:39 The wealthy neighbours don’t like living next to a Guarani indigenous community 02:36 The Guarani children all go to their own school, where they learn topics including their indigenous culture 04:25 The Guarani church is where the God Tupã is worshipped, an important part of their indigenous religion 05:29 This Guarani village is sacred land for the indigenous community 07:10 Daily life of Guarani tribe includes crafting by hand and fishing in Itaipu Lagoon 08:57 The Itaipu Lagoon provides fish, shrimps and crabs to the Guarani tribe 09:49 Tattoos have important symbology in the Guarani culture 11:43 A welcome to visit the Guarani for yourself – in the Guarani language 14:09 The Guarani were the first people to live on this land, and their ancestral cemetary proves it 16:08 The Guarani children help to make dinner by collecting and crushing pitanga fruit 16:53 How the Guarani live inside their huts 17:42 The Guarani: living on the fringes of what is now a huge city, this great Amazon tribe community *INSIDE THE TRIBE - Documentary Series:* https://www.youtube.com/playlist?list=PLoEi_ku6niB0iMIhJbIxpGH3VVTqH4qoj *WHERE WE SHOT THE VIDEO* Country: Brazil Region: Rio de Janeiro City: Camboinhas Gps: 22°57'59.56"S 43° 2'50.75"O *ABOUT US* We are Domenico and Giulia; two adventurers, filmmakers, documentarians travelling the world to discover, understand, and tell the story. Kiss From The World is dedicated to creating high quality non-fiction content that informs and entertains its viewers about the world in all its wonder, diversity and vibrancy. _*BUSINESS INQUIRIES: domenico.pacifico@me.com*_
https://wn.com/Guarani_Indigenous_People_Discover_The_Amazon_Indians_Living_At_The_Edge_Of_Rio_De_Janeiro
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Receiving the name of hope Paraguay Mbyá GuaraniㅣExploring the Origin of Humanity
    34:53
    Receiving the name of hope Paraguay Mbyá GuaraniㅣExploring the Origin of Humanityremove from playlist
  • GUARANI PEOPLE, CULTURE, & LANGUAGE
    9:39
    GUARANI PEOPLE, CULTURE, & LANGUAGEremove from playlist
  • American visits the Guaraní people - Paraguay
    14:17
    American visits the Guaraní people - Paraguayremove from playlist
  • Indigenous tribe in Rio de Janeiro preserves the Guarani language
    2:39
    Indigenous tribe in Rio de Janeiro preserves the Guarani languageremove from playlist
  • Paraguayans: The World's Weirdest Latinos
    12:42
    Paraguayans: The World's Weirdest Latinosremove from playlist
  • Guarani People Protests Against Bolsonaro
    1:31
    Guarani People Protests Against Bolsonaroremove from playlist
  • The Guarani Language
    16:18
    The Guarani Languageremove from playlist
  • WIKITONGUES: María speaking Guarani
    2:51
    WIKITONGUES: María speaking Guaraniremove from playlist
  • Brazil Guarani Indians: Local tribe battles to survive in its homeland
    2:19
    Brazil Guarani Indians: Local tribe battles to survive in its homelandremove from playlist
  • Guarani indigenous people: discover the Amazon Indians living at the edge of Rio de Janeiro
    19:53
    Guarani indigenous people: discover the Amazon Indians living at the edge of Rio de Janeiroremove from playlist
developed with YouTube
PLAYLIST TIME:

Receiving the name of hope Paraguay Mbyá GuaraniㅣExploring the Origin of Humanity

Paraguay sits in the center of North America and 300km away from the capital Asunción, located at the eastern edge of the country lives the indigenous group of Guarani, the Mbyá Guarani people At around the age of 10, a child-naming ritual is held where the child is given an indigenous name based on their vocation
34:53
Receiving the name of hope Paraguay Mbyá GuaraniㅣExploring the Origin of Humanity
Paraguay sits in the center of North America and 300km away from the capital Asunción, loc...
published: 20 Jun 2022
Play in Full Screen
9:39
GUARANI PEOPLE, CULTURE, & LANGUAGE
Welcome to my channel! This is Andy from I love languages. Let's learn different languages...
published: 07 Oct 2022
Play in Full Screen
14:17
American visits the Guaraní people - Paraguay
Español abajo- I went with my brother and entered into the world of the Guaraní in Alto P...
published: 21 Jul 2021
Play in Full Screen
2:39
Indigenous tribe in Rio de Janeiro preserves the Guarani language
United Nations - When visiting a tribe in Maricá, a town 60 km (37 miles) away from Rio de...
published: 09 Aug 2017
Play in Full Screen
12:42
Paraguayans: The World's Weirdest Latinos
What exactly makes Paraguay different? And why are they known throughout Latin America and...
published: 19 Oct 2018
Play in Full Screen
1:31
Guarani People Protests Against Bolsonaro
Snapshot | Brazil’s Guarani people protests Anti-Indigenous government of Jair Bolsonaro. ...
published: 30 Mar 2019
Play in Full Screen
16:18
The Guarani Language
This video is all about Guarani, an indigenous language of South America and one of the of...
published: 20 Aug 2021
Play in Full Screen
2:51
WIKITONGUES: María speaking Guarani
Guarani is spoken by more than four million people throughout South America and by diaspor...
published: 24 Sep 2015
Play in Full Screen
2:19
Brazil Guarani Indians: Local tribe battles to survive in its homeland
In Brazil, one of South America's oldest tribes is fighting for its survival. The Guarani ...
published: 12 Sep 2017
Play in Full Screen
19:53
Guarani indigenous people: discover the Amazon Indians living at the edge of Rio de Janeiro
Guarani are an American indigenous peoples and one of the Amazon tribes. Come with us and ...
published: 24 Apr 2021
Play in Full Screen

Guaraní people

Guarani are a group of culturally related indigenous peoples of South America. They are distinguished from the related Tupí by their use of the Guaraní language. The traditional range of the Guaraní people is in what is now Paraguay between the Uruguay River and lower Paraguay River, the Misiones Province of Argentina, southern Brazil once as far as north as Rio de Janeiro, and parts of Uruguay and Bolivia. Although their demographic dominance of the region has been reduced by European colonisation and the commensurate rise of mestizos, there are contemporary Guaraní populations in these areas. Most notably, the Guarani language, still widely spoken across traditional Guaraní homelands, is one of the two official languages in Paraguay, the other one being Spanish. The language was once looked down upon by the upper and middle classes, but it is now often regarded with pride and serves as a symbol of national distinctiveness. The Paraguayan population learns Guaraní both informally from social interaction and formally in public schools. In modern Spanish Guaraní is also applied to refer to any Paraguayan national in the same way that the French are sometimes called Gauls.

'); } 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: guarani people

Edit

Four people shot in new attack to Indigenous land in Brazil

Deccan Herald 05 Jan 2025
... the police said.</p><p>The attack was aimed at the Avá Guarani people, who have been the target of previous assaults since Dec.
Edit

What Is Lucid Dreaming, and How Do I Do It?

New York Magazine 29 Nov 2024
Although the Tupi-Guarani people deeply value dreams and incorporate conversation about dreams into the fabric of daily life, Takuapu says that for the most part, they don’t practice lucid dreaming.
Edit

Police murder Guarani man as Brazil struggles with Indigenous land demarcation

Mongabay 26 Sep 2024
The violence has refocused attention on the country’s slow land demarcation process and the unsafe conditions it has created for Guarani and other Indigenous people ... of Indigenous Peoples (MPI).
Edit

What Does It Mean If You’re Dreaming About Spiders?

New York Magazine 30 Aug 2024
“If we dream about people, we’re dreaming about specific personality types or approaches,” she says ... Many people, Anderson explains, probably think of spiders as “creatures that can suddenly come out of the dark.
Edit

Brazilian authorities reinforce troops after clashes between Indigenous peoples and landowners

Newsday 06 Aug 2024
The Ministry of Indigenous Peoples said it had received reports of farmers attacking Guarani Kaiowa people in the Douradina municipality Saturday, injuring at least eight people ... “The Guarani Kaiowa ...
Edit

Indigenous people reclaiming land attacked in Brazil

Jurist 06 Aug 2024
Armed attackers injured at least 10 Guarani and Kaiow� Indigenous peoples reclaiming their land in Lagoa Rica, Brazil on Saturday ... In Brazil, the constitution entitles Indigenous peoples to the land that they .
Edit

Farmers attack Indigenous people reclaiming land in Brazil

Colorado Springs Gazette 05 Aug 2024
"The Guarani-Kaiowa people are retaking land in the Panambi-Lagoa Rica territory," the ministry said in a statement, blaming the violence on the uncertain legal situation surrounding Indigenous land claims.
Edit

Indian Activism Only Helps Feed the Economic System that we Reject, Says Brazilian Indian Leader Munduruku

Brazzil 27 May 2024
... in the Amazon and the Guarani and Kaiowá in Mato Grosso do Sul, the indigenous population continues to grow, with more and more indigenous people occupying spaces inaccessible to them until recently.
Edit

Apologies aren’t enough, Indigenous people say of Brazil dictatorship’s crimes

Mongabay 30 Apr 2024
In Mato Grosso do Sul state, around 100 Indigenous individuals from the Guyraroká community of the Guarani-Kaiowá people are confined to an area of 50 hectares (123 acres) on the edge of a road, surrounded by soybean and corn plantations.
Edit

Earth Day-focus brings eclectic mix to Orchestra Iowa concerts

The Gazette Cedar Rapids 18 Apr 2024
But for the Guarani people, ‘la tierra sin mal’ is a place that you can reach when you are alive ... Beginning with the Genesis-like story from the Guarani people, Scofano told The Gazette that writing ...
Edit

Brazil’s Krenak Indigenous group gets literary esteem and an apology for dictatorship-era crimes

Wtop 06 Apr 2024
The commission also extended an apology to the Guarani Kaiowá Indigenous people, who were also chased off their land in Mato Grosso do Sul state to make way for farms run by non-Indigenous Brazilians.
Edit

Brazil's Krenak Indigenous group gets literary esteem and an apology for dictatorship crimes

Newsday 06 Apr 2024
The commission also extended an apology to the Guarani Kaiowá Indigenous people, who were also chased off their land in Mato Grosso do Sul state to make way for farms run by non-Indigenous Brazilians.
Edit

Brazil apologises to Indigenous people for persecution during dictatorship

Tamil Guardian 04 Apr 2024
one relating to the Krenak people from the south-eastern state of Minas Gerais and another relating to the Guarani-Kaiowá from Mato Grosso do Sul, towards Brazil’s western border with Bolivia and Paraguay.
Edit

Brazil apologizes to Indigenous people for persecution during dictatorship

AOL 03 Apr 2024
one relating to the Krenak people from the south-eastern state of Minas Gerais and another relating to the Guarani-Kaiowá from Mato Grosso do Sul, towards Brazil’s western border with Bolivia and Paraguay ...Indigenous people have told this story.
Edit

The Legendary Yacumama is a Cryptozoologists Dream Come True

Ancient Origins 22 Mar 2024
... legend that has captivated the imaginations of indigenous peoples for generations ... Among the Tupi-Guarani peoples of Brazil, the Boiúna is described as a colossal serpent guardian of rivers and lakes.

Most Viewed

×