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

Anne Boleyn

Anne Boleyn (/ˈbʊlɪn/, /bəˈlɪn/ or /bʊˈlɪn/) (c. 1501 – 19 May 1536) was Queen of England from 1533 to 1536 as the second wife of King Henry VIII, and Marquess of Pembroke in her own right. Henry's marriage to Anne, and her subsequent execution by beheading, made her a key figure in the political and religious upheaval that was the start of the English Reformation. Anne was the daughter of Thomas Boleyn, 1st Earl of Wiltshire, and his wife, Lady Elizabeth Howard, and was educated in the Netherlands and France, largely as a maid of honour to Claude of France. She returned to England in early 1522, to marry her Irish cousin James Butler, 9th Earl of Ormond; the marriage plans were broken up by Cardinal Wolsey, and instead she secured a post at court as maid of honour to Henry VIII's wife, Catherine of Aragon.

Early in 1523 Anne was secretly betrothed to Henry Percy, son of the 5th Earl of Northumberland. In January 1524, Cardinal Wolsey broke the betrothal, Anne was sent back home to Hever Castle, and Percy was married to Lady Mary Talbot, to whom he had been betrothed since adolescence. In February/March 1526, Henry VIII began his pursuit of Anne. She resisted his attempts to seduce her, refusing to become his mistress – which her sister Mary had been. It soon became the one absorbing object of Henry's desires to annul his marriage to Queen Catherine so he would be free to marry Anne. When it became clear that Pope Clement VII would not annul the marriage, the breaking of the power of the Catholic Church in England began. In 1532, Henry granted Anne the Marquessate of Pembroke.

Anne Boleyn (play)

Anne Boleyn is a play on the life of Anne Boleyn by the English author Howard Brenton, which premiered at Shakespeare's Globe in 2010. Anne Boleyn is portrayed as a significant force in the political and religious in-fighting at court and a furtherer of the cause of Protestantism in her enthusiasm for the Tyndale Bible.

Production history

The play was commissioned by Shakespeare's Globe, and premiered at The Globe from 24 July to 21 August 2010 in a production directed by John Dove and with the title role played by Miranda Raison (also playing Boleyn in Shakespeare's Henry VIII in the same season). It was presented alongside the Globe's first season of Shakespeare's history plays, made up of Henry VIII, Henry IV Part 1 and Henry IV Part 2. The same production was revived in 2011 as part of the 400th anniversary celebrations of the King James Version, with most of the same cast.

The play was awarded Best New Play at the WhatsOnStage Theatregoers Choice Awards 2011.

In Spring 2012 the Globe's production was revived for a tour of England and Scotland, jointly produced by Shakespeare's Globe and English Touring Theatre and featuring many of the original cast although with Jo Herbert in the title role.

Cultural depictions of Anne Boleyn

Anne Boleyn, the second wife of King Henry VIII of England, has inspired or been mentioned in numerous artistic and cultural works. The following lists cover various media, enduring works of high art, and recent representations in popular culture, film and fiction. The entries represent portrayals that a reader has a reasonable chance of encountering, rather than a complete catalogue. Anne Boleyn was the second wife of Henry VIII and was the mother of Elizabeth I.

Portrayals

A common view in the 18th and 19th centuries was the image of Anne as a romantic victim; a strong-willed and beautiful woman who was destroyed by her husband, who was presented as a brutal tyrant by most popular historians. A 19th-century biography of Anne by Elizabeth Benger was particularly full of praise for Anne, as was one entitled Star of the Court by Selina Bunbury. Famous writers and novelists who subscribed to this view of Anne (which persisted into the 20th century) included Jane Austen, Agnes Strickland, Jean Plaidy and playwright Maxwell Anderson. The play and Oscar-winning movie Anne of the Thousand Days is inspired by this interpretation of Anne's life, as is Donizetti's opera Anna Bolena (from 1830). Various popular novels have also adopted this sympathetic idea of Anne Boleyn.

List of The Tudors characters

The following is a list of character from the Showtime television series The Tudors.

Characters

The main cast are listed in credits order.

Recurring

Notes

External links

  • The Tudors characters ~ Showtime
  • Anne Boleyn (disambiguation)

    Anne Boleyn (died 1536), was the second wife of Henry VIII of England.

    Anne Boleyn may also refer to:

  • Anne Boleyn in popular culture
  • Anne Shelton (courtier), née Anne Boleyn, aunt of Queen Anne Boleyn and mother of Mary Shelton, Henry VIII's mistress
  • Ann Boleyn (singer)
  • alternate title of Anna Boleyn (film), a 1920 production directed by Ernst Lubitsch
  • Anne Boleyn (play)
  • Anne Boleyn (The Tudors), character in The Tudors, based on the historical wife of Henry VIII
  • Podcasts:

    • Anne Boleyn Official Trailer | Streaming AMC+ Exclusively on Dec 9th

      Anne Boleyn (Jodie Turner-Smith) explores life from the eponymous Queen’s perspective, as she struggles to secure a future for her daughter and to challenge the powerful patriarchy closing in around her. Anne Boleyn premieres December 9 exclusively on AMC+. #AnneBoleyn #AMC #AMCPlus Subscribe to the AMC YouTube Channel : https://goo.gl/Tu5rSx Anne Boleyn Official Trailer AMC : http://www.amc.com/ AMC on Facebook : https://www.facebook.com/amc AMC on Twitter : http://twitter.com/AMC_TV Sign Up for the AMC Newsletter: https://www.amc.com/newsletter-subscription

      published: 17 Nov 2021
    • Dramatic Facts About The Life of Anne Boleyn

      You've likely heard tales of Anne Boleyn, the alluring woman who convinced King Henry VIII of England to give up his wife and child, break from the Catholic Church, and marry her. And she was the mother of one of the most renowned monarchs in British history, Elizabeth I. But there's a lot more to Anne than just her personal affairs, many of which were magnified or inaccurately portrayed by those with a political agenda after her death. So, who was Anne Boleyn really? #AnneBoleyn #BritishHistory #WeirdHistory

      published: 24 Apr 2020
    • Anne Boleyn - The Obsession of Henry VIII Documentary

      The first 1000 people to use the link will get a free trial of Skillshare Premium Membership: https://skl.sh/thepeopleprofiles04211 For early access to our videos, discounted merch and many other exclusive perks please support us as a Patron or Member... Patreon: http://www.patreon.com/thepeopleprofiles Buy me a Coffee: https://www.buymeacoffee.com/peopleprofiles YouTube Membership: https://www.youtube.com/channel/UCD6TPU-PvTMvqgzC_AM7_uA/join or follow us on Twitter! https://twitter.com/tpprofiles The script for this video has been checked with Plagiarism software and scored 3% on Grammarly and 4% on Scribbr. In academia, a score of below 15% is considered good or acceptable. All footage, images and music used in People Profiles Documentaries are sourced from free media websites or a...

      published: 28 Apr 2021
    • Anne Boleyn's Re-constructed Face Revealed, with History

      Shop prints & bookmarks: www.Etsy.com/shop/RoyaltyNow What did Anne Boleyn really look like? After Anne Boleyn’s death, her image was essentially erased from England. The palace walls which once held the initials, H and A, are struck. Her portraits are painted over or destroyed. What we have left of her image is through posthumous portraits - potential copies of copies of a lost original. We do have one agreed-upon contemporary image, and that is a portrait medal, referred to as the “Moost Happi” medal, that was struck during her lifetime, probably to celebrate her second pregnancy and the upcoming birth of a son. I’ll compare each postulated portrait of Anne to the coin throughout the video to see which match the best. Anne Boleyn’s body has never been officially exhumed. It was hast...

      published: 06 Jan 2022
    • The Execution Of Anne Boleyn | Henry & Anne | Timeline

      They are two of history’s most talked about figures, but how much do we really know about the ill-fated lovers? What were their real characters and motives? Why did one of them lose their head? And how did their actions change the course of history forever? Historian, author and Tudor-expert Dr Suzannah Lipscomb will retrace the couples’ steps by visiting the places that were important to them, where their romantic, political and tragic lives were played out, and meet people today who are hell bent on finding out the truth about the Tudor love affair that changed everything forever. It's like Netflix for history... Sign up to History Hit, the world's best history documentary service, at a huge discount using the code 'TIMELINE' ---ᐳ http://bit.ly/3a7ambu You can find more from us on: ...

      published: 17 Jun 2017
    • The Other Boleyn Girl (11/11) Movie CLIP - The Execution of Anne Boleyn (2008) HD

      The Other Boleyn Girl movie clips: http://j.mp/1JbaX7z BUY THE MOVIE: http://amzn.to/ru1clg Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: At the last moment, Mary (Scarlett Johansson) learns that her sister Anne (Natalie Portman) has not been granted clemency by the King. FILM DESCRIPTION: Adapted from author Philippa Gregory's historical novel of the same name, director Justin Chadwick's atmospheric period drama follows the fierce competition between sisters Mary (Scarlett Johansson) and Anne Boleyn (Natalie Portman) to win the affections of Tudor king Henry VIII (Eric Bana). Anne and Mary Boleyn are under pressure from their father and uncle to help maintain the family's rich legacy and ensure their further prosperity by winning the affections of none oth...

      published: 16 Jun 2011
    • Anne Boleyn - Unstoppable

      Song: Sia - Unstoppable Movie/TV series: The Tudors Coloring: Mine #fanvidfeed #thetudors #anneboleyn Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.

      published: 29 Oct 2016
    • The Fall of Anne Boleyn - Arrest 1/3 (History Documentary)

      Tracy Borman visits Greenwich to follow the course of events on the day Anne was arrested. She was watching a game of tennis when she received a message calling her before the Privy Council to face accusations of adultery. The programme examines documents revealing her poor standing at court, and why her miscarriage sealed her fate.

      published: 08 Dec 2021
    developed with YouTube
    Anne Boleyn Official Trailer | Streaming AMC+ Exclusively on Dec 9th
    1:06

    Anne Boleyn Official Trailer | Streaming AMC+ Exclusively on Dec 9th

    • Order:
    • Duration: 1:06
    • Uploaded Date: 17 Nov 2021
    • views: 269672
    Anne Boleyn (Jodie Turner-Smith) explores life from the eponymous Queen’s perspective, as she struggles to secure a future for her daughter and to challenge the powerful patriarchy closing in around her. Anne Boleyn premieres December 9 exclusively on AMC+. #AnneBoleyn #AMC #AMCPlus Subscribe to the AMC YouTube Channel : https://goo.gl/Tu5rSx Anne Boleyn Official Trailer AMC : http://www.amc.com/ AMC on Facebook : https://www.facebook.com/amc AMC on Twitter : http://twitter.com/AMC_TV Sign Up for the AMC Newsletter: https://www.amc.com/newsletter-subscription
    https://wn.com/Anne_Boleyn_Official_Trailer_|_Streaming_Amc_Exclusively_On_Dec_9Th
    Dramatic Facts About The Life of Anne Boleyn
    11:16

    Dramatic Facts About The Life of Anne Boleyn

    • Order:
    • Duration: 11:16
    • Uploaded Date: 24 Apr 2020
    • views: 2256696
    You've likely heard tales of Anne Boleyn, the alluring woman who convinced King Henry VIII of England to give up his wife and child, break from the Catholic Church, and marry her. And she was the mother of one of the most renowned monarchs in British history, Elizabeth I. But there's a lot more to Anne than just her personal affairs, many of which were magnified or inaccurately portrayed by those with a political agenda after her death. So, who was Anne Boleyn really? #AnneBoleyn #BritishHistory #WeirdHistory
    https://wn.com/Dramatic_Facts_About_The_Life_Of_Anne_Boleyn
    Anne Boleyn - The Obsession of Henry VIII Documentary
    54:06

    Anne Boleyn - The Obsession of Henry VIII Documentary

    • Order:
    • Duration: 54:06
    • Uploaded Date: 28 Apr 2021
    • views: 320942
    The first 1000 people to use the link will get a free trial of Skillshare Premium Membership: https://skl.sh/thepeopleprofiles04211 For early access to our videos, discounted merch and many other exclusive perks please support us as a Patron or Member... Patreon: http://www.patreon.com/thepeopleprofiles Buy me a Coffee: https://www.buymeacoffee.com/peopleprofiles YouTube Membership: https://www.youtube.com/channel/UCD6TPU-PvTMvqgzC_AM7_uA/join or follow us on Twitter! https://twitter.com/tpprofiles The script for this video has been checked with Plagiarism software and scored 3% on Grammarly and 4% on Scribbr. In academia, a score of below 15% is considered good or acceptable. All footage, images and music used in People Profiles Documentaries are sourced from free media websites or are purchased with commercial rights from online media archives. Attributions: "Evening Melodrama" Kevin MacLeod (incompetech.com) Licensed under Creative Commons: By Attribution 4.0 License http://creativecommons.org/licenses/by/4.0/ "This video was sponsored by Skillshare" #Biography #History #Documentary
    https://wn.com/Anne_Boleyn_The_Obsession_Of_Henry_Viii_Documentary
    Anne Boleyn's Re-constructed Face Revealed, with History
    20:55

    Anne Boleyn's Re-constructed Face Revealed, with History

    • Order:
    • Duration: 20:55
    • Uploaded Date: 06 Jan 2022
    • views: 1983250
    Shop prints & bookmarks: www.Etsy.com/shop/RoyaltyNow What did Anne Boleyn really look like? After Anne Boleyn’s death, her image was essentially erased from England. The palace walls which once held the initials, H and A, are struck. Her portraits are painted over or destroyed. What we have left of her image is through posthumous portraits - potential copies of copies of a lost original. We do have one agreed-upon contemporary image, and that is a portrait medal, referred to as the “Moost Happi” medal, that was struck during her lifetime, probably to celebrate her second pregnancy and the upcoming birth of a son. I’ll compare each postulated portrait of Anne to the coin throughout the video to see which match the best. Anne Boleyn’s body has never been officially exhumed. It was hastily buried at the chapel of St. Peter Ad Vincula, adjacent to the tower, in an old Elm box. Her exact burial spot, under the tiles of the chapel, is unknown. The bones were then examined by a Dr. Mouat. He confirmed that the skeleton was that of a woman between 25 and thirty, with a delicate frame. She was of slender proportions, with a small lower jaw. She also had particularly small vertebrae - Lending credence to the story that she had a “little Neck”, and small, tapered hands and feet. She was between five feet and five foot three. All of these findings match up with the physical descriptions we have of Anne, but there is a possibility the bones are not Anne’s but rather Lady Rochfords or Queen Catherine Howard’s, who were also buried hastily near the same spot. I've created two brand new portraits - one from the proposed Holbein Sketch, and another from her National Portrait Gallery image, which is thought by many to be potentially the most accurate. 0:00 Introduction 0:52 The Life of Anne Boleyn 11:11 What did Anne Boleyn look like? 12:51 The Body of Anne Boleyn 13:56 Portrait Comparisons - Which is the most accurate? 18:42 Recreation Reveals Find us here: Instagram: @Royalty_Now_ Tik Tok: @RoyaltyNow Etsy: Etsy.com/Shop/RoyaltyNow Patreon: Patreon.com/RoyaltyNow RoyaltyNowStudios.com This video creation and final image are ©Royalty Now. Sources and further reading: https://queenanneboleyn.com/2015/04/28/la-jeune-anne-boleyn-her-early-life-in-the-netherlands-and-france/ https://www.theanneboleynfiles.com/leonardo-da-vincis-boleyn/ https://englishhistory.net/tudor/anne-boleyn-physical-description/ https://onthetudortrail.com/Blog/anne-boleyn/anne-boleyns-appearance-demeanour/#:~:text=Anne%20Boleyn%20was%20rather%20tall,her%20right%20hand%2C%20six%20fingers. https://www.theanneboleynfiles.com/the-holbein-sketch-is-it-anne-boleyn/ theanneboleynfiles.com/anne-boleyn-portraits-which-is-the-true-face-of-anne-boleyn/ http://blogicarian.blogspot.com/2018/07/voices-of-early-english-thomas-wyatt-on.html The Life and Death of Anne Boleyn by Eric Ives https://onthetudortrail.com/Blog/2011/04/21/where-is-anne-boleyn-buried/ https://www.theguardian.com/science/2015/feb/16/anne-boleyn-portrait-found-using-facial-recognition-software
    https://wn.com/Anne_Boleyn's_Re_Constructed_Face_Revealed,_With_History
    The Execution Of Anne Boleyn | Henry & Anne | Timeline
    44:50

    The Execution Of Anne Boleyn | Henry & Anne | Timeline

    • Order:
    • Duration: 44:50
    • Uploaded Date: 17 Jun 2017
    • views: 2417458
    They are two of history’s most talked about figures, but how much do we really know about the ill-fated lovers? What were their real characters and motives? Why did one of them lose their head? And how did their actions change the course of history forever? Historian, author and Tudor-expert Dr Suzannah Lipscomb will retrace the couples’ steps by visiting the places that were important to them, where their romantic, political and tragic lives were played out, and meet people today who are hell bent on finding out the truth about the Tudor love affair that changed everything forever. It's like Netflix for history... Sign up to History Hit, the world's best history documentary service, at a huge discount using the code 'TIMELINE' ---ᐳ http://bit.ly/3a7ambu You can find more from us on: https://www.facebook.com/timelineWH https://www.instagram.com/timelineWH This channel is part of the History Hit Network. Any queries, please contact owned-enquiries@littledotstudios.com
    https://wn.com/The_Execution_Of_Anne_Boleyn_|_Henry_Anne_|_Timeline
    The Other Boleyn Girl (11/11) Movie CLIP - The Execution of Anne Boleyn (2008) HD
    2:33

    The Other Boleyn Girl (11/11) Movie CLIP - The Execution of Anne Boleyn (2008) HD

    • Order:
    • Duration: 2:33
    • Uploaded Date: 16 Jun 2011
    • views: 12214133
    The Other Boleyn Girl movie clips: http://j.mp/1JbaX7z BUY THE MOVIE: http://amzn.to/ru1clg Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: At the last moment, Mary (Scarlett Johansson) learns that her sister Anne (Natalie Portman) has not been granted clemency by the King. FILM DESCRIPTION: Adapted from author Philippa Gregory's historical novel of the same name, director Justin Chadwick's atmospheric period drama follows the fierce competition between sisters Mary (Scarlett Johansson) and Anne Boleyn (Natalie Portman) to win the affections of Tudor king Henry VIII (Eric Bana). Anne and Mary Boleyn are under pressure from their father and uncle to help maintain the family's rich legacy and ensure their further prosperity by winning the affections of none other than the king of England (Eric Bana). But life in the royal court is far different than it was in the countryside where these two sisters were raised, and before long their bid to earn the love of the king has transformed two once-happy sisters into bitter rivals. At first, it appears that Mary has triumphed in winning the king's favor by becoming his mistress and bearing him an illegitimate child. Despite her early success, however, Mary has underestimated just how clever and cunning her sibling can truly be. Not only does the relentless Anne manage to edge aside her sister in the eyes of King Henry, but she also succeeds in averting his gaze from his wife, Queen Catherine of Aragon, as well. Mary is driven by genuine affection for King Henry, while her sister Anne has only kept up the charade in a desperate bid to become the queen of England. Now, the growing chasm between two sisters is mirrored on a larger scale as England becomes divided more than ever before. As the consequences of their actions threaten to alter the course of an entire nation, these two sisters will ultimately discover that the only place they will find true strength and loyalty is in family, and that no matter what the consequences they will forever be bound by blood. CREDITS: TM & © Universal (2008) Cast: Natalie Portman, Scarlett Johansson, Eric Bana Director: Justin Chadwick Producers: Scott Rudin, David M. Thompson, Jane Robertson, Alison Owen, Faye Ward, Mark Cooper Screenwriters: Peter Morgan, Philippa Gregory WHO ARE WE? The MOVIECLIPS channel is the largest collection of licensed movie clips on the web. Here you will find unforgettable moments, scenes and lines from all your favorite films. Made by movie fans, for movie fans. SUBSCRIBE TO OUR MOVIE CHANNELS: MOVIECLIPS: http://bit.ly/1u2yaWd ComingSoon: http://bit.ly/1DVpgtR Indie & Film Festivals: http://bit.ly/1wbkfYg Hero Central: http://bit.ly/1AMUZwv Extras: http://bit.ly/1u431fr Classic Trailers: http://bit.ly/1u43jDe Pop-Up Trailers: http://bit.ly/1z7EtZR Movie News: http://bit.ly/1C3Ncd2 Movie Games: http://bit.ly/1ygDV13 Fandango: http://bit.ly/1Bl79ye Fandango FrontRunners: http://bit.ly/1CggQfC HIT US UP: Facebook: http://on.fb.me/1y8M8ax Twitter: http://bit.ly/1ghOWmt Pinterest: http://bit.ly/14wL9De Tumblr: http://bit.ly/1vUwhH7
    https://wn.com/The_Other_Boleyn_Girl_(11_11)_Movie_Clip_The_Execution_Of_Anne_Boleyn_(2008)_Hd
    Anne Boleyn - Unstoppable
    2:56

    Anne Boleyn - Unstoppable

    • Order:
    • Duration: 2:56
    • Uploaded Date: 29 Oct 2016
    • views: 4661914
    Song: Sia - Unstoppable Movie/TV series: The Tudors Coloring: Mine #fanvidfeed #thetudors #anneboleyn Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
    https://wn.com/Anne_Boleyn_Unstoppable
    The Fall of Anne Boleyn - Arrest 1/3 (History Documentary)
    45:09

    The Fall of Anne Boleyn - Arrest 1/3 (History Documentary)

    • Order:
    • Duration: 45:09
    • Uploaded Date: 08 Dec 2021
    • views: 9562
    Tracy Borman visits Greenwich to follow the course of events on the day Anne was arrested. She was watching a game of tennis when she received a message calling her before the Privy Council to face accusations of adultery. The programme examines documents revealing her poor standing at court, and why her miscarriage sealed her fate.
    https://wn.com/The_Fall_Of_Anne_Boleyn_Arrest_1_3_(History_Documentary)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Anne Boleyn Official Trailer | Streaming AMC+ Exclusively on Dec 9th
      1:06
      Anne Boleyn Official Trailer | Streaming AMC+ Exclusively on Dec 9thremove from playlist
    • Dramatic Facts About The Life of Anne Boleyn
      11:16
      Dramatic Facts About The Life of Anne Boleynremove from playlist
    • Anne Boleyn - The Obsession of Henry VIII Documentary
      54:06
      Anne Boleyn - The Obsession of Henry VIII Documentaryremove from playlist
    • Anne Boleyn's Re-constructed Face Revealed, with History
      20:55
      Anne Boleyn's Re-constructed Face Revealed, with Historyremove from playlist
    • The Execution Of Anne Boleyn | Henry & Anne | Timeline
      44:50
      The Execution Of Anne Boleyn | Henry & Anne | Timelineremove from playlist
    • The Other Boleyn Girl (11/11) Movie CLIP - The Execution of Anne Boleyn (2008) HD
      2:33
      The Other Boleyn Girl (11/11) Movie CLIP - The Execution of Anne Boleyn (2008) HDremove from playlist
    • Anne Boleyn - Unstoppable
      2:56
      Anne Boleyn - Unstoppableremove from playlist
    • The Fall of Anne Boleyn - Arrest 1/3 (History Documentary)
      45:09
      The Fall of Anne Boleyn - Arrest 1/3 (History Documentary)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Anne Boleyn Official Trailer | Streaming AMC+ Exclusively on Dec 9th

    Anne Boleyn (Jodie Turner-Smith) explores life from the eponymous Queen’s perspective, as she struggles to secure a future for her daughter and to challenge the powerful patriarchy closing in around her. Anne Boleyn premieres December 9 exclusively on AMC+. #AnneBoleyn #AMC #AMCPlus Subscribe to the AMC YouTube Channel : https://goo.gl/Tu5rSx Anne Boleyn Official Trailer AMC : http://www.amc.com/ AMC on Facebook : https://www.facebook.com/amc AMC on Twitter : http://twitter.com/AMC_TV Sign Up for the AMC Newsletter: https://www.amc.com/newsletter-subscription
    1:06
    Anne Boleyn Official Trailer | Streaming AMC+ Exclusively on Dec 9th
    Anne Boleyn (Jodie Turner-Smith) explores life from the eponymous Queen’s perspective, as ...
    published: 17 Nov 2021
    Play in Full Screen
    11:16
    Dramatic Facts About The Life of Anne Boleyn
    You've likely heard tales of Anne Boleyn, the alluring woman who convinced King Henry VIII...
    published: 24 Apr 2020
    Play in Full Screen
    54:06
    Anne Boleyn - The Obsession of Henry VIII Documentary
    The first 1000 people to use the link will get a free trial of Skillshare Premium Membersh...
    published: 28 Apr 2021
    Play in Full Screen
    20:55
    Anne Boleyn's Re-constructed Face Revealed, with History
    Shop prints & bookmarks: www.Etsy.com/shop/RoyaltyNow What did Anne Boleyn really look li...
    published: 06 Jan 2022
    Play in Full Screen
    44:50
    The Execution Of Anne Boleyn | Henry & Anne | Timeline
    They are two of history’s most talked about figures, but how much do we really know about ...
    published: 17 Jun 2017
    Play in Full Screen
    2:33
    The Other Boleyn Girl (11/11) Movie CLIP - The Execution of Anne Boleyn (2008) HD
    The Other Boleyn Girl movie clips: http://j.mp/1JbaX7z BUY THE MOVIE: http://amzn.to/ru1cl...
    published: 16 Jun 2011
    Play in Full Screen
    2:56
    Anne Boleyn - Unstoppable
    Song: Sia - Unstoppable Movie/TV series: The Tudors Coloring: Mine #fanvidfeed #thetudors...
    published: 29 Oct 2016
    Play in Full Screen
    45:09
    The Fall of Anne Boleyn - Arrest 1/3 (History Documentary)
    Tracy Borman visits Greenwich to follow the course of events on the day Anne was arrested....
    published: 08 Dec 2021
    Play in Full Screen

    Anne Boleyn

    Anne Boleyn (/ˈbʊlɪn/, /bəˈlɪn/ or /bʊˈlɪn/) (c. 1501 – 19 May 1536) was Queen of England from 1533 to 1536 as the second wife of King Henry VIII, and Marquess of Pembroke in her own right. Henry's marriage to Anne, and her subsequent execution by beheading, made her a key figure in the political and religious upheaval that was the start of the English Reformation. Anne was the daughter of Thomas Boleyn, 1st Earl of Wiltshire, and his wife, Lady Elizabeth Howard, and was educated in the Netherlands and France, largely as a maid of honour to Claude of France. She returned to England in early 1522, to marry her Irish cousin James Butler, 9th Earl of Ormond; the marriage plans were broken up by Cardinal Wolsey, and instead she secured a post at court as maid of honour to Henry VIII's wife, Catherine of Aragon.

    Early in 1523 Anne was secretly betrothed to Henry Percy, son of the 5th Earl of Northumberland. In January 1524, Cardinal Wolsey broke the betrothal, Anne was sent back home to Hever Castle, and Percy was married to Lady Mary Talbot, to whom he had been betrothed since adolescence. In February/March 1526, Henry VIII began his pursuit of Anne. She resisted his attempts to seduce her, refusing to become his mistress – which her sister Mary had been. It soon became the one absorbing object of Henry's desires to annul his marriage to Queen Catherine so he would be free to marry Anne. When it became clear that Pope Clement VII would not annul the marriage, the breaking of the power of the Catholic Church in England began. In 1532, Henry granted Anne the Marquessate of Pembroke.

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