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

Augustin Cranach

Augustin Cranach (1554 — 26 July 1595) was a German painter. He was born and died in Wittenberg, and was the son of Lucas Cranach the Younger and Magdalena Schurff. He was the father of Lucas Cranach III.

See also

  • List of German painters
  • References

  • Werner Schade: Die Malerfamilie Cranach. VEB Verlag der Kunst, Dresden 1974
  • External links

  • Media related to Augustin Cranach at Wikimedia Commons

  • Podcasts:

    • Cranach

      Cranach is a German-language surname. Notable people with the surname include: Augustin Cranach (1554–1595), German painter Hans Cranach (c. 1513–1537), German painter Lucas Cranach the Elder (c. 1472–1553), German artist Lucas Cranach the Younger (c. 1515–1586), German artist

      published: 07 Jul 2020
    • LUCAS CRANACH L'ANCIEN (1472-1553) – Une vie, une œuvre [2005]

      Par Luc Ponette et Viviane Noël. Émission diffusée sur France Culture le 02.01.2005. ------------------------------------------------------------------------------- Intervenants : - Elisabeth Foucart Walter : conservateur en chef au département des peintures au Louvre - Laurence Madeline : conservateur au musée Picasso de Paris - Patrick Bonte : écrivain, auteur de 'Les dernières hallucinations de Lucas Cranach l'Ancien' - Marc Deroo : ingénieur, auteur de 'Cranach' - Gilles Castelnau : pasteur ------------------------------------------------------------------------------- Peintre et graveur, l'un des plus illustres de la Renaissance germanique, Lucas Cranach a servi toute sa vie les princes de Saxe. Ami de Luther, il accueille les idées nouvelles de la Réforme. S'il contribue à l'élabora...

      published: 18 Mar 2018
    • The Legacy of St. Augustine: Myth, History & the Story of America's Oldest City

      J. Michael Francis discussed the Spanish founding of St. Augustine, Florida, and its long and varied cultural heritage. Speaker Biography: J. Michael Francis is professor of history at the University of South Florida at St. Petersburg. For transcript, captions, and more information, visit http://www.loc.gov/today/cyberlc/feature_wdesc.php?rec=7073

      published: 03 Feb 2016
    • EMSAR: SU VÍA DOLOROSA Y MIS SIETE PECADOS

      EXPOSICIÓN INDIVIDUAL Exoneradas de la historia, las figuras míticas sagradas mantienen su presencia en los diversos momentos de la humanidad que les rinde culto o, al menos, busca mantener en su imaginario las poderosas representaciones a que han dado origen dichos personajes. Para la cultura occidental, uno de esos íconos por excelencia es la figura de Jesucristo. Ubicado en ese impreciso espacio simbólico que es el inicio de la edad cristiana –históricamente fluctuante entre los años 7 a 4 antes de nuestra era–, el Yeshúa o Yeshú m-Natsaret hebreo (ישוע מנצרת) salió de la historia local para convertirse hacia el año 380 en el Jesucristo venerado por casi todo el imperio romano y, tres siglos más tarde, inclusive por la comunidad islámica como ‘Īsā ibn Maryam (Jesús el hijo de María). ...

      published: 03 Jul 2017
    • Lucas Cranach l'Ancien

      Peintre et graveur de la Renaissance allemande, Lucas Cranach l'Ancien a peint des œuvres à l'érotisme ambigu. Il a créé un type de jeune fille à la séduction étrange, aux formes sinueuses et allongées, à la tête ronde et aux yeux de chat, très éloigné des idéaux de son époque, ce dont témoignent les nombreux nus féminins sortis de son atelier. Ami intime de Martin Luther, le grand théologien de la Réforme, et acquis aux idées luthériennes, Lucas Cranach l'Ancien a largement participé à la création de l’iconographie protestante. Sources : Gérard-Julien Salvy - Cent énigmes de la peinture - Hazan Dictionnaire universel de la peinture - Le Robert Wikipedia the free encyclopedia Jean Mineraud - Les dessous du visible

      published: 03 Jul 2016
    • Art & Mind - Film Trailer - Amélie Ravalec

      Now in cinemas, DVD & Blu-Ray. Buy now via bit.ly/artminddvd Art & Mind is a journey into art, madness and the unconscious. An exploration of visionary artists and the creative impulse, from the Flemish Masters of the Renaissance to the avant-garde movement of Surrealism and the unsung geniuses of Art Brut and Outsider Art. Featuring hundreds of artworks including Hieronymus Bosch, Francisco Goya, Vincent Van Gogh, William Blake, Edvard Munch, Salvador Dali, Otto Dix, Pieter Bruegel, Henry Fuseli, Unica Zürn, Adolf Wölfli, André Breton, Carl Jung, Richard Dadd, Max Ernst, Henry Darger, Eugène Delacroix, George Widener, William Hogarth, Albrecht Dürer, Augustin Lesage, Théodore Géricault, Odilon Redon, Matthias Grünewald, Lucas Cranach, Leonora Carrington, William Kurelek, Antonin Artaud, ...

      published: 11 Mar 2019
    • Martin Luther - Karambolage - ARTE

      Nikola Obermann nous dresse le portrait de Martin Luther à la mode de Karambolage. auteure : Nikola Obermann réalisateurs : Christine Gensheimer, Timo Katz #MartinLuther #portrait #Eisleben #Erfurt #théologie #Wittenberg #31octobre #thèses #Wartburg #Lutherbibel #réforme #religion Abonnez-vous à la chaine Youtube d’ARTE Karambolage: https://www.youtube.com/channel/UCh5JF-qt2ZXg8acejcJ15Xw Retrouvez-nous sur les réseaux sociaux : Facebook : https://www.facebook.com/ARTEkarambolage Twitter : https://twitter.com/ARTEkarambolage

      published: 02 Nov 2017
    • Launch of the 'e-ilustrace'-Database (Veronika Sladká)

      https://e-ilustrace.cz/en/ Illuminating the Past: Czech Printed Images during the Reformation (c. 1450-1550) and the 'e-ilustrace' Database Unveiled A Presentation by Veronika Sladká at the Taylor Institution Library One hundred years before Martin Luther’s arrival, the Reformation had already established itself in Bohemia, resulting in a significant aversion towards sacred images. Nevertheless, bibliographical records suggest that around 6,000 printed images had been disseminated through books in Bohemia up to 1550. The lecture explores the fascinating journey of visual narratives in the earliest printed books produced in the Czech lands. The discussion sheds light on how the medium of illustration was employed within these texts, and how it evolved alongside the burgeoning Reformation m...

      published: 11 Nov 2023
    • How NOT to PAINT BABIES and HOW TO Paint them not CREEPY - Learning from the Masters SPECIAL

      Today, to celebrate the birth of my son, Augustin, I make a "Learning From the Masters" SPECIAL BABIES. We'll see how different rules applied at some point to paint babies, and how you can avoid making them look creepy and weird. We'll see two of the greatest painters for gracious, beautiful babies : Raphael and Bouguereau. Like and subscribe ! *** LEARN OIL PAINTING - A 5 HOURS VIDEO COURSE : https://www.florentfarges.com/the-practical-guide-to-oil-painting-techniques/ Direct link to download the course on Gumroad : https://gum.co/practicalguidetooilpainting Social media : Facebook : https://www.facebook.com/FlorentFargesArts/ Instagram : https://www.instagram.com/florentfarges.arts/ Support the channel on Tipeee : https://en.tipeee.com/florent-farges-arts If you want to co...

      published: 22 Jun 2019
    • Unser grosze Sünde (Arr. for Dobro)

      Provided to YouTube by Noël Akchoté Unser grosze Sünde (Arr. for Dobro) · Noël Akchoté · Thomas Stoltzer · Noël Akchoté · Noël Akchoté · Noël Akchoté Cranach (Arr. for Dobro) ℗ Noël Akchoté Downloads Released on: 2019-06-14 Auto-generated by YouTube.

      published: 13 Jun 2019
    developed with YouTube
    Cranach
    0:30

    Cranach

    • Order:
    • Duration: 0:30
    • Uploaded Date: 07 Jul 2020
    • views: 2
    Cranach is a German-language surname. Notable people with the surname include: Augustin Cranach (1554–1595), German painter Hans Cranach (c. 1513–1537), German painter Lucas Cranach the Elder (c. 1472–1553), German artist Lucas Cranach the Younger (c. 1515–1586), German artist
    https://wn.com/Cranach
    LUCAS CRANACH L'ANCIEN (1472-1553) – Une vie, une œuvre [2005]
    1:26:36

    LUCAS CRANACH L'ANCIEN (1472-1553) – Une vie, une œuvre [2005]

    • Order:
    • Duration: 1:26:36
    • Uploaded Date: 18 Mar 2018
    • views: 4236
    Par Luc Ponette et Viviane Noël. Émission diffusée sur France Culture le 02.01.2005. ------------------------------------------------------------------------------- Intervenants : - Elisabeth Foucart Walter : conservateur en chef au département des peintures au Louvre - Laurence Madeline : conservateur au musée Picasso de Paris - Patrick Bonte : écrivain, auteur de 'Les dernières hallucinations de Lucas Cranach l'Ancien' - Marc Deroo : ingénieur, auteur de 'Cranach' - Gilles Castelnau : pasteur ------------------------------------------------------------------------------- Peintre et graveur, l'un des plus illustres de la Renaissance germanique, Lucas Cranach a servi toute sa vie les princes de Saxe. Ami de Luther, il accueille les idées nouvelles de la Réforme. S'il contribue à l'élaboration d'une iconographie protestante, il n'hésite pas, en peintre humaniste au talent éclectique, à aborder les sujets profanes et mythologiques. Né à Kronach, en Franconie, dont il adopte le nom comme patronyme, Lucas Cranach se forme dans l'atelier de son père qu'il quitte en 1498 pour voyager en Bavière et aller à Vienne où il signe ses premières œuvres. En 1505, il est appelé par le prince électeur de Saxe, Frédéric le Sage pour devenir le « peintre officiel » de la Cour, à Wittenberg. C'est là qu'il rencontre Martin Luther et les réformateurs dont il fait de nombreux portraits. Acquis aux idées de la Réforme, Cranach introduit dans ses tableaux d'inspiration religieuse les thèmes protestants. Mais la Cour de Saxe accueille aussi la Renaissance qui célèbre une peinture humaniste, érudite et précieuse. Cranach adopte pour ses nus un style gracieux et délicat à l'érotisme allusif. Avec ses deux fils, Hans et Lucas dit le Jeune, Cranach dirige un atelier important afin de satisfaire ses multiples commanditaires. Pendant cinquante ans, il occupe charges et honneurs à Wittenberg où il est élu trois fois bourgmestre. Cranach meurt en 1553, laissant une œuvre considérable. « L'art de Cranach est resté populaire à travers les siècles, il a même atteint un nouveau sommet de nos jours, il suffit de penser à la fascination qu'il a exercée sur Picasso. C'est assurément dû avant tout à l'ingénuité profonde de son art, à son solide sens de la réalité. Même fort âgé, il avait conservé l'accès à la gravité aussi bien qu'à la légèreté d'esprit. » Jakob Rosenberg.
    https://wn.com/Lucas_Cranach_L'Ancien_(1472_1553)_–_Une_Vie,_Une_Œuvre_2005
    The Legacy of St. Augustine: Myth, History & the Story of America's Oldest City
    56:41

    The Legacy of St. Augustine: Myth, History & the Story of America's Oldest City

    • Order:
    • Duration: 56:41
    • Uploaded Date: 03 Feb 2016
    • views: 27438
    J. Michael Francis discussed the Spanish founding of St. Augustine, Florida, and its long and varied cultural heritage. Speaker Biography: J. Michael Francis is professor of history at the University of South Florida at St. Petersburg. For transcript, captions, and more information, visit http://www.loc.gov/today/cyberlc/feature_wdesc.php?rec=7073
    https://wn.com/The_Legacy_Of_St._Augustine_Myth,_History_The_Story_Of_America's_Oldest_City
    EMSAR: SU VÍA DOLOROSA Y MIS SIETE PECADOS
    2:35

    EMSAR: SU VÍA DOLOROSA Y MIS SIETE PECADOS

    • Order:
    • Duration: 2:35
    • Uploaded Date: 03 Jul 2017
    • views: 9
    EXPOSICIÓN INDIVIDUAL Exoneradas de la historia, las figuras míticas sagradas mantienen su presencia en los diversos momentos de la humanidad que les rinde culto o, al menos, busca mantener en su imaginario las poderosas representaciones a que han dado origen dichos personajes. Para la cultura occidental, uno de esos íconos por excelencia es la figura de Jesucristo. Ubicado en ese impreciso espacio simbólico que es el inicio de la edad cristiana –históricamente fluctuante entre los años 7 a 4 antes de nuestra era–, el Yeshúa o Yeshú m-Natsaret hebreo (ישוע מנצרת) salió de la historia local para convertirse hacia el año 380 en el Jesucristo venerado por casi todo el imperio romano y, tres siglos más tarde, inclusive por la comunidad islámica como ‘Īsā ibn Maryam (Jesús el hijo de María). EMSAR, joven artista educado en las tradiciones holandesa y mexicana de las artes plásticas, ha compuesto su personal viacrucis más una apostilla pictórica sobre los siete pecados capitales en una narración iconográfica que resulta a la vez novedosa y tradicional, en el sentido de que sus imágenes reinterpretan piezas canónicas del arte sacro. Al ver estas recreaciones del tema de la Pasión de Cristo, es inevitable recordar las composiciones magistrales logradas por Quentin Metsys o Massys y otros maestros del arte flamenco en los siglos XV y XVI, como Rogier van der Weyden y Hyeronimus Bosch, o de alemanes como los dos Lucas Cranach y su heredero Augustin Cranach. La simplificación geométrica de las formas ejecutada por EMSAR sigue composiciones clásicas, sugeridas quizá por la fuerza simbólica de las escenas retratadas. No está ausente en esta iconografía cristiana puesta al día, otra figura sacramental poco recurrente en la actualidad, pero que surge de tempranas representaciones devocionales: el Cristo Pantocrátor o todopoderoso, emanado del arte bizantino y románico de los siglos V a XII. En la expansión simbólica que estas imágenes generan, el Cristo doliente del medievo tiene su contrapunto en la figura magnificente del cristianismo primitivo; EMSAR aprovecha muy bien estos contrastes para transmitir un relato polivalente de la figura en la cual se apoya la devoción occidental. Partir de modelos previos no afecta la soltura creativa de este artista, pues su estudio compositivo (sin radicalizar sus planteamientos figurativos a la manera de, por ejemplo, Manuel Marín) le permite incorporar el color y ciertos motivos recurrentes como factores de intensidad o de variedad, según los necesite, en su discurso pictórico. Para cerrar su reinterpretación del arte sacro, y trayendo a la memoria los toques irónicos empleados por Quentin Metsys, el joven artista nacido en Oaxaca en 1987 presenta su serie de obras sobre los siete pecados capitales en un estilo desenfadado, más personal en su aproximación a un tema favorito tanto de la teología como del arte contemporáneo. Lectura actualizada de un complejo cultural dos veces milenario, la presente exposición de EMSAR esgrime una estrategia de la memoria y de la invención: recuperar antiguos relatos míticos cuya excesiva visibilidad los vuelve opacos o aun invisibles, con lo cual el pintor logra una nueva manera de mirar lo habitual; y sobre el puntal de lo establecido, impulsa la deconstrucción de las formas en ruta hacia un arte de efecto jocundo, contrapuesto al tema doloroso de la vía que ha elegido homenajear mediante su inventiva lectura del tema sacro. Jorge Pech Casanova
    https://wn.com/Emsar_Su_Vía_Dolorosa_Y_Mis_Siete_Pecados
    Lucas Cranach l'Ancien
    4:25

    Lucas Cranach l'Ancien

    • Order:
    • Duration: 4:25
    • Uploaded Date: 03 Jul 2016
    • views: 3957
    Peintre et graveur de la Renaissance allemande, Lucas Cranach l'Ancien a peint des œuvres à l'érotisme ambigu. Il a créé un type de jeune fille à la séduction étrange, aux formes sinueuses et allongées, à la tête ronde et aux yeux de chat, très éloigné des idéaux de son époque, ce dont témoignent les nombreux nus féminins sortis de son atelier. Ami intime de Martin Luther, le grand théologien de la Réforme, et acquis aux idées luthériennes, Lucas Cranach l'Ancien a largement participé à la création de l’iconographie protestante. Sources : Gérard-Julien Salvy - Cent énigmes de la peinture - Hazan Dictionnaire universel de la peinture - Le Robert Wikipedia the free encyclopedia Jean Mineraud - Les dessous du visible
    https://wn.com/Lucas_Cranach_L'Ancien
    Art & Mind - Film Trailer - Amélie Ravalec
    2:22

    Art & Mind - Film Trailer - Amélie Ravalec

    • Order:
    • Duration: 2:22
    • Uploaded Date: 11 Mar 2019
    • views: 9106
    Now in cinemas, DVD & Blu-Ray. Buy now via bit.ly/artminddvd Art & Mind is a journey into art, madness and the unconscious. An exploration of visionary artists and the creative impulse, from the Flemish Masters of the Renaissance to the avant-garde movement of Surrealism and the unsung geniuses of Art Brut and Outsider Art. Featuring hundreds of artworks including Hieronymus Bosch, Francisco Goya, Vincent Van Gogh, William Blake, Edvard Munch, Salvador Dali, Otto Dix, Pieter Bruegel, Henry Fuseli, Unica Zürn, Adolf Wölfli, André Breton, Carl Jung, Richard Dadd, Max Ernst, Henry Darger, Eugène Delacroix, George Widener, William Hogarth, Albrecht Dürer, Augustin Lesage, Théodore Géricault, Odilon Redon, Matthias Grünewald, Lucas Cranach, Leonora Carrington, William Kurelek, Antonin Artaud, Paul Rumsey, Laurie Lipton... as well as interviews with leading art historians, artists, museum curators, psychiatrists and neuroscientists. Directed by Amélie Ravalec (Industrial Soundtrack For The Urban Decay, Paris/Berlin: 20 Years Of Underground Techno) Release date: 2019 art-mind.co.uk
    https://wn.com/Art_Mind_Film_Trailer_Amélie_Ravalec
    Martin Luther - Karambolage - ARTE
    5:17

    Martin Luther - Karambolage - ARTE

    • Order:
    • Duration: 5:17
    • Uploaded Date: 02 Nov 2017
    • views: 284653
    Nikola Obermann nous dresse le portrait de Martin Luther à la mode de Karambolage. auteure : Nikola Obermann réalisateurs : Christine Gensheimer, Timo Katz #MartinLuther #portrait #Eisleben #Erfurt #théologie #Wittenberg #31octobre #thèses #Wartburg #Lutherbibel #réforme #religion Abonnez-vous à la chaine Youtube d’ARTE Karambolage: https://www.youtube.com/channel/UCh5JF-qt2ZXg8acejcJ15Xw Retrouvez-nous sur les réseaux sociaux : Facebook : https://www.facebook.com/ARTEkarambolage Twitter : https://twitter.com/ARTEkarambolage
    https://wn.com/Martin_Luther_Karambolage_Arte
    Launch of the 'e-ilustrace'-Database (Veronika Sladká)
    1:34:30

    Launch of the 'e-ilustrace'-Database (Veronika Sladká)

    • Order:
    • Duration: 1:34:30
    • Uploaded Date: 11 Nov 2023
    • views: 81
    https://e-ilustrace.cz/en/ Illuminating the Past: Czech Printed Images during the Reformation (c. 1450-1550) and the 'e-ilustrace' Database Unveiled A Presentation by Veronika Sladká at the Taylor Institution Library One hundred years before Martin Luther’s arrival, the Reformation had already established itself in Bohemia, resulting in a significant aversion towards sacred images. Nevertheless, bibliographical records suggest that around 6,000 printed images had been disseminated through books in Bohemia up to 1550. The lecture explores the fascinating journey of visual narratives in the earliest printed books produced in the Czech lands. The discussion sheds light on how the medium of illustration was employed within these texts, and how it evolved alongside the burgeoning Reformation movement. It explores the foreign influences and patterns that shaped the images in Czech printed books, as well as some of the most richly illustrated works. Finally, presents “e-ilustrace”, a new online database of Czech printed images. More information on the preceding session which demonstrated the use of image matching technology with examples from the Taylor Institution Library can be found at https://historyofthebook.mml.ox.ac.uk/?p=3410 Veronika Sladká, a former curator of the rare book collection at St. Augustin Monastery Library in Prague, is a book historian at the Czech Academy of Sciences Library. She specializes in the history of printing and book design in 16th-century Czech lands, particularly focusing on publishing strategies during the Reformation and the printing activities of the Protestant community known as the Unity of Brethren. She is currently pursuing her PhD in Information Science at Charles University in Prague and has published several studies on the history of the Augustinian monastery library and the publishing strategy of the Bohemian Brethren. Her latest contribution to the compendium Printing and Misprinting: A Companion to Mistakes and In-House Corrections in Renaissance Europe (1450-1650) (ed. Geri Della Rocca de Candal, Anthony Grafton, Paolo Sachet, OUP 2022) focuses on the collaborative editorial and proofreading methods used by the Brethren’s bishops.
    https://wn.com/Launch_Of_The_'e_Ilustrace'_Database_(Veronika_Sladká)
    How NOT to PAINT BABIES and HOW TO Paint them not CREEPY - Learning from the Masters SPECIAL
    16:07

    How NOT to PAINT BABIES and HOW TO Paint them not CREEPY - Learning from the Masters SPECIAL

    • Order:
    • Duration: 16:07
    • Uploaded Date: 22 Jun 2019
    • views: 7050
    Today, to celebrate the birth of my son, Augustin, I make a "Learning From the Masters" SPECIAL BABIES. We'll see how different rules applied at some point to paint babies, and how you can avoid making them look creepy and weird. We'll see two of the greatest painters for gracious, beautiful babies : Raphael and Bouguereau. Like and subscribe ! *** LEARN OIL PAINTING - A 5 HOURS VIDEO COURSE : https://www.florentfarges.com/the-practical-guide-to-oil-painting-techniques/ Direct link to download the course on Gumroad : https://gum.co/practicalguidetooilpainting Social media : Facebook : https://www.facebook.com/FlorentFargesArts/ Instagram : https://www.instagram.com/florentfarges.arts/ Support the channel on Tipeee : https://en.tipeee.com/florent-farges-arts If you want to connect with me, the best option is to use the contact form on my website. Website : https://www.florentfarges.com Write me : https://www.florentfarges.com/contact Thanks for watching !
    https://wn.com/How_Not_To_Paint_Babies_And_How_To_Paint_Them_Not_Creepy_Learning_From_The_Masters_Special
    Unser grosze Sünde (Arr. for Dobro)
    2:26

    Unser grosze Sünde (Arr. for Dobro)

    • Order:
    • Duration: 2:26
    • Uploaded Date: 13 Jun 2019
    • views: 28
    Provided to YouTube by Noël Akchoté Unser grosze Sünde (Arr. for Dobro) · Noël Akchoté · Thomas Stoltzer · Noël Akchoté · Noël Akchoté · Noël Akchoté Cranach (Arr. for Dobro) ℗ Noël Akchoté Downloads Released on: 2019-06-14 Auto-generated by YouTube.
    https://wn.com/Unser_Grosze_Sünde_(Arr._For_Dobro)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Cranach
      0:30
      Cranachremove from playlist
    • LUCAS CRANACH L'ANCIEN (1472-1553) – Une vie, une œuvre [2005]
      1:26:36
      LUCAS CRANACH L'ANCIEN (1472-1553) – Une vie, une œuvre [2005]remove from playlist
    • The Legacy of St. Augustine: Myth, History & the Story of America's Oldest City
      56:41
      The Legacy of St. Augustine: Myth, History & the Story of America's Oldest Cityremove from playlist
    • EMSAR: SU VÍA DOLOROSA Y MIS SIETE PECADOS
      2:35
      EMSAR: SU VÍA DOLOROSA Y MIS SIETE PECADOSremove from playlist
    • Lucas Cranach l'Ancien
      4:25
      Lucas Cranach l'Ancienremove from playlist
    • Art & Mind - Film Trailer - Amélie Ravalec
      2:22
      Art & Mind - Film Trailer - Amélie Ravalecremove from playlist
    • Martin Luther - Karambolage - ARTE
      5:17
      Martin Luther - Karambolage - ARTEremove from playlist
    • Launch of the 'e-ilustrace'-Database (Veronika Sladká)
      1:34:30
      Launch of the 'e-ilustrace'-Database (Veronika Sladká)remove from playlist
    • How NOT to PAINT BABIES and HOW TO Paint them not CREEPY - Learning from the Masters SPECIAL
      16:07
      How NOT to PAINT BABIES and HOW TO Paint them not CREEPY - Learning from the Masters SPECIALremove from playlist
    • Unser grosze Sünde (Arr. for Dobro)
      2:26
      Unser grosze Sünde (Arr. for Dobro)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Cranach

    Cranach is a German-language surname. Notable people with the surname include: Augustin Cranach (1554–1595), German painter Hans Cranach (c. 1513–1537), German painter Lucas Cranach the Elder (c. 1472–1553), German artist Lucas Cranach the Younger (c. 1515–1586), German artist
    0:30
    Cranach
    Cranach is a German-language surname. Notable people with the surname include: Augustin C...
    published: 07 Jul 2020
    Play in Full Screen
    1:26:36
    LUCAS CRANACH L'ANCIEN (1472-1553) – Une vie, une œuvre [2005]
    Par Luc Ponette et Viviane Noël. Émission diffusée sur France Culture le 02.01.2005. -----...
    published: 18 Mar 2018
    Play in Full Screen
    56:41
    The Legacy of St. Augustine: Myth, History & the Story of America's Oldest City
    J. Michael Francis discussed the Spanish founding of St. Augustine, Florida, and its long ...
    published: 03 Feb 2016
    Play in Full Screen
    2:35
    EMSAR: SU VÍA DOLOROSA Y MIS SIETE PECADOS
    EXPOSICIÓN INDIVIDUAL Exoneradas de la historia, las figuras míticas sagradas mantienen s...
    published: 03 Jul 2017
    Play in Full Screen
    4:25
    Lucas Cranach l'Ancien
    Peintre et graveur de la Renaissance allemande, Lucas Cranach l'Ancien a peint des œuvres ...
    published: 03 Jul 2016
    Play in Full Screen
    2:22
    Art & Mind - Film Trailer - Amélie Ravalec
    Now in cinemas, DVD & Blu-Ray. Buy now via bit.ly/artminddvd Art & Mind is a journey into ...
    published: 11 Mar 2019
    Play in Full Screen
    5:17
    Martin Luther - Karambolage - ARTE
    Nikola Obermann nous dresse le portrait de Martin Luther à la mode de Karambolage. auteur...
    published: 02 Nov 2017
    Play in Full Screen
    1:34:30
    Launch of the 'e-ilustrace'-Database (Veronika Sladká)
    https://e-ilustrace.cz/en/ Illuminating the Past: Czech Printed Images during the Reformat...
    published: 11 Nov 2023
    Play in Full Screen
    16:07
    How NOT to PAINT BABIES and HOW TO Paint them not CREEPY - Learning from the Masters SPECIAL
    Today, to celebrate the birth of my son, Augustin, I make a "Learning From the Masters" SP...
    published: 22 Jun 2019
    Play in Full Screen
    2:26
    Unser grosze Sünde (Arr. for Dobro)
    Provided to YouTube by Noël Akchoté Unser grosze Sünde (Arr. for Dobro) · Noël Akchoté · ...
    published: 13 Jun 2019
    Play in Full Screen

    Augustin Cranach

    Augustin Cranach (1554 — 26 July 1595) was a German painter. He was born and died in Wittenberg, and was the son of Lucas Cranach the Younger and Magdalena Schurff. He was the father of Lucas Cranach III.

    See also

  • List of German painters
  • References

  • Werner Schade: Die Malerfamilie Cranach. VEB Verlag der Kunst, Dresden 1974
  • External links

  • Media related to Augustin Cranach at Wikimedia Commons

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