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

  • History of the Latin Alphabet

    The Latin alphabet has become arguably the dominant writing system over much of the world's languages, but how exactly did it come into existence, and what pressures over its 3,000-year history shaped it into the script we know today? MUSIC: "Summer" by bensound "Search for Self" by John Björk* "She Is Whimsical" by Arthur Benson* "An Ordinary Day" by Deskant* "Egypt Calling" by Sight of Wonders* "Caravan Trails" by Sight of Wonders* "Celtic Blessing" by Bonnie Grace* (*via EpidemicSound) 👕 MERCH! https://crowdmade.com/collections/khanubis 📖 SOURCES: https://en.wikipedia.org/wiki/Egyptian_hieroglyphs#Writing_system https://en.wikipedia.org/wiki/History_of_the_alphabet https://usefulcharts.com/blogs/charts/evolution-of-the-english-alphabet https://en.wikipedia.org/wiki/Phoenician_alphabe...

    published: 15 Nov 2020
  • The Arabic Language With A Latin Alphabet

    HELP SUPPORT NAME EXPLAIN ON PATREON: https://www.patreon.com/nameexplain TIKTOK: https://www.tiktok.com/@nameexplain INSTAGRAM: https://www.instagram.com/nameexplainyt/ FACEBOOK: https://www.facebook.com/groups/248812236869988 TWITTER: https://twitter.com/NameExplainYT BOOK: http://bit.ly/originofnames MERCH: https://teespring.com/stores/name-explain Thank you to all my Patrons for supporting the channel! SOURCES & FURTHER READING The Semitic Languages: https://www.babbel.com/en/magazine/semitic-languages The Curious Case of Maltese: https://www.labrujulaverde.com/en/2018/09/the-curious-case-of-maltese-the-only-semitic-language-in-the-european-union/ History Of Maltese: https://vassallohistory.wordpress.com/history-of-the-maltese-language/ The Maltese Language: https://omniglot.com/wri...

    published: 10 Feb 2023
  • Modding the Latin Alphabet: the odd history of G, J, U, W, Y

    Not every letter in your alphabet comes straight from ancient Rome. Some letters were crafted by clever old-school modders. This is their history. Learn how G comes from tailed C, J is an I with a tail, and the stories of U, V, W and Y intertwine. Meet soldiers, plebes, scribes and kings as the alphabet finds its way from the Romans to you. Most credits for sound effects and images found in Thoth's Pill: https://www.youtube.com/watch?v=PdO3IP0Pro8&index=13&list=PLc4s09N3L2h3HtaAYVqOVKGt2h6wRasw2 CC-BY and public domain images not found in Thoth's Pill: Ostia Antica inscription, Marie-Lan Nguyen Epistola del Trissino de le lettere nuovamente aggiunte nella lingua italiana Shakespeare's First Folio, Jessie Chapman Benjamin Franklin's Mémoires Henry VIII's copy of Cicero's De Officiis, Fol...

    published: 29 Jan 2016
  • The Latin Alphabet - Consonant Pronunciation

    We may not speak Latin anymore, but that doesn't mean we don't know how it's pronounced. This video covers consonants, which are mostly the same as our English ones, with just a few exceptions.

    published: 11 Apr 2011
  • Latin Letters

    ABCDEFGHIJKLMNOPQRSTUVWXYZÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞĀĂĄĆĈĊČĎĐĒĔĖĘĚĜĞĠĢĤĦĨĪĬĮİIJĴĶĹĻĽĿŁŃŅŇŊŌŎŐŒŔŖŘŚŜŞŠŢŤŦŨŪŬŮŰŲŴŶŸŹŻŽſƁƂƄƆƇƉƊƋƍƎƏƐƑƓƔƕƖƗƘƚƛƜƝƟƠƢƤƦƧƩƪƬƮƯƱƲƳƵƷƸƻƼƾǀǁǂǃDŽLJNJǍǏǑǓǕǗǙǛǞǠǢǤǦǨǪǬǮDZǴǶǷǸǺǼǾȀȂȄȆȈȊȌȎȐȒȔȖȘȚȜȞȠȢȤȦȨȪȬȮȰȲȸȹȴȵȶȷȺȻȽȾɁɃɄɅɆɈɊɌɎⱠⱢⱣⱤⱧⱩⱫⱭⱮⱯⱰⱲⱵⱾⱿꜦꜨꜪꜬꜮꜲꜴꜶꜸꜺꜼꜾꝀꝂꝄꝆꝈꝊꝌꝎꝐꝒꝔꝖꝘꝚꝜꝞꝠꝢꝤꝦꝨꝪꝬꝮꝹꝻꝽꝾꞀꞂꞄꞆꞍꞐꞒꞖꞘꞚꞜꞞꞠꞢꞤꞦꞨꞪꞫꞬꞭꞰꞱꟽꟻꟼꟾꟿḀḂḄḆḈḊḌḎḐḒḔḖḘḚḜḞḠḢḤḦḨḪḬḮḰḲḴḶḸḺḼḾṀṂṄṆṈṊṌṎṐṒṔṖṘṚṜṞṠṢṤṦṨṪṬṮṰṲṴṶṸṺṼṾẀẂẄẆẈẊẌẎẐẒẔẛẜẝẞẟẠẢẤẦẨẪẬẮẰẲẴẶẸẺẼẾỀỂỄỆỈỊỌỎỐỒỔỖỘỚỜỞỠỢỤỦỨỪỬỮỰỲỴỶỸỺỼỾ

    published: 26 May 2023
  • Latin script Meaning

    Video shows what Latin script means. the Latin alphabet. Latin script Meaning. How to pronounce, definition audio dictionary. How to say Latin script. Powered by MaryTTS, Wiktionary

    published: 30 Apr 2015
  • This is What Latin ACTUALLY Sounded Like

    Here’s what Classical Latin actually sounded like and how we know. Scholars have figured out the accurate pronunciation of Latin over the years through some careful and clever methods, and today, fluent Latin speakers like @polyMATHY_Luke can even speak how the ancient Romans actually spoke Latin! LEARN A FOREIGN LANGUAGE WITH MY METHOD! ✉️ Join my newsletter and discover how I pick up new languages quickly (and learn how you can do the same): 👉🏼 https://www.streetsmartlanguages.com/signup 📚 Check out my Street-Smart Language courses: 👉🏼 https://www.streetsmartlanguages.com Subscribe to my channel: https://www.youtube.com/channel/UCLNoXf8gq6vhwsrYp-l0J-Q?sub_confirmation=1 Follow me on Instagram: https://www.instagram.com/xiaomanyc/ Follow me on Facebook: https://www.facebook.com/xiaom...

    published: 15 Mar 2022
  • Ɫēṭṫẻṙş ɔᶂ ŧⱨə Ꝇǟƫỉṅ ḁⱡṗɦɑɓëʈ - Letters of the Latin alphabet

    English is the only major modern European language that uses the basic Latin alphabet, without any additional letters formed by adding diacritical marks or completely new symbols. As modern computer technology was developed mostly in English-speaking countries, keyboard layouts were developed with an alphabet without diacritical marks. (A diacritic is a glyph added to a letter.) Music: Swan ride by TRG Banks; May, 1 2018; Creative Commons CC0 1.0 https://commons.wikimedia.org/wiki/File:TRG_Banks_-_01_-_Swan_ride.ogg

    published: 31 May 2021
History of the Latin Alphabet
13:28

History of the Latin Alphabet

  • Order:
  • Duration: 13:28
  • Uploaded Date: 15 Nov 2020
  • views: 332085
The Latin alphabet has become arguably the dominant writing system over much of the world's languages, but how exactly did it come into existence, and what pressures over its 3,000-year history shaped it into the script we know today? MUSIC: "Summer" by bensound "Search for Self" by John Björk* "She Is Whimsical" by Arthur Benson* "An Ordinary Day" by Deskant* "Egypt Calling" by Sight of Wonders* "Caravan Trails" by Sight of Wonders* "Celtic Blessing" by Bonnie Grace* (*via EpidemicSound) 👕 MERCH! https://crowdmade.com/collections/khanubis 📖 SOURCES: https://en.wikipedia.org/wiki/Egyptian_hieroglyphs#Writing_system https://en.wikipedia.org/wiki/History_of_the_alphabet https://usefulcharts.com/blogs/charts/evolution-of-the-english-alphabet https://en.wikipedia.org/wiki/Phoenician_alphabet https://omniglot.com/writing/phoenician.htm https://en.wikipedia.org/wiki/Boustrophedon CONTACT: contact@khanubis.tv SPONSORSHIP INQUIRIES: khanubis@thoughtleaders.io 👥 JOIN THE DISCORD SERVER! https://discord.gg/RFrqp2M 💶 SUPPORT KHANUBIS ON PATREON: https://www.patreon.com/khanubis Or make one-time payments at paypal.me/khanubis THANK YOU, BRONZE AGE+ PATRONS! Adri Cortesia, Anonymous Freak, Mikkel R P Wilson, Rebanics, Nif Lindsay, Tobi Burch-Rates, Up and Atom http://www.khanubis.tv
https://wn.com/History_Of_The_Latin_Alphabet
The Arabic Language With A Latin Alphabet
11:41

The Arabic Language With A Latin Alphabet

  • Order:
  • Duration: 11:41
  • Uploaded Date: 10 Feb 2023
  • views: 166001
HELP SUPPORT NAME EXPLAIN ON PATREON: https://www.patreon.com/nameexplain TIKTOK: https://www.tiktok.com/@nameexplain INSTAGRAM: https://www.instagram.com/nameexplainyt/ FACEBOOK: https://www.facebook.com/groups/248812236869988 TWITTER: https://twitter.com/NameExplainYT BOOK: http://bit.ly/originofnames MERCH: https://teespring.com/stores/name-explain Thank you to all my Patrons for supporting the channel! SOURCES & FURTHER READING The Semitic Languages: https://www.babbel.com/en/magazine/semitic-languages The Curious Case of Maltese: https://www.labrujulaverde.com/en/2018/09/the-curious-case-of-maltese-the-only-semitic-language-in-the-european-union/ History Of Maltese: https://vassallohistory.wordpress.com/history-of-the-maltese-language/ The Maltese Language: https://omniglot.com/writing/maltese.htm The Maltese Alphabet: http://mylanguages.org/maltese_alphabet.php Maltese’s Extra Letters: https://www.tumblr.com/malteseboy/138223202108/the-fancy-extra-letters-in-maltese Il-Kantilena: https://ballandalus.wordpress.com/2019/04/08/il-kantilena-a-15th-century-poem-in-medieval-maltese/
https://wn.com/The_Arabic_Language_With_A_Latin_Alphabet
Modding the Latin Alphabet: the odd history of G, J, U, W, Y
5:45

Modding the Latin Alphabet: the odd history of G, J, U, W, Y

  • Order:
  • Duration: 5:45
  • Uploaded Date: 29 Jan 2016
  • views: 866825
Not every letter in your alphabet comes straight from ancient Rome. Some letters were crafted by clever old-school modders. This is their history. Learn how G comes from tailed C, J is an I with a tail, and the stories of U, V, W and Y intertwine. Meet soldiers, plebes, scribes and kings as the alphabet finds its way from the Romans to you. Most credits for sound effects and images found in Thoth's Pill: https://www.youtube.com/watch?v=PdO3IP0Pro8&index=13&list=PLc4s09N3L2h3HtaAYVqOVKGt2h6wRasw2 CC-BY and public domain images not found in Thoth's Pill: Ostia Antica inscription, Marie-Lan Nguyen Epistola del Trissino de le lettere nuovamente aggiunte nella lingua italiana Shakespeare's First Folio, Jessie Chapman Benjamin Franklin's Mémoires Henry VIII's copy of Cicero's De Officiis, Folger Shakespeare Library Music: Vadodara Chill Mix and Cambodian Odyssey, Kevin MacLeod (incompetech.com) Happy Ukulele, Jason Shaw (audionautix.com)
https://wn.com/Modding_The_Latin_Alphabet_The_Odd_History_Of_G,_J,_U,_W,_Y
The Latin Alphabet - Consonant Pronunciation
4:46

The Latin Alphabet - Consonant Pronunciation

  • Order:
  • Duration: 4:46
  • Uploaded Date: 11 Apr 2011
  • views: 1019415
We may not speak Latin anymore, but that doesn't mean we don't know how it's pronounced. This video covers consonants, which are mostly the same as our English ones, with just a few exceptions.
https://wn.com/The_Latin_Alphabet_Consonant_Pronunciation
Latin Letters
0:26

Latin Letters

  • Order:
  • Duration: 0:26
  • Uploaded Date: 26 May 2023
  • views: 28102
ABCDEFGHIJKLMNOPQRSTUVWXYZÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞĀĂĄĆĈĊČĎĐĒĔĖĘĚĜĞĠĢĤĦĨĪĬĮİIJĴĶĹĻĽĿŁŃŅŇŊŌŎŐŒŔŖŘŚŜŞŠŢŤŦŨŪŬŮŰŲŴŶŸŹŻŽſƁƂƄƆƇƉƊƋƍƎƏƐƑƓƔƕƖƗƘƚƛƜƝƟƠƢƤƦƧƩƪƬƮƯƱƲƳƵƷƸƻƼƾǀǁǂǃDŽLJNJǍǏǑǓǕǗǙǛǞǠǢǤǦǨǪǬǮDZǴǶǷǸǺǼǾȀȂȄȆȈȊȌȎȐȒȔȖȘȚȜȞȠȢȤȦȨȪȬȮȰȲȸȹȴȵȶȷȺȻȽȾɁɃɄɅɆɈɊɌɎⱠⱢⱣⱤⱧⱩⱫⱭⱮⱯⱰⱲⱵⱾⱿꜦꜨꜪꜬꜮꜲꜴꜶꜸꜺꜼꜾꝀꝂꝄꝆꝈꝊꝌꝎꝐꝒꝔꝖꝘꝚꝜꝞꝠꝢꝤꝦꝨꝪꝬꝮꝹꝻꝽꝾꞀꞂꞄꞆꞍꞐꞒꞖꞘꞚꞜꞞꞠꞢꞤꞦꞨꞪꞫꞬꞭꞰꞱꟽꟻꟼꟾꟿḀḂḄḆḈḊḌḎḐḒḔḖḘḚḜḞḠḢḤḦḨḪḬḮḰḲḴḶḸḺḼḾṀṂṄṆṈṊṌṎṐṒṔṖṘṚṜṞṠṢṤṦṨṪṬṮṰṲṴṶṸṺṼṾẀẂẄẆẈẊẌẎẐẒẔẛẜẝẞẟẠẢẤẦẨẪẬẮẰẲẴẶẸẺẼẾỀỂỄỆỈỊỌỎỐỒỔỖỘỚỜỞỠỢỤỦỨỪỬỮỰỲỴỶỸỺỼỾ
https://wn.com/Latin_Letters
Latin script Meaning
0:24

Latin script Meaning

  • Order:
  • Duration: 0:24
  • Uploaded Date: 30 Apr 2015
  • views: 1351
Video shows what Latin script means. the Latin alphabet. Latin script Meaning. How to pronounce, definition audio dictionary. How to say Latin script. Powered by MaryTTS, Wiktionary
https://wn.com/Latin_Script_Meaning
This is What Latin ACTUALLY Sounded Like
1:00

This is What Latin ACTUALLY Sounded Like

  • Order:
  • Duration: 1:00
  • Uploaded Date: 15 Mar 2022
  • views: 4391887
Here’s what Classical Latin actually sounded like and how we know. Scholars have figured out the accurate pronunciation of Latin over the years through some careful and clever methods, and today, fluent Latin speakers like @polyMATHY_Luke can even speak how the ancient Romans actually spoke Latin! LEARN A FOREIGN LANGUAGE WITH MY METHOD! ✉️ Join my newsletter and discover how I pick up new languages quickly (and learn how you can do the same): 👉🏼 https://www.streetsmartlanguages.com/signup 📚 Check out my Street-Smart Language courses: 👉🏼 https://www.streetsmartlanguages.com Subscribe to my channel: https://www.youtube.com/channel/UCLNoXf8gq6vhwsrYp-l0J-Q?sub_confirmation=1 Follow me on Instagram: https://www.instagram.com/xiaomanyc/ Follow me on Facebook: https://www.facebook.com/xiaomanyc/ If you guys like the music in my videos, you can check out all the AMAZING music Epidemic Sound has at my affiliate link here: http://share.epidemicsound.com/xiaomanyc
https://wn.com/This_Is_What_Latin_Actually_Sounded_Like
Ɫēṭṫẻṙş ɔᶂ ŧⱨə Ꝇǟƫỉṅ ḁⱡṗɦɑɓëʈ -  Letters of the Latin alphabet
7:43

Ɫēṭṫẻṙş ɔᶂ ŧⱨə Ꝇǟƫỉṅ ḁⱡṗɦɑɓëʈ - Letters of the Latin alphabet

  • Order:
  • Duration: 7:43
  • Uploaded Date: 31 May 2021
  • views: 617083
English is the only major modern European language that uses the basic Latin alphabet, without any additional letters formed by adding diacritical marks or completely new symbols. As modern computer technology was developed mostly in English-speaking countries, keyboard layouts were developed with an alphabet without diacritical marks. (A diacritic is a glyph added to a letter.) Music: Swan ride by TRG Banks; May, 1 2018; Creative Commons CC0 1.0 https://commons.wikimedia.org/wiki/File:TRG_Banks_-_01_-_Swan_ride.ogg
https://wn.com/Ɫēṭṫẻṙş_Ɔᶂ_Ŧⱨə_Ꝇǟƫỉṅ_Ḁⱡṗɦɑɓëʈ_Letters_Of_The_Latin_Alphabet
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • History of the Latin Alphabet
    13:28
    History of the Latin Alphabetremove from playlist
  • The Arabic Language With A Latin Alphabet
    11:41
    The Arabic Language With A Latin Alphabetremove from playlist
  • Modding the Latin Alphabet: the odd history of G, J, U, W, Y
    5:45
    Modding the Latin Alphabet: the odd history of G, J, U, W, Yremove from playlist
  • The Latin Alphabet - Consonant Pronunciation
    4:46
    The Latin Alphabet - Consonant Pronunciationremove from playlist
  • Latin Letters
    0:26
    Latin Lettersremove from playlist
  • Latin script Meaning
    0:24
    Latin script Meaningremove from playlist
  • This is What Latin ACTUALLY Sounded Like
    1:00
    This is What Latin ACTUALLY Sounded Likeremove from playlist
  • Ɫēṭṫẻṙş ɔᶂ ŧⱨə Ꝇǟƫỉṅ ḁⱡṗɦɑɓëʈ -  Letters of the Latin alphabet
    7:43
    Ɫēṭṫẻṙş ɔᶂ ŧⱨə Ꝇǟƫỉṅ ḁⱡṗɦɑɓëʈ - Letters of the Latin alphabetremove from playlist
PLAYLIST TIME: 0:00 / 45:13

History of the Latin Alphabet

The Latin alphabet has become arguably the dominant writing system over much of the world's languages, but how exactly did it come into existence, and what pressures over its 3,000-year history shaped it into the script we know today? MUSIC: "Summer" by bensound "Search for Self" by John Björk* "She Is Whimsical" by Arthur Benson* "An Ordinary Day" by Deskant* "Egypt Calling" by Sight of Wonders* "Caravan Trails" by Sight of Wonders* "Celtic Blessing" by Bonnie Grace* (*via EpidemicSound) 👕 MERCH! https://crowdmade.com/collections/khanubis 📖 SOURCES: https://en.wikipedia.org/wiki/Egyptian_hieroglyphs#Writing_system https://en.wikipedia.org/wiki/History_of_the_alphabet https://usefulcharts.com/blogs/charts/evolution-of-the-english-alphabet https://en.wikipedia.org/wiki/Phoenician_alphabet https://omniglot.com/writing/phoenician.htm https://en.wikipedia.org/wiki/Boustrophedon CONTACT: contact@khanubis.tv SPONSORSHIP INQUIRIES: khanubis@thoughtleaders.io 👥 JOIN THE DISCORD SERVER! https://discord.gg/RFrqp2M 💶 SUPPORT KHANUBIS ON PATREON: https://www.patreon.com/khanubis Or make one-time payments at paypal.me/khanubis THANK YOU, BRONZE AGE+ PATRONS! Adri Cortesia, Anonymous Freak, Mikkel R P Wilson, Rebanics, Nif Lindsay, Tobi Burch-Rates, Up and Atom http://www.khanubis.tv
13:28
History of the Latin Alphabet
The Latin alphabet has become arguably the dominant writing system over much of the world'...
published: 15 Nov 2020
Play in Full Screen
11:41
The Arabic Language With A Latin Alphabet
HELP SUPPORT NAME EXPLAIN ON PATREON: https://www.patreon.com/nameexplain TIKTOK: https://...
published: 10 Feb 2023
Play in Full Screen
5:45
Modding the Latin Alphabet: the odd history of G, J, U, W, Y
Not every letter in your alphabet comes straight from ancient Rome. Some letters were craf...
published: 29 Jan 2016
Play in Full Screen
4:46
The Latin Alphabet - Consonant Pronunciation
We may not speak Latin anymore, but that doesn't mean we don't know how it's pronounced. ...
published: 11 Apr 2011
Play in Full Screen
0:26
Latin Letters
ABCDEFGHIJKLMNOPQRSTUVWXYZÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞĀĂĄĆĈĊČĎĐĒĔĖĘĚĜĞĠĢĤĦĨĪĬĮİIJĴĶĹĻĽĿŁŃ...
published: 26 May 2023
Play in Full Screen
0:24
Latin script Meaning
Video shows what Latin script means. the Latin alphabet. Latin script Meaning. How to pro...
published: 30 Apr 2015
Play in Full Screen
1:00
This is What Latin ACTUALLY Sounded Like
Here’s what Classical Latin actually sounded like and how we know. Scholars have figured o...
published: 15 Mar 2022
Play in Full Screen
7:43
Ɫēṭṫẻṙş ɔᶂ ŧⱨə Ꝇǟƫỉṅ ḁⱡṗɦɑɓëʈ - Letters of the Latin alphabet
English is the only major modern European language that uses the basic Latin alphabet, wit...
published: 31 May 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: latin script

Edit

Spokane’s Bishop Daly intrigued by selection of Pope Leo XIV

The Spokesman-Review 10 May 2025
Daly noted that while Pope Leo XIV, the former Cardinal Francis Robert Prevost, gave his opening statement, the Chicago native spoke Italian and Latin in scripted remarks and Spanish in an unscripted speech.
Edit

New Findings Suggest Greek Alphabet Is Older Than Previously Thought

Greek Reporter 01 May 2025
... today swiftly developed, spread, and diverged into other alphabets like those used in Anatolia and Italy, eventually leading to the Latin script.” Carbon dating may help determine the origins.
Edit

Panzer Man

The Atlantic 01 May 2025
Americans had the M4 Sherman, a tank mass-produced by Detroit automakers ... “They are the best in the world—next to the Germans.” ... Olivia C ... On his right arm, Hegseth has a large tattoo of Deus vult (Latin for “God wills it”), written in Gothic script ... .
Edit

Katara launches magazine for Arabic learning

Gulf-Times 28 Apr 2025
Katara Cultural Village has launched 28, a magazine that aims to help non-Arabs to learn Arabic and explore the richness of the language through engaging stories.The name 28 refers to the 28 letters ...
Edit

Rejuvenating ‘Chinese character’

Taipei Times 19 Apr 2025
Today is UN Chinese Language Day, a celebration honoring the richness of the Chinese script ... Chinese script deserves a term that reflects its uniqueness ... Why, then, must the script that inspired them ...
  • 1
×