- published: 05 May 2021
- views: 109852
'+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; })); }); -->
The Man in the Iron Mask (French: L'Homme au Masque de Fer) is a name given to a prisoner who was arrested as Eustache Dauger in 1669 or 1670 and held in a number of jails, including the Bastille and the Fortress of Pignerol (today Pinerolo, Italy). He was held in the custody of the same jailer, Bénigne Dauvergne de Saint-Mars, for a period of 34 years. He died on 19 November 1703 under the name of Marchioly, during the reign of Louis XIV of France (1643–1715). The possible identity of this man has been thoroughly discussed and has been the subject of many books, as no one ever saw his face because it was hidden by a mask of black velvet cloth.
Writer and philosopher Voltaire claimed (in the second edition of his Questions sur l'Encyclopédie, published in 1771) that the prisoner wore an iron mask and was the older, illegitimate brother of Louis XIV. In the late 1840s, writer Alexandre Dumas elaborated on the theme in the final installment of his Three Musketeers saga: here the prisoner is forced to wear an iron mask and is Louis XIV's identical twin. Dumas also presented a review of the ideas about the prisoner extant in his time (circa 1840) in the chapter "L'homme au masque de fer" of the sixth volume of his Crimes Célèbres.
Iron Mask is a neoclassical/power metal band formed in 2002 by Belgian guitarist Dushan Petrossi, also known from the symphonic metal band Magic Kingdom.
Petrossi signed with Lion Music in early 2002 to record a side project, Iron Mask. The band’s name and some songs of the first album were based on the book Man in the Iron Mask by Alexander Dumas. The album was titled Revenge Is My Name. Bass was recorded by Vassili Moltchanov (Magic Kingdom, Cryme), vocals were performed by Phil Letaw (Karyan, Cryme, Stormy Night), keyboards - by Youri De Groote.
In April 2005, Iron Mask had a different line up for the album Hordes of the Brave. The band inaugurated Goetz "Valhalla Jr" Mohr (Arrow, Hanz Damf, Rolf Munkes) as vocalist. Guest vocalist Oliver Hartmann (At Vance, Avantasia, Edguy, Aina, Magic Kingdom, Freedom Call, Helloween) added vocals to three tracks. The keyboardist Richard Andersson (Majestic, Time Requiem, Space Odyssey, Karmakanic, Evil Masquerade, Adagio, Silver Seraph) is responsible for all the keyboards solos on Hordes of the Brave.
Sahara with Michael Palin is a four-part BBC television series presented by British comedian and travel presenter Michael Palin, and first broadcast in 2002. In it, Palin travelled around the Sahara in Northern - and Western Africa, meeting people and visiting places. The journey route included the following countries and territories: Gibraltar, Morocco, Western Sahara, Mauritania, Senegal, Mali, Niger, Libya, Tunisia and Algeria.
These countries and the entire Sahara area are vast. For example, Algeria is four times the size of France or three times the size of Texas. The Sahara is roughly the same size as the United States, and the trip covered 10,000 miles (16,000 kilometres) and lasted three months.
A book by the same name written by Palin was published to accompany the series. This book contained both Palin's text and many pictures by Basil Pao, the stills photographer on the team. Basil Pao also produced a separate book of the photographs he took during the journey, Inside Sahara, a large coffee-table style book printed on glossy paper.
Sahara is a Bollywood film. It was released in 1943. The film is directed by Jagatrai Pesumal Advani for Vaswani Art productions. It had music composed by Gobind Ram. The film starred Renuka Devi, Narang, Pran, Meena Shorey and Sharda
Sahara is a 1983 British-American adventure drama film directed by Andrew McLaglen and starring Brooke Shields, Lambert Wilson, Horst Buchholz, John Rhys-Davies, and John Mills. The original music score was composed by Ennio Morricone.
The film's tagline is "She challenged the desert, its men, their passions and ignited a bold adventure."
The setting is in the year 1927. After her father dies, a young American heiress, Dale disguises herself as a man and takes the place of her father in an international car race through the Sahara. Dale is taken prisoner by Rasoul, but is rescued by Jaffar. However, more trouble awaits her before she can finish the race. Dale falls in love with Jaffar and marries him. Rasoul ends up dying in the end. She wins the race, becoming the first woman to win this international car race.
D'Artagnan and his fellow Musketeers plot to replace the ineffectual Louis XIV of France with his secretly imprisoned twin brother Phillipe, who is the firstborn and rightful King. Watch movies with my Facebook https://www.facebook.com/profile.php?id=100055813837269
The Man in the Iron Mask movie clips: http://j.mp/16Wj5Uf BUY THE MOVIE: http://j.mp/1b7zhtu Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: Philippe (Leonardo DiCaprio) is freed from the iron mask and touches his face again for the first time. FILM DESCRIPTION: This low-budget adaptation of Alexandre Dumas's classic novel was in direct competition with the lavish MGM production. It follows the story of the future king of France who is put into an iron mask while his younger twin is placed on the throne. CREDITS: TM & © MGM (1998) Cast: Gérard Depardieu, Leonardo DiCaprio, Jeremy Irons, John Malkovich Director: Randall Wallace Producers: Paul Hitchcock, Alan Ladd Jr., Randall Wallace, René Dupont, Russell Smith Screenwriters: Randall Wallace, Alexandre Dumas...
Subscribe to TRAILERS: http://bit.ly/sxaw6h Subscribe to COMING SOON: http://bit.ly/H2vZUn Subscribe to CLASSIC TRAILERS: http://bit.ly/1u43jDe Like us on FACEBOOK: http://goo.gl/dHs73 Follow us on TWITTER: http://bit.ly/1ghOWmt The Man in the Iron Mask Trailer - Directed by Randall Wallace and starring Leonardo DiCaprio, Leonardo DiCaprio, Jeremy Irons, John Malkovich, GÉrard Depardieu. Years have passed since the Three Musketeers, Aramis, Athos and Porthos, have fought together with their friend, D'Artagnan. But with the tyrannical King Louis using his power to wreak havoc in the kingdom while his twin brother, Philippe, remains imprisoned, the Musketeers reunite to abduct Louis and replace him with Philippe. MGM - 1998
In 1662, the Kingdom of France faces bankruptcy from King Louis XIV's wars against the Dutch Republic, which has left the country's agriculture impeded by a heavy tax burden and forced the citizens to live on rotten food. Though the country appears to be on the verge of a revolution, Louis continues to spend his time preparing for war and seducing countless women. The three musketeers have gone their separate ways; Aramis is now an aging priest, Porthos has become a philandering drunk, and Athos is retired and living with his only son, Raoul, who aspires to join the Musketeers. Only D'Artagnan has remained with the Musketeers, now serving as their Captain. At a festival, Aramis learns that the Jesuit order has declared Louis's wars unjust and the source of public hunger and outrage. Louis...
The Man in the Iron Mask movie clips: http://j.mp/16Wj5Uf BUY THE MOVIE: http://j.mp/1b7zhtu Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: The three musketeers and Phillipe (Leonardo DiCaprio) charge King Louis (Leonardo DiCaprio) and his soldiers. FILM DESCRIPTION: This low-budget adaptation of Alexandre Dumas's classic novel was in direct competition with the lavish MGM production. It follows the story of the future king of France who is put into an iron mask while his younger twin is placed on the throne. CREDITS: TM & © MGM (1998) Cast: Gabriel Byrne, Gérard Depardieu, Leonardo DiCaprio, Jeremy Irons, John Malkovich Director: Randall Wallace Producers: Paul Hitchcock, Alan Ladd Jr., Randall Wallace, René Dupont, Russell Smith Screenwriters: Randall Wal...
The Man in the Iron Mask movie clips: http://j.mp/16Wj5Uf BUY THE MOVIE: http://j.mp/1b7zhtu Don't miss the HOTTEST NEW TRAILERS: http://bit.ly/1u2y6pr CLIP DESCRIPTION: D'Artagnan (Gabriel Byrne) begs Louis (Leonardo DiCaprio) to have mercy on Phillipe (Leonardo DiCaprio), but he orders him back to the mask since Phillipe says that is what he despises most. FILM DESCRIPTION: This low-budget adaptation of Alexandre Dumas's classic novel was in direct competition with the lavish MGM production. It follows the story of the future king of France who is put into an iron mask while his younger twin is placed on the throne. CREDITS: TM & © MGM (1998) Cast: Gabriel Byrne, Leonardo DiCaprio, Anne Parillaud Director: Randall Wallace Producers: Paul Hitchcock, Alan Ladd Jr., Randall Wallace, René...
The Man in the Iron Mask (1998) / Человек в Железной Маске (Трейлер) Director: Randall Wallace Starring: Leonardo DiCaprio, Jeremy Irons, Gérard Depardieu and John Malkovich. The Man in the Iron Mask is a 1998 British/American historical action film directed, produced, and written by Randall Wallace. It uses characters from Alexandre Dumas' D'Artagnan Romances, and is very loosely adapted from some plot elements of The Vicomte de Bragelonne. It also bears several similarities with the 1939 film version. The movie centers on the aging Musketeers Athos, Porthos, Aramis and D'Artagnan and the reign of King Louis XIV of France. It attempts to explain the mystery of the Man in the Iron Mask, using a plot most similar to the 1939 film. Plot: The cruel King Louis XIV of France has a sec...
The former musketeer Athos swears vengeance after despotic King Louis causes the death of his son. Summoning his old comrades Porthos and Aramis, he hatches a plan to liberate a shackled prisoner rumored to be the king's twin brother, and then install him on the throne. But the three musketeers must also contend with their old friend D'Artagnan, who has remained in the king's service. More Recap Channels To Watch: https://linktr.ee/RecapChannels
The Man in the Iron Mask (French: L'Homme au Masque de Fer) is a name given to a prisoner who was arrested as Eustache Dauger in 1669 or 1670 and held in a number of jails, including the Bastille and the Fortress of Pignerol (today Pinerolo, Italy). He was held in the custody of the same jailer, Bénigne Dauvergne de Saint-Mars, for a period of 34 years. He died on 19 November 1703 under the name of Marchioly, during the reign of Louis XIV of France (1643–1715). The possible identity of this man has been thoroughly discussed and has been the subject of many books, as no one ever saw his face because it was hidden by a mask of black velvet cloth.
Writer and philosopher Voltaire claimed (in the second edition of his Questions sur l'Encyclopédie, published in 1771) that the prisoner wore an iron mask and was the older, illegitimate brother of Louis XIV. In the late 1840s, writer Alexandre Dumas elaborated on the theme in the final installment of his Three Musketeers saga: here the prisoner is forced to wear an iron mask and is Louis XIV's identical twin. Dumas also presented a review of the ideas about the prisoner extant in his time (circa 1840) in the chapter "L'homme au masque de fer" of the sixth volume of his Crimes Célèbres.
These are the tools at hand
and this is what you came for.
So rest your faith on some solemn note.
When I give up on you it's not me being callous.
Send me a letter, tell me how it's going.
Just stay the fuck away from me, until you reach some understanding,
I give up.
The first one is the worst one,
took all I thought I ever had.
Well, maybe it's supposed to hurt some, but I can face it knowing;
That after all this there will be some kind of prize to find,
but I'm not the man to chance it anymore.
I spent a lifetime being locked up in expectancy dreaming of truce.
Without these chains and iron mask to drag me down
through veils of bone and bloodline
I can see the lie
It's up to you now
completion of this
eyes staring blindly
back at nothing
So this is where it ends, your promises mean nothing.
I will leave you here to die.
Alone.