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

  • 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
  • Smells Like Teen Spirit Cover In Classical Latin (75 BC to 3rd Century AD) Bardcore/Medieval style

    R.I.P Kurtus Cobaenus 😢 (I think everyone knows but, XD) Link to the original by @nirvana : https://www.youtube.com/watch?v=hTWKbfoikeg This was a really fun one to do, Lemme know what you think :) Consider supporting the channel, I know what I do ain't much but its honest work ❤ : https://www.patreon.com/the_miracle_aligner?fan_landing=true Wanna follow and support me? https://open.spotify.com/artist/4y9XM0PsNhwYu6PmzpsjB5 https://music.apple.com/bm/artist/the-miracle-aligner/1534341495 https://paypal.me/jakholethaisii?country.x=CA&locale.x=en_US https://www.instagram.com/the_miracle_aligner/ Big thanks to @stantough for providing me with the Instrumentals. Please go check out his channel : https://www.youtube.com/user/stantough As always, Big shoutout to @ABAlphaBeta for all the i...

    published: 20 Jul 2020
  • Spoken Roman Latin, from TV Show "Barbarians"

    Spoken Roman Latin, from TV Show "Barbarians". Language of the Roman Empire.

    published: 05 Nov 2020
  • Medieval Latin

    Latin language at the time of King Alfred

    published: 05 Jul 2021
  • How to decipher medieval Latin abbreviations

    Demonstration of online databases of medieval manuscript abbreviations: Enigma: http://enigma.huma-num.fr Cappelli: https://www.adfontes.uzh.ch/en/ressourcen/abkuerzungen/cappelli-online Cappelli scan: https://archive.org/details/lexiconabbreviat00capp Abbreviationes: https://abbreviationes.net/ Bodleian Library, MS Laud Misc. 250: https://digital.bodleian.ox.ac.uk/inquire/p/722768ec-9196-43c8-b628-e7d497a7b75a

    published: 05 Nov 2020
  • All Star cover in Classical Latin (BARDCORE\Medieval Style) Original by Smash Mouth

    The real reason Hadrian built the wall was to stop Roman expansion as he knew he did not want anyone to trespass into somebody's SWAMP! This decision delayed the collapse of the Western Roman Empire by a few centuries. When I saw Shrek as a kid, I was totally blown away because I had never experienced something like it before, coupled with Smash Mouth's Allstar which made it all the more memorable and special. So yeah, wanted to do this song before all the Shrek fans die out haha. I'm back baby! Expect another bardcore soon. Will be doing more regular uploads now. Sorry for the long delays, It has been a rough year for me with many problems that required my attention and time. But I have triumphed over them and now will be dedicated to continuing with my work. Thank you so much for all ...

    published: 03 Jul 2024
  • Barbarians (2020) S1xE1 Latin subtitles-- Varus, Arminius, Metellus, Gernot

    I DO NOT OWN ANY OF THIS MATERIAL. EDIT: (00:20) "tribum" should be "tribuum" (pl, gen for partitive genitive with "pars") This scene in Latin is from the first episode of the new Netflix original "Barbarians" or "Barbaren". Though I haven't found an official copy of the Latin script, I have added Latin captions by ear and slightly modified parts of the English subtitles provided by Netflix. My Latin captions may be incorrect in some places, so I have provided commentary below on the parts about which I was less sure. As a student and lover of Latin, this show's commitment to having the Romans speak Latin the whole way through is something I never thought I'd have the privilege to see and I am hoping desperately for a season 2. The writers' use of idiomatic language, the vocative for di...

    published: 27 Oct 2020
  • Latin word origin of "Secular"

    published: 20 Nov 2024
  • Tenacious D - Tribute cover in Late Latin (3rd - 5th century A.D) Bardcore/Medieval style

    This is not the greatest cover in the world, It's only a tribute... to the greatest song in the world XD This was a really fun one to do, stay tuned for more upcoming releases in the coming week :) Take care and see ya'll on the next one folks. Original song by The D : https://www.youtube.com/watch?v=_lK4cX5xGiQ Consider supporting the channel, I know what I do ain't much but its honest work ❤ : https://www.patreon.com/the_miracle_aligner?fan_landing=true Wanna follow and support me? https://open.spotify.com/artist/4y9XM0PsNhwYu6PmzpsjB5 https://music.apple.com/bm/artist/the-miracle-aligner/1534341495 https://paypal.me/jakholethaisii?country.x=CA&locale.x=en_US https://www.instagram.com/the_miracle_aligner/ A big thanks to Memoramissa for carrying this video with all his hard work, che...

    published: 19 Oct 2022
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
Smells Like Teen Spirit Cover In Classical Latin (75 BC to 3rd Century AD) Bardcore/Medieval style
3:52

Smells Like Teen Spirit Cover In Classical Latin (75 BC to 3rd Century AD) Bardcore/Medieval style

  • Order:
  • Duration: 3:52
  • Uploaded Date: 20 Jul 2020
  • views: 7741744
R.I.P Kurtus Cobaenus 😢 (I think everyone knows but, XD) Link to the original by @nirvana : https://www.youtube.com/watch?v=hTWKbfoikeg This was a really fun one to do, Lemme know what you think :) Consider supporting the channel, I know what I do ain't much but its honest work ❤ : https://www.patreon.com/the_miracle_aligner?fan_landing=true Wanna follow and support me? https://open.spotify.com/artist/4y9XM0PsNhwYu6PmzpsjB5 https://music.apple.com/bm/artist/the-miracle-aligner/1534341495 https://paypal.me/jakholethaisii?country.x=CA&locale.x=en_US https://www.instagram.com/the_miracle_aligner/ Big thanks to @stantough for providing me with the Instrumentals. Please go check out his channel : https://www.youtube.com/user/stantough As always, Big shoutout to @ABAlphaBeta for all the invaluable assistance with this endeavor. Check out his channel too, you just end up finding some good shit on it XD : https://www.youtube.com/channel/UCoDe_IIpA8fI8ENpIWWOEdQ The background for the video is a painting called "The Sacking Of Rome" by Joseph-Noël Sylvestre, 1890. As always, Thank you so much from the bottom of my heart for all the kind words of love and appreciation folks. Ya'll always leave some dank n' spicy comments on every video XD keep it going please. Also, apologies if I am failing my usual reading and hearting all of your comments, It has been getting really hard to keep up with the massive influx of comments lately and I will try my best to keep doing so :) Also here be the lyrics, Courtesy of AB : Salvé, salvé, salvé, parve? Pará pílís, trahe amícós Perdere, fingere fruor Perlassus est et superbus Ó nón, cupídinem sció Sine lúce, angor minus Oblectáte, nunc híc sumus Mé sentió aeger, stultus Oblectáte, nunc híc sumus Barbarus, albínus, culex et, mea libídó Hei! Hae, ha ha ha ha! Peior est bonitás meá Ipsó múnere beátus sum Noster globus semper fuit Et úsque ad fínem erit Et cúr sapere dédiscó Ita, ut rídére, putó Dúrum rébar, dúrum rérí O vah, bene, níl tantí Negátió! Negátió! Negátió! Negátió! Negátió! #nirvana #medieval #latin #bardcore #romanempire
https://wn.com/Smells_Like_Teen_Spirit_Cover_In_Classical_Latin_(75_Bc_To_3Rd_Century_Ad)_Bardcore_Medieval_Style
Spoken Roman Latin, from TV Show "Barbarians"
1:47

Spoken Roman Latin, from TV Show "Barbarians"

  • Order:
  • Duration: 1:47
  • Uploaded Date: 05 Nov 2020
  • views: 10250435
Spoken Roman Latin, from TV Show "Barbarians". Language of the Roman Empire.
https://wn.com/Spoken_Roman_Latin,_From_Tv_Show_Barbarians
Medieval Latin
3:35

Medieval Latin

  • Order:
  • Duration: 3:35
  • Uploaded Date: 05 Jul 2021
  • views: 1357
Latin language at the time of King Alfred
https://wn.com/Medieval_Latin
How to decipher medieval Latin abbreviations
11:16

How to decipher medieval Latin abbreviations

  • Order:
  • Duration: 11:16
  • Uploaded Date: 05 Nov 2020
  • views: 2616
Demonstration of online databases of medieval manuscript abbreviations: Enigma: http://enigma.huma-num.fr Cappelli: https://www.adfontes.uzh.ch/en/ressourcen/abkuerzungen/cappelli-online Cappelli scan: https://archive.org/details/lexiconabbreviat00capp Abbreviationes: https://abbreviationes.net/ Bodleian Library, MS Laud Misc. 250: https://digital.bodleian.ox.ac.uk/inquire/p/722768ec-9196-43c8-b628-e7d497a7b75a
https://wn.com/How_To_Decipher_Medieval_Latin_Abbreviations
All Star cover in Classical Latin (BARDCORE\Medieval Style) Original by Smash Mouth
3:42

All Star cover in Classical Latin (BARDCORE\Medieval Style) Original by Smash Mouth

  • Order:
  • Duration: 3:42
  • Uploaded Date: 03 Jul 2024
  • views: 427098
The real reason Hadrian built the wall was to stop Roman expansion as he knew he did not want anyone to trespass into somebody's SWAMP! This decision delayed the collapse of the Western Roman Empire by a few centuries. When I saw Shrek as a kid, I was totally blown away because I had never experienced something like it before, coupled with Smash Mouth's Allstar which made it all the more memorable and special. So yeah, wanted to do this song before all the Shrek fans die out haha. I'm back baby! Expect another bardcore soon. Will be doing more regular uploads now. Sorry for the long delays, It has been a rough year for me with many problems that required my attention and time. But I have triumphed over them and now will be dedicated to continuing with my work. Thank you so much for all the love and support folks and see ya on the next one. A big big shoutout to all the people who helped me with this cover, Daniele Tonelli for the translation and training. As always, a pleasure to be working with you, hope to see you back again on this channel soon. @stantough As always, for the amazing instrumentals, my covers would never sound as good without your sublime tunes :) Instrumentals : https://www.youtube.com/watch?v=meuhthypG6U tidestudioind for the amazing mixing and mastering, It has been a joy ever since I started using your services. If you want to get your music mixed and mastered by a master, I highly recommend his services on fiverr: https://www.fiverr.com/tidestudiolnd To Rakshit and Katha Ras Studios in New Delhi where I recorded the vocals of this song. And lastly, to my friend Dheeraj Basumatary for the really kickass art for this video, I hope to have you grace my channel again with your wonderful artworks. https://www.instagram.com/2cool4dheeraj/ Consider supporting the channel, I know what I do ain't much but its honest work ❤ : https://www.patreon.com/the_miracle_aligner?fan_landing=true Wanna follow and support me? https://open.spotify.com/artist/4y9XM0PsNhwYu6PmzpsjB5 https://music.apple.com/bm/artist/the-miracle-aligner/1534341495 https://paypal.me/jakholethaisii?country.x=CA&locale.x=en_US https://www.instagram.com/the_miracle_aligner/ Lyrics: Olim aliquis mi dixit, fati rapturi sunt me, non sum acutior gladius in harena. Me reiciebat sine verbo, statim pollice verso putares Caesarem in spectaculo. Anni veniunt et continuo veniunt, mores stringunt sed non impediunt, stultum non vivi ad delectandum prudentior fio, at ineptus vocandus. multa facienda, multa spectanda, ergo semitae sunt non vitandae. Non cognosces si non iveris, Non lucebis, si non nitueris. Hercle, tu es victor, i et accipe palmam, Hercle, es imperator, i et accipe triumphum. Omnia micantia aurum. Caudata sidera devertunt mala tempora. Frigidus locus et, aiunt, frigidior, es vinctus, eo peius, quo adultior, sed augures volunt differre: aiunt unam hirundinem facere ver. Ambulamus gelu tabescens, Mare incaluit, vide me natantem. Meus mundus fervet, qualis est tuus? Mi placet et id numquam fastidiam! Hercle, tu es victor, i et accipe palmam, Hercle, es imperator, i et accipe triumphum. Omnia micantia aurum. Caudata sidera devertunt mala tempora. Hercle, tu es victor, i et accipe palmam, Hercle, es imperator, i et accipe triumphum. Omnia micantia aurum. Caudata sidera… Olim aliquis caballum petivit qui esset firmum. “Ipse valde volo fugere hinc.” Dixi “Ego quoque! Volo firmum caballum ipse.” Animum et caelum muta, age! Anni veniunt et continuo veniunt, mores stringunt sed non impediunt, stultum non vivi ad delectandum prudentior fio, at ineptus vocandus. multa facienda, multa spectanda, ergo semitae sunt non vitandae. Non cognosces si non iveris, Non lucebis, si non nitueris. Hercle, tu es victor, i et accipe palmam, Hercle, es imperator, i et accipe triumphum. Omnia micantia aurum. Caudata sidera devertunt mala tempora. #bardcore #medieval #romanempire #shrek #allstar #smashmouth
https://wn.com/All_Star_Cover_In_Classical_Latin_(Bardcore\Medieval_Style)_Original_By_Smash_Mouth
Barbarians (2020) S1xE1 Latin subtitles-- Varus, Arminius, Metellus, Gernot
1:20

Barbarians (2020) S1xE1 Latin subtitles-- Varus, Arminius, Metellus, Gernot

  • Order:
  • Duration: 1:20
  • Uploaded Date: 27 Oct 2020
  • views: 850742
I DO NOT OWN ANY OF THIS MATERIAL. EDIT: (00:20) "tribum" should be "tribuum" (pl, gen for partitive genitive with "pars") This scene in Latin is from the first episode of the new Netflix original "Barbarians" or "Barbaren". Though I haven't found an official copy of the Latin script, I have added Latin captions by ear and slightly modified parts of the English subtitles provided by Netflix. My Latin captions may be incorrect in some places, so I have provided commentary below on the parts about which I was less sure. As a student and lover of Latin, this show's commitment to having the Romans speak Latin the whole way through is something I never thought I'd have the privilege to see and I am hoping desperately for a season 2. The writers' use of idiomatic language, the vocative for direct address (unlike almost every other show/movie trying to use Latin I've seen), and even the pronunciation of 'v' as 'w' are all immesely appreciated. Notes: - (1:03) though the audio sounds a bit like "intendagit", which wouldn't make much sense, I've guessed and captioned it "intenderit" (3rd, singular, futperf, ind, act), which works grammatically but may be stretching the meaning of "intendo" unless it's an idiom I don't know. They may have meant "intellegit" (3rd, singular, pres, ind, act), which is much closer in meaning and grammar to the original Netflix subtitle translation ("The tribes don't understand this."), but the audio sounds significantly more like inteND- than inteLL-. The English captions make the subject seem plural, but it sounds singular throughout. - (1:08) my choice of "omine" rather than a form of "omnis" may be contentious. I've taken "ab alio omine" (singular, neuter, ablative) as roughly "by any other token", which is not reflected in the English. What they translate as "a man cannot sentence another man to die" can be understood more literally as "the law (ius) forbids (vetat) that heads/lives (capita) be condemned (damnari) by another ____ (ab alio ___)." The inflected ending, to me, sounds quite clearly like -e, but for that final word to be a form of "omnis", it would have to be either "omni" to match "alio" or "omnia" to match "capita"-- "omne" is tempting because it matches "capita" in case and gender, but it doesn't match in number. "Omine" was my next best guess, and seems to work with the audio. - (1:17) I've punctuated "opu'st" to reflect that it's a prodelision of "opus est", an idiom which implies need/obligation and which typically takes the ablative. This makes sense with the ablative case of "eis experto". Credit to Dr Beppe Pezzini's paper "Contraction of EST in Latin" (Transactions of the Philolgical Society, vol. 109 no. 3, 2011, pp 327-343) for helping me figure out what was being said here.
https://wn.com/Barbarians_(2020)_S1Xe1_Latin_Subtitles_Varus,_Arminius,_Metellus,_Gernot
Latin word origin of "Secular"
0:58

Latin word origin of "Secular"

  • Order:
  • Duration: 0:58
  • Uploaded Date: 20 Nov 2024
  • views: 333
https://wn.com/Latin_Word_Origin_Of_Secular
Tenacious D - Tribute cover in Late Latin (3rd - 5th century A.D) Bardcore/Medieval style
4:41

Tenacious D - Tribute cover in Late Latin (3rd - 5th century A.D) Bardcore/Medieval style

  • Order:
  • Duration: 4:41
  • Uploaded Date: 19 Oct 2022
  • views: 689691
This is not the greatest cover in the world, It's only a tribute... to the greatest song in the world XD This was a really fun one to do, stay tuned for more upcoming releases in the coming week :) Take care and see ya'll on the next one folks. Original song by The D : https://www.youtube.com/watch?v=_lK4cX5xGiQ Consider supporting the channel, I know what I do ain't much but its honest work ❤ : https://www.patreon.com/the_miracle_aligner?fan_landing=true Wanna follow and support me? https://open.spotify.com/artist/4y9XM0PsNhwYu6PmzpsjB5 https://music.apple.com/bm/artist/the-miracle-aligner/1534341495 https://paypal.me/jakholethaisii?country.x=CA&locale.x=en_US https://www.instagram.com/the_miracle_aligner/ A big thanks to Memoramissa for carrying this video with all his hard work, check out the lyrics below, you can also find more of his Latin translations here: https://lyricstranslate.com/en/translator/memoramissa A very big shoutout to @DoctorHmm for the amazing instrumentals, It was really a pleasure working with you. Please go check out his channel for more BARDCORE bangers: https://www.youtube.com/watch?v=i00reL5yFMg And finally, my utmost gratitude to tidestudiolnd for the sublime mix and master of the track here, Go get your own tracks done from him, he's simply amazing :) https://www.fiverr.com/tidestudiolnd The images in the video were all AI generated: https://www.midjourney.com/home/ Here's are the lyrics courtesy of Memoramissa: hic est optimus cantus in cosmō laudēs jamprīdem ego et frater meus in viā longa iter fēcimus subitō effulsit daemon in viā mediā dum dīxit cantum optimum in cosmō mī dētis sunt negantēs jam ēsī ad meum fratrem spexī, ac spexit ad mē et dīximus certissimē et cecinimus rem qua imprīmis mentēs advenet forte nostrōs cantio optima in cosmō fuit cantio optima in cosmō oc’lōs meōs aspice, facile ‘st vīsū est sīc fātō, nōn rīsō, semel inde bis, ergo it postea bis terque semel in centum aut mīlle annōrum quum dat lūcem sōl ac lūna dat pernox tum viride crēscunt nīl attinet ut dīcam bestia erat stupīta submīsit ira ad modum ejus caudae rogāvit nōs ‘angelī, nōnnē?’ negāvimus ‘hominēs modo!’ nunc cosmī optimus cantus est non sed sīc laudās dāmus memorāmus optimum cantus haud sed laudās clāmāmus cosmī optimae cantiōnis cosmī optimus cantus fuit cantus optimus fuit esto optimus in ūniversō papae Lūciferō! amīcī, et sola res, qua plūrimē interest ā nōbīs cantātum hāc noctū fatī minimē sonuit huic cantuī simulter sīc laudās dāmus sī placet crēdātis ibi vōs fuisse volō sīc opīnārī possum ah, merda! dee, quam amanda, nostra res est, ā nemine standa ardēns flammae circus beātus hircus bene bene #tenaciousd #latin #medieval #bardcore
https://wn.com/Tenacious_D_Tribute_Cover_In_Late_Latin_(3Rd_5Th_Century_A.D)_Bardcore_Medieval_Style
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • This is What Latin ACTUALLY Sounded Like
    1:00
    This is What Latin ACTUALLY Sounded Likeremove from playlist
  • Smells Like Teen Spirit Cover In Classical Latin (75 BC to 3rd Century AD) Bardcore/Medieval style
    3:52
    Smells Like Teen Spirit Cover In Classical Latin (75 BC to 3rd Century AD) Bardcore/Medieval styleremove from playlist
  • Spoken Roman Latin, from TV Show
    1:47
    Spoken Roman Latin, from TV Show "Barbarians"remove from playlist
  • Medieval Latin
    3:35
    Medieval Latinremove from playlist
  • How to decipher medieval Latin abbreviations
    11:16
    How to decipher medieval Latin abbreviationsremove from playlist
  • All Star cover in Classical Latin (BARDCORE\Medieval Style) Original by Smash Mouth
    3:42
    All Star cover in Classical Latin (BARDCORE\Medieval Style) Original by Smash Mouthremove from playlist
  • Barbarians (2020) S1xE1 Latin subtitles-- Varus, Arminius, Metellus, Gernot
    1:20
    Barbarians (2020) S1xE1 Latin subtitles-- Varus, Arminius, Metellus, Gernotremove from playlist
  • Tenacious D - Tribute cover in Late Latin (3rd - 5th century A.D) Bardcore/Medieval style
    4:41
    Tenacious D - Tribute cover in Late Latin (3rd - 5th century A.D) Bardcore/Medieval styleremove from playlist
PLAYLIST TIME: 0:00 / 32:11

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/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
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
3:52
Smells Like Teen Spirit Cover In Classical Latin (75 BC to 3rd Century AD) Bardcore/Medieval style
R.I.P Kurtus Cobaenus 😢 (I think everyone knows but, XD) Link to the original by @nirvana...
published: 20 Jul 2020
Play in Full Screen
1:47
Spoken Roman Latin, from TV Show "Barbarians"
Spoken Roman Latin, from TV Show "Barbarians". Language of the Roman Empire.
published: 05 Nov 2020
Play in Full Screen
3:35
Medieval Latin
Latin language at the time of King Alfred
published: 05 Jul 2021
Play in Full Screen
11:16
How to decipher medieval Latin abbreviations
Demonstration of online databases of medieval manuscript abbreviations: Enigma: http://en...
published: 05 Nov 2020
Play in Full Screen
3:42
All Star cover in Classical Latin (BARDCORE\Medieval Style) Original by Smash Mouth
The real reason Hadrian built the wall was to stop Roman expansion as he knew he did not w...
published: 03 Jul 2024
Play in Full Screen
1:20
Barbarians (2020) S1xE1 Latin subtitles-- Varus, Arminius, Metellus, Gernot
I DO NOT OWN ANY OF THIS MATERIAL. EDIT: (00:20) "tribum" should be "tribuum" (pl, gen fo...
published: 27 Oct 2020
Play in Full Screen
0:58
Latin word origin of "Secular"
published: 20 Nov 2024
Play in Full Screen
4:41
Tenacious D - Tribute cover in Late Latin (3rd - 5th century A.D) Bardcore/Medieval style
This is not the greatest cover in the world, It's only a tribute... to the greatest song i...
published: 19 Oct 2022
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: medieval latin

Edit

Knights Of The Crusades is a busy, bloody, villainous grand strategy RTS

Rock, Paper, Shotgun 09 May 2025
A series of vicious medieval religious wars for control of the Holy Land, initiated by the Latin Christian Church following the conquest of Jerusalem by the Rashidun ...
Edit

Study finds surprising new link between lefties, autism and schizophrenia

New York Post 07 May 2025
Need a hand? ... Suriyawut – stock.adobe.com ... Julian Packheiser ... In fact, in Latin, the word “sinister” means left. Throughout medieval Europe, left-handed people were often associated with witchcraft, devil worship, or moral deviance ... ....
Edit

Conclave

Manila Bulletin 30 Apr 2025
In a related feature, the Swiss Guards are shown in their headquarters putting on their uniforms – of medieval design — preparing to go on duty. Conclave, from the Latin “con clavis,” with a key, means ...
Edit

What do medieval puzzles and the New York Times Connections have in common?

Alternet 27 Apr 2025
In fact, in early medieval England, around the year 1000, there was also a strong appetite for word puzzles designed to entertain (and trick) avid players ... Riddles were very popular in early medieval England.
Edit

JD Vance's SNL double makes bold statement about Pope's death | Daily Mail Online

The Daily Mail 25 Apr 2025
'It was my imposter syndrome ... Vance, meanwhile, defended the administration's America-first crackdown by citing a concept from medieval Catholic theology known in Latin as 'ordo amoris' - which he claimed delineates a hierarchy of care ... .
Edit

JD Vance's SNL double shocks The View panel with staggering claim about vice-president and the ...

The Daily Mail 25 Apr 2025
'It was my imposter syndrome ... Vance, meanwhile, defended the administration's America-first crackdown by citing a concept from medieval Catholic theology known in Latin as 'ordo amoris' - which he claimed delineates a hierarchy of care ... .
Edit

David M. Shribman | The Deep Questions for America

The Signal 22 Apr 2025
The word “university” grew out of a Latin phrase meaning “community of teachers and scholars,” and while such enclaves of learning have thrived since medieval times, the United States added two ...
Edit

Megyn Kelly launches blistering attack on the Pope just hours after his death | Daily ...

The Daily Mail 22 Apr 2025
'And Pope Francis didn't have to deal with that ... Vice President JD Vance, in turn, tried to defend the administration's crackdown by citing a concept from medieval Catholic theology known in Latin as 'ordo amoris.' ... Peter's Basilica as is tradition ... .
Edit

Pope Francis's last meeting with JD Vance | Daily Mail Online

The Daily Mail 21 Apr 2025
Francis made caring for migrants a hallmark of his papacy ... Peter´s Square ... Vance had defended the administration's America-first crackdown by citing a concept from medieval Catholic theology known in Latin as 'ordo amoris.' ... JD Vance. .
Edit

Pope Francis's final meeting: Awkward moment with JD Vance - after condemning Trump administration's treatment ...

The Daily Mail 21 Apr 2025
Francis made caring for migrants a hallmark of his papacy ... 'Thank you for seeing me.' ... Peter´s Square ... Vance had defended the administration's America-first crackdown by citing a concept from medieval Catholic theology known in Latin as 'ordo amoris.' ... .
Edit

JD Vance breaks silence following Pope Francis' death - just hours after awkward encounter | ...

The Daily Mail 21 Apr 2025
Pope Francis, the head of the Catholic church, died at the age of 88, the Vatican announced Monday ... Vance had defended the administration's America-first crackdown by citing a concept from medieval Catholic theology known in Latin as 'ordo amoris.' ... .
Edit

JD Vance breaks his silence after meeting with Pope Francis hours before his death | ...

The Daily Mail 21 Apr 2025
'I just learned of the passing of Pope Francis ... It was really quite beautiful. May God rest his soul.' ... Vance had defended the administration's America-first crackdown by citing a concept from medieval Catholic theology known in Latin as 'ordo amoris.'.
Edit

Mysterious reason JD Vance edited his emotional tribute to Pope Francis revealed | Daily Mail Online

The Daily Mail 21 Apr 2025
'I just learned of the passing of Pope Francis ... It was really quite beautiful. May God rest his soul.' ... Vance had defended the administration's America-first crackdown by citing a concept from medieval Catholic theology known in Latin as 'ordo amoris.'.
Edit

JD Vance visits the Vatican following remarkable papal rebuke over Trump's migrant crackdown

Chatanooga Times Free Press 20 Apr 2025
A Latin concept of love. Vance had defended the administration's America-first crackdown by citing a concept from medieval Catholic theology known in Latin as "ordo amoris." ... Peter's, a two-hour solemn commemoration featuring Latin and Italian readings.
Edit

Vatican notes 'exchange of opinions' over migrants, prisoners in meeting with Vance

Manila Bulletin 20 Apr 2025
Vance had defended the administration’s America-first crackdown by citing a concept from medieval Catholic theology known in Latin as “ordo amoris.” He has said the concept delineates a hierarchy of ...
×