'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Podcasts:

  • The Crown | Charles Is Marrying Camilla

    The Queen announces to William and Harry that Charles intends to marry Camilla From Season 6 Episode 10 'Sleep, Dearie Sleep' - The Queen gives Charles the green light to wed Camilla. Tasked with planning her own funeral ahead of her 80th birthday, she faces an existential crisis. The Crown is Now Streaming on Netflix: https://bit.ly/WatchTheCrownonNetflix Subscribe to SPTV: https://bit.ly/SPTVsubscribe FOLLOW SONY PICTURES TELEVISION SPTV Facebook: https://www.facebook.com/SonyPicturesTV SPTV Twitter: https://twitter.com/SPTV SPTV Instagram: https://www.instagram.com/sptv/ SPTV: https://www.sonypictures.com/tv/ The British Empire is in decline, the political world is in disarray, and a young woman takes the throne... a new era is dawning. Queen Elizabeth II is a 25-year-old newlywed...

    published: 02 Oct 2024
  • The Crown | Official Trailer | Netflix

    At a time when Britain was recovering from war and her empire was in decline, a young woman took the throne as a matter of duty not desire. Prepare for a world full of intrigue and revelations in The Crown. Now Streaming on Netflix. Watch The Crown Now: https://www.netflix.com/title/80025678 SUBSCRIBE: http://bit.ly/29qBUt7 About Netflix: Netflix is the world's leading internet entertainment service with 130 million memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without commercials or commitments. Connect with Netflix Online: Visit Netflix WEBSITE: http://nflx....

    published: 27 Sep 2016
  • The Crown Season 4 | Official Trailer | Netflix

    Bend. Or Break. As the 1970s are drawing to a close, Queen Elizabeth (Olivia Colman) and her family find themselves preoccupied with safeguarding the line of succession by securing an appropriate bride for Prince Charles (Josh O’Connor), who is still unmarried at 30. As the nation begins to feel the impact of divisive policies introduced by Britain's first female Prime Minister Margaret Thatcher (Gillian Anderson), tensions arise between her and the Queen which only grow worse as Thatcher leads the country into the Falklands War, generating conflict within the Commonwealth. While Charles’ romance with a young Lady Diana Spencer (Emma Corrin) provides a much-needed fairytale to unite the British people, behind closed doors, the Royal family is becoming increasingly divided. Season Four of...

    published: 29 Oct 2020
  • "I Care About Her!" Prince Charles and Princess Diana’s Explosive Fight Scene | The Crown

    The exact moment Josh O’Connor and Emma Corrin broke our collective hearts in Season 4, Episode 10 of The Crown. ➡️SUBSCRIBE FOR MORE: http://bit.ly/29kBByr About Netflix: Netflix is the world's leading streaming entertainment service with 204 million paid memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without adverts or commitments. Find Netflix UK on: ➡️TWITTER: http://bit.ly/29lYvcs ➡️INSTAGRAM: http://bit.ly/29slD8O ➡️FACEBOOK: http://bit.ly/29mx00a Or visit the Netflix WEBSITE: http://nflx.it/29BcWb5 "I Care About Her!" Prince Charles and Princess Diana’s...

    published: 16 Feb 2021
  • Queen Discovers Uncles Bloody Bond With The Führer | The Crown (Claire Foy)

    With the discovery of a World War II document, The Queen (Claire Foy) is informed of some harsh realities about her uncle's close relationship with a monster, the German Dictator. 🔎The Crown Season 2, Episode 6 'Vergangenheit' Watch The Crown Now: http://AAN.SonyPictures.com/TheCrown Some of the links in above are affiliate links, we may earn a small commission if you click through and make a purchase. 🎬The Crown (2016–2023): Follows the political rivalries and romance of Queen Elizabeth II's reign and the events that shaped the second half of the 20th century. 📩 https://www.youtube.com/channel/UCDAR-XTd8-6c1M-n1IsVA3g/?sub_confirmation=1 #TheCrown #ClaireFoy #Germany

    published: 23 Jul 2024
  • Prince Charles learns of the Death of Diana - The Crown Season 6 - (4K)

    The Queen, Prince Charles and Prince Philip are told the news that Princess Diana has died in a car accident in Paris. Scene from Netflix's "The Crown" (604)

    published: 16 Nov 2023
  • The Crown | Diana Dons The 'Revenge Dress'

    Enraged by Charles' interview, Diana takes revenge in her own way, with her iconic black dress! The Crown From Season 5 Episode 5 'The Way Ahead' - Faced with the fallout of an intercepted call with Camilla and the consequent kickback to his marriage, Prince Charles must navigate a scandal. The Crown is Now Streaming on Netflix: https://bit.ly/WatchTheCrownonNetflix Subscribe to SPTV: https://bit.ly/SPTVsubscribe FOLLOW SONY PICTURES TELEVISION SPTV Facebook: https://www.facebook.com/SonyPicturesTV SPTV Twitter: https://twitter.com/SPTV SPTV Instagram: https://www.instagram.com/sptv/ SPTV: https://www.sonypictures.com/tv/ The British Empire is in decline, the political world is in disarray, and a young woman takes the throne... a new era is dawning. Queen Elizabeth II is a 25-year-old...

    published: 14 Jun 2024
  • Tie The Crown and Diamond Knot Like a PRO in 5 Minutes

    Learn how to tie the Crown and Diamond knot like a pro in just 5 minutes! This decorative knot from the Ashley Book of Knots (#784) is perfect for DIY projects and lanyards. How to tie a Diamond Knot. https://youtu.be/-LIHvRVg6NA All Products and Gear used to make this video (Amazon links) Paracord Planet Tool with fids https://amzn.to/3AR5sjR Black Paracord https://amzn.to/3AWcunB Yellow Paracord https://amzn.to/3XA7BJR Camera Sony z v e 10 https://amzn.to/3Jo9eDq Microphone Rode Videomic go 2 https://amzn.to/3XoPO6s Tripod https://amzn.to/3vqaXOY Lights https://amzn.to/3FuNAf3 Try Audible for free! https://amzn.to/3r6HNr7 Find Me! Facebook https://www.facebook.com/profile.php?id=100033776182026 Instagram https://www.instagram.com/getknottedparacord/ Question -Do you struggle ...

    published: 26 Jan 2025
  • The Crown: Season 6 | Part 1 Trailer | Netflix

    The final chapter begins November 16th. Inspired by real events, this fictional dramatisation tells the story of Queen Elizabeth II and the political and personal events that shaped her reign. Seasons 1-5 now streaming, only on Netflix: https://www.netflix.com/thecrown SUBSCRIBE: http://bit.ly/29qBUt7 About Netflix: Netflix is one of the world's leading entertainment services with over 247 million paid memberships in over 190 countries enjoying TV series, films and games across a wide variety of genres and languages. Members can play, pause and resume watching as much as they want, anytime, anywhere, and can change their plans at any time. The Crown: Season 6 | Part 1 Trailer | Netflix https://www.youtube.com/@Netflix The Windsors face a reckoning as Diana, no longer a member of the r...

    published: 26 Oct 2023
The Crown | Charles Is Marrying Camilla
2:55

The Crown | Charles Is Marrying Camilla

  • Order:
  • Duration: 2:55
  • Uploaded Date: 02 Oct 2024
  • views: 511430
The Queen announces to William and Harry that Charles intends to marry Camilla From Season 6 Episode 10 'Sleep, Dearie Sleep' - The Queen gives Charles the green light to wed Camilla. Tasked with planning her own funeral ahead of her 80th birthday, she faces an existential crisis. The Crown is Now Streaming on Netflix: https://bit.ly/WatchTheCrownonNetflix Subscribe to SPTV: https://bit.ly/SPTVsubscribe FOLLOW SONY PICTURES TELEVISION SPTV Facebook: https://www.facebook.com/SonyPicturesTV SPTV Twitter: https://twitter.com/SPTV SPTV Instagram: https://www.instagram.com/sptv/ SPTV: https://www.sonypictures.com/tv/ The British Empire is in decline, the political world is in disarray, and a young woman takes the throne... a new era is dawning. Queen Elizabeth II is a 25-year-old newlywed faced with the daunting prospect of leading the world’s most famous monarchy while forging a relationship with legendary Prime Minister Sir Winston Churchill. Golden Globe® winner for Best TV Drama Series, “The Crown,” created by Peter Morgan, explores the Queen’s private journey behind the public facade with daring frankness. #TheCrown #TheCrownClips #QueenElizabeth #ImeldaStaunton #PrinceWilliam #PrinceHarry The Crown | Charles Is Marrying Camilla https://www.youtube.com/c/SPTV
https://wn.com/The_Crown_|_Charles_Is_Marrying_Camilla
The Crown | Official Trailer | Netflix
2:53

The Crown | Official Trailer | Netflix

  • Order:
  • Duration: 2:53
  • Uploaded Date: 27 Sep 2016
  • views: 11489669
At a time when Britain was recovering from war and her empire was in decline, a young woman took the throne as a matter of duty not desire. Prepare for a world full of intrigue and revelations in The Crown. Now Streaming on Netflix. Watch The Crown Now: https://www.netflix.com/title/80025678 SUBSCRIBE: http://bit.ly/29qBUt7 About Netflix: Netflix is the world's leading internet entertainment service with 130 million memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without commercials or commitments. Connect with Netflix Online: Visit Netflix WEBSITE: http://nflx.it/29BcWb5 Like Netflix on FACEBOOK: http://bit.ly/29kkAtN Follow Netflix on TWITTER: http://bit.ly/29gswqd Follow Netflix on INSTAGRAM: http://bit.ly/29oO4UP Follow Netflix on TUMBLR: http://bit.ly/29kkemT Connect with The Crown Online: Follow The Crown on TWITTER: https://twitter.com/TheCrownNetflix The Crown | Official Trailer | Netflix http://youtube.com/netflix This drama follows the political rivalries and romance of Queen Elizabeth II's reign and the events that shaped the second half of the 20th century.
https://wn.com/The_Crown_|_Official_Trailer_|_Netflix
The Crown Season 4 | Official Trailer | Netflix
2:42

The Crown Season 4 | Official Trailer | Netflix

  • Order:
  • Duration: 2:42
  • Uploaded Date: 29 Oct 2020
  • views: 6806994
Bend. Or Break. As the 1970s are drawing to a close, Queen Elizabeth (Olivia Colman) and her family find themselves preoccupied with safeguarding the line of succession by securing an appropriate bride for Prince Charles (Josh O’Connor), who is still unmarried at 30. As the nation begins to feel the impact of divisive policies introduced by Britain's first female Prime Minister Margaret Thatcher (Gillian Anderson), tensions arise between her and the Queen which only grow worse as Thatcher leads the country into the Falklands War, generating conflict within the Commonwealth. While Charles’ romance with a young Lady Diana Spencer (Emma Corrin) provides a much-needed fairytale to unite the British people, behind closed doors, the Royal family is becoming increasingly divided. Season Four of The Crown. November 15. SUBSCRIBE: http://bit.ly/29qBUt7 About Netflix: Netflix is the world's leading streaming entertainment service with over 195 million paid memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without commercials or commitments. The Crown Season 4 | Official Trailer | Netflix https://youtube.com/Netflix In the 1980s, Elizabeth clashes with Prime Minister Margaret Thatcher while Prince Charles enters a tumultuous marriage with Lady Diana Spencer.
https://wn.com/The_Crown_Season_4_|_Official_Trailer_|_Netflix
"I Care About Her!" Prince Charles and Princess Diana’s Explosive Fight Scene | The Crown
3:16

"I Care About Her!" Prince Charles and Princess Diana’s Explosive Fight Scene | The Crown

  • Order:
  • Duration: 3:16
  • Uploaded Date: 16 Feb 2021
  • views: 6790356
The exact moment Josh O’Connor and Emma Corrin broke our collective hearts in Season 4, Episode 10 of The Crown. ➡️SUBSCRIBE FOR MORE: http://bit.ly/29kBByr About Netflix: Netflix is the world's leading streaming entertainment service with 204 million paid memberships in over 190 countries enjoying TV series, documentaries and feature films across a wide variety of genres and languages. Members can watch as much as they want, anytime, anywhere, on any internet-connected screen. Members can play, pause and resume watching, all without adverts or commitments. Find Netflix UK on: ➡️TWITTER: http://bit.ly/29lYvcs ➡️INSTAGRAM: http://bit.ly/29slD8O ➡️FACEBOOK: http://bit.ly/29mx00a Or visit the Netflix WEBSITE: http://nflx.it/29BcWb5 "I Care About Her!" Prince Charles and Princess Diana’s Explosive Fight Scene | The Crown https://youtube.com/NetflixUK In the 1980s, Elizabeth clashes with Prime Minister Margaret Thatcher while Prince Charles enters a tumultuous marriage with Lady Diana Spencer.
https://wn.com/I_Care_About_Her_Prince_Charles_And_Princess_Diana’S_Explosive_Fight_Scene_|_The_Crown
Queen Discovers Uncles Bloody Bond With The Führer | The Crown (Claire Foy)
3:42

Queen Discovers Uncles Bloody Bond With The Führer | The Crown (Claire Foy)

  • Order:
  • Duration: 3:42
  • Uploaded Date: 23 Jul 2024
  • views: 1045437
With the discovery of a World War II document, The Queen (Claire Foy) is informed of some harsh realities about her uncle's close relationship with a monster, the German Dictator. 🔎The Crown Season 2, Episode 6 'Vergangenheit' Watch The Crown Now: http://AAN.SonyPictures.com/TheCrown Some of the links in above are affiliate links, we may earn a small commission if you click through and make a purchase. 🎬The Crown (2016–2023): Follows the political rivalries and romance of Queen Elizabeth II's reign and the events that shaped the second half of the 20th century. 📩 https://www.youtube.com/channel/UCDAR-XTd8-6c1M-n1IsVA3g/?sub_confirmation=1 #TheCrown #ClaireFoy #Germany
https://wn.com/Queen_Discovers_Uncles_Bloody_Bond_With_The_Führer_|_The_Crown_(Claire_Foy)
Prince Charles learns of the Death of Diana - The Crown Season 6 - (4K)
2:08

Prince Charles learns of the Death of Diana - The Crown Season 6 - (4K)

  • Order:
  • Duration: 2:08
  • Uploaded Date: 16 Nov 2023
  • views: 1627959
The Queen, Prince Charles and Prince Philip are told the news that Princess Diana has died in a car accident in Paris. Scene from Netflix's "The Crown" (604)
https://wn.com/Prince_Charles_Learns_Of_The_Death_Of_Diana_The_Crown_Season_6_(4K)
The Crown | Diana Dons The 'Revenge Dress'
4:38

The Crown | Diana Dons The 'Revenge Dress'

  • Order:
  • Duration: 4:38
  • Uploaded Date: 14 Jun 2024
  • views: 425610
Enraged by Charles' interview, Diana takes revenge in her own way, with her iconic black dress! The Crown From Season 5 Episode 5 'The Way Ahead' - Faced with the fallout of an intercepted call with Camilla and the consequent kickback to his marriage, Prince Charles must navigate a scandal. The Crown is Now Streaming on Netflix: https://bit.ly/WatchTheCrownonNetflix Subscribe to SPTV: https://bit.ly/SPTVsubscribe FOLLOW SONY PICTURES TELEVISION SPTV Facebook: https://www.facebook.com/SonyPicturesTV SPTV Twitter: https://twitter.com/SPTV SPTV Instagram: https://www.instagram.com/sptv/ SPTV: https://www.sonypictures.com/tv/ The British Empire is in decline, the political world is in disarray, and a young woman takes the throne... a new era is dawning. Queen Elizabeth II is a 25-year-old newlywed faced with the daunting prospect of leading the world’s most famous monarchy while forging a relationship with legendary Prime Minister Sir Winston Churchill. Golden Globe® winner for Best TV Drama Series, “The Crown,” created by Peter Morgan, explores the Queen’s private journey behind the public facade with daring frankness. #TheCrown #TheCrownClips #KingCharles #LadyDiana #DominicWest #ElizabethDebiki The Crown | Diana Dons The 'Revenge Dress' https://www.youtube.com/c/SPTV
https://wn.com/The_Crown_|_Diana_Dons_The_'Revenge_Dress'
Tie The Crown and Diamond Knot Like a PRO in 5 Minutes
2:30

Tie The Crown and Diamond Knot Like a PRO in 5 Minutes

  • Order:
  • Duration: 2:30
  • Uploaded Date: 26 Jan 2025
  • views: 294
Learn how to tie the Crown and Diamond knot like a pro in just 5 minutes! This decorative knot from the Ashley Book of Knots (#784) is perfect for DIY projects and lanyards. How to tie a Diamond Knot. https://youtu.be/-LIHvRVg6NA All Products and Gear used to make this video (Amazon links) Paracord Planet Tool with fids https://amzn.to/3AR5sjR Black Paracord https://amzn.to/3AWcunB Yellow Paracord https://amzn.to/3XA7BJR Camera Sony z v e 10 https://amzn.to/3Jo9eDq Microphone Rode Videomic go 2 https://amzn.to/3XoPO6s Tripod https://amzn.to/3vqaXOY Lights https://amzn.to/3FuNAf3 Try Audible for free! https://amzn.to/3r6HNr7 Find Me! Facebook https://www.facebook.com/profile.php?id=100033776182026 Instagram https://www.instagram.com/getknottedparacord/ Question -Do you struggle making Monkeyfists? Share your woes in the comments Disclaimer: (This video is not sponsored. Some product links are affiliate links which means if you buy something we'll receive a small commission.) #paracord bracelet #northwinds #paracordtutorials #getknottedparacord About: This video shows how to make a Dog Bone Zipper Pull
https://wn.com/Tie_The_Crown_And_Diamond_Knot_Like_A_Pro_In_5_Minutes
The Crown: Season 6 | Part 1 Trailer | Netflix
2:23

The Crown: Season 6 | Part 1 Trailer | Netflix

  • Order:
  • Duration: 2:23
  • Uploaded Date: 26 Oct 2023
  • views: 5984993
The final chapter begins November 16th. Inspired by real events, this fictional dramatisation tells the story of Queen Elizabeth II and the political and personal events that shaped her reign. Seasons 1-5 now streaming, only on Netflix: https://www.netflix.com/thecrown SUBSCRIBE: http://bit.ly/29qBUt7 About Netflix: Netflix is one of the world's leading entertainment services with over 247 million paid memberships in over 190 countries enjoying TV series, films and games across a wide variety of genres and languages. Members can play, pause and resume watching as much as they want, anytime, anywhere, and can change their plans at any time. The Crown: Season 6 | Part 1 Trailer | Netflix https://www.youtube.com/@Netflix The Windsors face a reckoning as Diana, no longer a member of the royal family, continues to captivate the public in the weeks before her tragic death.
https://wn.com/The_Crown_Season_6_|_Part_1_Trailer_|_Netflix
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • The Crown | Charles Is Marrying Camilla
    2:55
    The Crown | Charles Is Marrying Camillaremove from playlist
  • The Crown | Official Trailer | Netflix
    2:53
    The Crown | Official Trailer | Netflixremove from playlist
  • The Crown Season 4 | Official Trailer | Netflix
    2:42
    The Crown Season 4 | Official Trailer | Netflixremove from playlist
  • 3:16
    "I Care About Her!" Prince Charles and Princess Diana’s Explosive Fight Scene | The Crownremove from playlist
  • Queen Discovers Uncles Bloody Bond With The Führer | The Crown (Claire Foy)
    3:42
    Queen Discovers Uncles Bloody Bond With The Führer | The Crown (Claire Foy)remove from playlist
  • Prince Charles learns of the Death of Diana - The Crown Season 6 - (4K)
    2:08
    Prince Charles learns of the Death of Diana - The Crown Season 6 - (4K)remove from playlist
  • The Crown | Diana Dons The 'Revenge Dress'
    4:38
    The Crown | Diana Dons The 'Revenge Dress'remove from playlist
  • Tie The Crown and Diamond Knot Like a PRO in 5 Minutes
    2:30
    Tie The Crown and Diamond Knot Like a PRO in 5 Minutesremove from playlist
  • The Crown: Season 6 | Part 1 Trailer | Netflix
    2:23
    The Crown: Season 6 | Part 1 Trailer | Netflixremove from playlist
PLAYLIST TIME:

The Crown | Charles Is Marrying Camilla

The Queen announces to William and Harry that Charles intends to marry Camilla From Season 6 Episode 10 'Sleep, Dearie Sleep' - The Queen gives Charles the green light to wed Camilla. Tasked with planning her own funeral ahead of her 80th birthday, she faces an existential crisis. The Crown is Now Streaming on Netflix: https://bit.ly/WatchTheCrownonNetflix Subscribe to SPTV: https://bit.ly/SPTVsubscribe FOLLOW SONY PICTURES TELEVISION SPTV Facebook: https://www.facebook.com/SonyPicturesTV SPTV Twitter: https://twitter.com/SPTV SPTV Instagram: https://www.instagram.com/sptv/ SPTV: https://www.sonypictures.com/tv/ The British Empire is in decline, the political world is in disarray, and a young woman takes the throne... a new era is dawning. Queen Elizabeth II is a 25-year-old newlywed faced with the daunting prospect of leading the world’s most famous monarchy while forging a relationship with legendary Prime Minister Sir Winston Churchill. Golden Globe® winner for Best TV Drama Series, “The Crown,” created by Peter Morgan, explores the Queen’s private journey behind the public facade with daring frankness. #TheCrown #TheCrownClips #QueenElizabeth #ImeldaStaunton #PrinceWilliam #PrinceHarry The Crown | Charles Is Marrying Camilla https://www.youtube.com/c/SPTV
2:55
The Crown | Charles Is Marrying Camilla
The Queen announces to William and Harry that Charles intends to marry Camilla From Seas...
published: 02 Oct 2024
Play in Full Screen
2:53
The Crown | Official Trailer | Netflix
At a time when Britain was recovering from war and her empire was in decline, a young woma...
published: 27 Sep 2016
Play in Full Screen
2:42
The Crown Season 4 | Official Trailer | Netflix
Bend. Or Break. As the 1970s are drawing to a close, Queen Elizabeth (Olivia Colman) and ...
published: 29 Oct 2020
Play in Full Screen
3:16
"I Care About Her!" Prince Charles and Princess Diana’s Explosive Fight Scene | The Crown
The exact moment Josh O’Connor and Emma Corrin broke our collective hearts in Season 4, Ep...
published: 16 Feb 2021
Play in Full Screen
3:42
Queen Discovers Uncles Bloody Bond With The Führer | The Crown (Claire Foy)
With the discovery of a World War II document, The Queen (Claire Foy) is informed of some ...
published: 23 Jul 2024
Play in Full Screen
2:08
Prince Charles learns of the Death of Diana - The Crown Season 6 - (4K)
The Queen, Prince Charles and Prince Philip are told the news that Princess Diana has died...
published: 16 Nov 2023
Play in Full Screen
4:38
The Crown | Diana Dons The 'Revenge Dress'
Enraged by Charles' interview, Diana takes revenge in her own way, with her iconic black d...
published: 14 Jun 2024
Play in Full Screen
2:30
Tie The Crown and Diamond Knot Like a PRO in 5 Minutes
Learn how to tie the Crown and Diamond knot like a pro in just 5 minutes! This decorative ...
published: 26 Jan 2025
Play in Full Screen
2:23
The Crown: Season 6 | Part 1 Trailer | Netflix
The final chapter begins November 16th. Inspired by real events, this fictional dramatisa...
published: 26 Oct 2023
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: the crown

Edit

Lady Rangers AAU Team Captures the Crown at Kingdom Invitational

The Newport Daily Express 07 May 2025
The Lake Region Lady Rangers high school AAU team finished the Kingdom Invitational #2 tournament over the weekend in first place after beating all the teams in their division, girls 9/10. The team also competes at the varsity level in ....
Edit

Chapeau! Hats Were The Crowning Glory Of The 2025 Met Gala Looks

Vogue 06 May 2025
The crowning glory of a number of these looks, however, was to be found in the accessories, with attendees from Rihanna and Zendaya to Kim Kardashian and Jodie Turner-Smith collectively reviving the ...
Edit

Australia's Fake Democracy: Run and Controlled by the UN and the 'Crown' (Just like Canada)

Bitchute 04 May 2025
Go to the source via the article link to view the video or click the video icon ....
Edit

Canelo Alvarez may still be the face of boxing, but the crown no longer fits

Yahoo Daily News 04 May 2025
... renowned for in the years when he was crowned the “face” of boxing.Advertisement ... Perhaps a lack of potential successors is why "Canelo" still holds the crown, despite it no longer fitting.
Edit

'The jewel in the crown of Portobello': building featured in Paddington films for sale for £4.5m

London Evening Standard 03 May 2025
The property, with its distinctive red façade, starred as Mr Gruber’s antiques shop in the Paddington films ... .
Edit

Billionaire star of ‘Race For The Crown’ has Kentucky Derby dream dashed again

The Mirror 02 May 2025
Mike Repole’s challenger Grande was scratched by vets on Friday, the same fate which befell previous big hopes Forte and Uncle Mo just before the big race ... .
Edit

MUPH 2025: Ahtisa Manalo one step closer to the crown after dramatic fall

The Philadelphia Inquirer 02 May 2025
Ahtisa Manalo of Quezon Province defied odds as she secured one of the spots in the Top 6 of the competition during the ...
Edit

Tom Mayenknecht: Women's sports and the Whitecaps wearing the crowns this week

Toronto Sun 02 May 2025
Bulls of the week ... It was another solid week for the rise of women’s professional sports, with the Professional Women’s Hockey League (PWHL) confirming Seattle would be its eighth franchise ... The next issue of Your Midday Sun will soon be in your inbox.
×