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

Andy Warhol

Andy Warhol (/ˈwɔːrhɒl/; born Andrew Warhola; August 6, 1928 – February 22, 1987) was an American artist who was a leading figure in the visual art movement known as pop art. His works explore the relationship between artistic expression, celebrity culture, and advertisement that flourished by the 1960s. After a successful career as a commercial illustrator, Warhol became a renowned and sometimes controversial artist. The Andy Warhol Museum in his native city, Pittsburgh, Pennsylvania, holds an extensive permanent collection of art and archives. It is the largest museum in the United States dedicated to a single artist.

Warhol's art used many types of media, including hand drawing, painting, printmaking, photography, silk screening, sculpture, film, and music. He was also a pioneer in computer-generated art using Amiga computers that were introduced in 1984, two years before his death. He founded Interview magazine and was the author of numerous books, including The Philosophy of Andy Warhol and Popism: The Warhol Sixties. He managed and produced The Velvet Underground, a rock band which had a strong influence on the evolution of punk rock music. He is also notable as a gay man who lived openly as such before the gay liberation movement. His studio, The Factory, was a well known gathering place that brought together distinguished intellectuals, drag queens, playwrights, Bohemian street people, Hollywood celebrities, and wealthy patrons.

Andy Warhol (song)

"Andy Warhol" is a song written by David Bowie in 1971 for the album Hunky Dory. It is an acoustic song about one of Bowie's greatest inspirations, the American pop artist Andy Warhol.

The song starts with some studio chat where Bowie explains to producer Ken Scott, who has just been heard to mispronounce Warhol's name when introducing the take, the right way to say it. Scott solemnly reintroduces the take with the correct pronunciation. There follows several seconds of silence before Bowie asks if the tape is rolling. Upon realising they are indeed recording, Bowie bursts into laughter and begins playing.

The song is memorable for its distinctive, flamenco-sounding opening riff on the acoustic guitar, which continues through the track.

Originally the song was written for Dana Gillespie, who recorded it in 1971, but her version of the song was not released until 1973 on her album Weren't Born a Man. Both versions feature Mick Ronson on guitar.

Other releases

  • It was released as the B-side of the single "Changes" in January 1972.
  • Podcasts:

    • 1986: Andy Warhol Interview

      In July 1986, ITN's Stephen Phillips interviewed Andy Warhol when the artist made a rare trip to London to open an exhibition of self-portraits. Warhol gave typically untypical answers to Phillips' questions... #AndyWarhol #PopArt To license the footage featured in this clip, follow the link below: https://www.gettyimages.co.uk/search/2/film?family=editorial&phrase=AS080786003* To search the ITN Archive collection on Getty Images, follow the link below: https://www.gettyimages.co.uk/footage/itn 🎥 Subscribe to our YouTube channel (tap the bell icon and stay up to date with all the latest ITN Archive videos!) - https://www.youtube.com/c/OnThisDayITNP 🎥 Follow us on Twitter - https://twitter.com/ITNArchive 🎥 Like us on Facebook - https://www.facebook.com/ITNArchiveITNP 🎥 Check out our...

      published: 27 Oct 2022
    • ANDY WARHOL: A Troubled Life and Death (Documentary)

      Skip the waitlist and invest in blue-chip art for the very first time by signing up for Masterworks: https://www.masterworks.art/artsupport Purchase shares in great masterpieces from artists like Pablo Picasso, Banksy, Andy Warhol, and more. 🎨 See important Masterworks disclosures: https://www.masterworks.com/cd -- Artist, filmmaker, and producer Andrew Warhola Jr., or simply Andy Warhol, was a founding father of the pop art movement. The connection between creative expression, commercialism, and celebrity culture in the 1960s is explored in his works. Campbell's Soup Cans (1962) and Marilyn Diptych (1962) are two examples of his silkscreen paintings, while the experimental films Empire (1964) and Chelsea Girls (1966) and the Exploding Plastic Inevitable multimedia events are also well...

      published: 28 Mar 2023
    • Andy Warhol - Why Was He So Different? | Biographical Documentary

      Andy Warhol is one of the most instantly recognisable artists of modern times. From the late 1940s until his death in 1987, he produced over 9,000 paintings and sculptures and nearly 12,000 drawings. He also made hundreds of films and had a profound impact on the art world by forcing it to decide…. what is…and what isn’t… art. He achieved global fame, wealth and cult status as the King of Pop Art within his own lifetime, but behind the glitz and glamour of his celebrity-filled world was a man who struggled to navigate the uncertainties and complexities of everyday life. In this documentary we explore the life and mind of one of the most iconic figures of the 20th century. Part One focussed on his early years and his rise to fame as a successful commercial artist in the 1950s. This sec...

      published: 12 Apr 2024
    • The Life of Andy Warhol (documentary - part one)

      Part 1 of the documentary. Andy Warhol begins by delving deep into his impoverished upbringing in 1930s–’40s Pittsburgh, taking a rare look behind the façade of one of the most famous Pop Art celebrities in history. Check out these Andy Warhol books on Amazon! The Andy Warhol Diaries: https://geni.us/fiLr8 The Philosophy of Andy Warhol: https://geni.us/2B4qqJ The Art of Andy Warhol: https://geni.us/euD5Z Join us on Patreon! https://www.patreon.com/ManufacturingIntellect Donate Crypto! https://commerce.coinbase.com/checkout/868d67d2-1628-44a8-b8dc-8f9616d62259 Share this video! Free Audible Trial with Two Free Audiobooks: https://amzn.to/2LBdkZl This often riveting and deeply moving portrayal then examines his early career as a commercial artist from the 1950s into the 1960s, when he p...

      published: 07 Jan 2019
    • Andy Warhol and the End of Art

      A video essay showing that you don't need to read a bunch of postmodern philosophy to see that Andy Warhol's art isn't good, and the overproduced hype around it reveals that the secret of art is that there isn't one anymore. If you want to learn about other stuff, I'm working on the Metaphysics of the California Weltgeist on my patreon page found at https://www/patreon.com/plasticpills For more content search for the plasticpills podcast wherever you listen. #philosophy #warhol #baudrillard

      published: 28 Mar 2024
    • Andy Warhol in 8 Minutes: Pop Art Legend or Fashion Guru?

      From iconic illustrations to prominent prints, Andy Warhol made a lasting impact on the world of art. But the talent and influence of this legendary icon extends beyond the art, to the catwalks of fashion. In this video, we pull back the curtain and give a quick history of Andy Warhol’s life and how his pop art changed the way we dress. #AndyWarhol #Art #Fashion #CuriousMuse SIGN UP TODAY 🎨 Check out our online courses on Art, Philosophy and more: https://courses.curiousmuse.org JOIN OUR FREE NEWSLETTER 📩 Get your regular dose of culture directly in your inbox https://curiousmuse.org/newsletter DOWNLOAD OUR FREE CHECKLIST 🎨 9 Ways to Supercharge Your Life with Art https://courses.curiousmuse.org/9-ways-to-supercharge-your-life-through-art CREDITS: Research / Script: Ross Aston Voiceo...

      published: 11 Sep 2020
    • The Chaotic But True Life Of Andy Warhol

      Anyone who's ever wanted their "15 minutes of fame" has Andy Warhol to thank. Commonly associated with Campbell's Soup cans, pale wigs, and an assortment of strange artists and celebrities working together in a place known as the Factory, Warhol became one of the most famous American artists in history. The Andy Warhol life story is colorful, filled with the drugs, adult pleasure, and creativity that infected the New York art scene of the era. Although many wild tales exist about the Factory and his relationships with celebrities from the 1960s to the 1980s, true stories about Andy Warhol reveal a man who wasn't always in tune with his image. To Read more about Andy Warhol's life, go here: https://www.ranker.com/list/true-stories-andy-warhol-life/erin-mccann?utm_source=newsletters&utm_me...

      published: 22 Mar 2024
    • ART/ARCHITECTURE: Andy Warhol

      Andy Warhol was one of the great artists of the 20th century who understood the legitimate role that glamour and business should play in the production of art. He has much to teach the modern world. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/5XPmw Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/G95D7 SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ X: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ CREDITS Brought to you by http://the...

      published: 16 Oct 2015
    • BBC Modern Masters 1of4 - ANDY WARHOL

      BBC Modern Masters 1of4 ANDY WARHOL

      published: 27 May 2015
    • Andy Warhol's Marilyn: Great Art Explained

      My other channel, Great Books Explained here - https://www.youtube.com/@greatbooksexplained371 Please consider supporting this channel on Patreon (and getting exclusive content), thanks! https://www.patreon.com/user?u=53686503 or if you prefer a one-off donation - https://paypal.me/GreatArtExplained?country.x=GB&locale.x=en_GB Alternatively, every video has a "thanks" button under it- I appreciate it! Subscribe and click the bell icon to be notified! https://www.youtube.com/channel/UCePD... I started "Great Art Explained" during lockdown. My aim is to make videos which focus on one great artwork. I want to present art in a jargon free, entertaining, clear and concise way with no gimmicks. Subscribe and click the bell icon to get more arts content. Each video takes me about three w...

      published: 08 Oct 2020
    1986: Andy Warhol Interview
    3:49

    1986: Andy Warhol Interview

    • Order:
    • Duration: 3:49
    • Uploaded Date: 27 Oct 2022
    • views: 172764
    In July 1986, ITN's Stephen Phillips interviewed Andy Warhol when the artist made a rare trip to London to open an exhibition of self-portraits. Warhol gave typically untypical answers to Phillips' questions... #AndyWarhol #PopArt To license the footage featured in this clip, follow the link below: https://www.gettyimages.co.uk/search/2/film?family=editorial&phrase=AS080786003* To search the ITN Archive collection on Getty Images, follow the link below: https://www.gettyimages.co.uk/footage/itn 🎥 Subscribe to our YouTube channel (tap the bell icon and stay up to date with all the latest ITN Archive videos!) - https://www.youtube.com/c/OnThisDayITNP 🎥 Follow us on Twitter - https://twitter.com/ITNArchive 🎥 Like us on Facebook - https://www.facebook.com/ITNArchiveITNP 🎥 Check out our TikTok - https://www.tiktok.com/@itnarchive1955
    https://wn.com/1986_Andy_Warhol_Interview
    ANDY WARHOL: A Troubled Life and Death (Documentary)
    7:55

    ANDY WARHOL: A Troubled Life and Death (Documentary)

    • Order:
    • Duration: 7:55
    • Uploaded Date: 28 Mar 2023
    • views: 65368
    Skip the waitlist and invest in blue-chip art for the very first time by signing up for Masterworks: https://www.masterworks.art/artsupport Purchase shares in great masterpieces from artists like Pablo Picasso, Banksy, Andy Warhol, and more. 🎨 See important Masterworks disclosures: https://www.masterworks.com/cd -- Artist, filmmaker, and producer Andrew Warhola Jr., or simply Andy Warhol, was a founding father of the pop art movement. The connection between creative expression, commercialism, and celebrity culture in the 1960s is explored in his works. Campbell's Soup Cans (1962) and Marilyn Diptych (1962) are two examples of his silkscreen paintings, while the experimental films Empire (1964) and Chelsea Girls (1966) and the Exploding Plastic Inevitable multimedia events are also well-known. (1966–67).
    https://wn.com/Andy_Warhol_A_Troubled_Life_And_Death_(Documentary)
    Andy Warhol - Why Was He So Different? | Biographical Documentary
    58:24

    Andy Warhol - Why Was He So Different? | Biographical Documentary

    • Order:
    • Duration: 58:24
    • Uploaded Date: 12 Apr 2024
    • views: 52579
    Andy Warhol is one of the most instantly recognisable artists of modern times. From the late 1940s until his death in 1987, he produced over 9,000 paintings and sculptures and nearly 12,000 drawings. He also made hundreds of films and had a profound impact on the art world by forcing it to decide…. what is…and what isn’t… art. He achieved global fame, wealth and cult status as the King of Pop Art within his own lifetime, but behind the glitz and glamour of his celebrity-filled world was a man who struggled to navigate the uncertainties and complexities of everyday life. In this documentary we explore the life and mind of one of the most iconic figures of the 20th century. Part One focussed on his early years and his rise to fame as a successful commercial artist in the 1950s. This second part focusses on the full flourishing of his artistic talent in the 1960s, the day he almost died at the hands of one of his former associates and the shadow this cast over the rest of his life. We will also explore the many theories about what made Warhol so different from everyone else around him. Finding Out More: There are several excellent biographies of Warhol: The Biography by Victor Bockris, Warhol by David Bourdon and Warhol by Blake Gopnik. There is also his kind-of autobiography Andy Warhol: From A to B and Back Again first published in 1975. There is also a fascinating website run by Gary Comenas that is full of conversations and recollections about Warhol warholstars.org. I have added the biographies and some of his films to my Amazon store page: https://www.amazon.com/shop/professorgraemeyorston. Academic References; Harris, James C. "Before and After and Superman: Andy Warhol." JAMA psychiatry 71.1 (2014): 7-8. Lania, N. (2015). Andy Warhol: Marginalization, childhood illness and performativity in portraiture. Art Journal, 2015(1), 4. Copyright Disclaimer: The primary purpose of this video is educational. I have tried to use material in the public domain or with Creative Commons Non-attribution licences wherever possible. Where attribution is required, I have listed this below. I believe that any copyright material used falls under the remit of Fair Use, but if any content owners would like to dispute this, I will not hesitate to immediately remove that content. It is not my intention to infringe on content ownership in any way. If you happen to find your art or images in the video, please let me know and I will be glad to credit you. Images: Public Domain via Wikimedia Commons Andy Warhol Museum, Pittsburgh Museum of Modern Art Wellcome Collection Music Cheap Velvet Elvis - Antti Luode CC3.0 via Wikimedia Commons "I'm Waiting for the Man" by The Velvet Underground – Fair Use via Wikpedia "Venus in Furs" by The Velvet Underground - Fair Use via Wikpedia Thomas Tallis - Videte Miraculum - The Tudor Consort CC3.0 via Wikimedia Commons Sweet Pipa Of Mine - Antti Luode CC3.0 via Wikimedia Commons All other tracks CC0 via YouTube Music
    https://wn.com/Andy_Warhol_Why_Was_He_So_Different_|_Biographical_Documentary
    The Life of Andy Warhol (documentary - part one)
    1:52:13

    The Life of Andy Warhol (documentary - part one)

    • Order:
    • Duration: 1:52:13
    • Uploaded Date: 07 Jan 2019
    • views: 435978
    Part 1 of the documentary. Andy Warhol begins by delving deep into his impoverished upbringing in 1930s–’40s Pittsburgh, taking a rare look behind the façade of one of the most famous Pop Art celebrities in history. Check out these Andy Warhol books on Amazon! The Andy Warhol Diaries: https://geni.us/fiLr8 The Philosophy of Andy Warhol: https://geni.us/2B4qqJ The Art of Andy Warhol: https://geni.us/euD5Z Join us on Patreon! https://www.patreon.com/ManufacturingIntellect Donate Crypto! https://commerce.coinbase.com/checkout/868d67d2-1628-44a8-b8dc-8f9616d62259 Share this video! Free Audible Trial with Two Free Audiobooks: https://amzn.to/2LBdkZl This often riveting and deeply moving portrayal then examines his early career as a commercial artist from the 1950s into the 1960s, when he produced his renowned silkscreen Pop paintings (including the famous Campbell's Soup Cans) and his iconic “repetitive” celebrity portraits—an artistic expression that would launch him directly into the world he so desperately craved. Through interviews with an array of confidants—as well as a selection of rare stills and film footage—the documentary portrays an extremely insecure man, who found grace in the imperfect and along the way redefined how we think of art and culture. Checking out the affiliate links above helps me bring even more high quality videos at no cost to you by earning me a small commission! And if you have any suggestions for future content, make sure to subscribe on the Patreon page. Thank you for your support!
    https://wn.com/The_Life_Of_Andy_Warhol_(Documentary_Part_One)
    Andy Warhol and the End of Art
    31:34

    Andy Warhol and the End of Art

    • Order:
    • Duration: 31:34
    • Uploaded Date: 28 Mar 2024
    • views: 50258
    A video essay showing that you don't need to read a bunch of postmodern philosophy to see that Andy Warhol's art isn't good, and the overproduced hype around it reveals that the secret of art is that there isn't one anymore. If you want to learn about other stuff, I'm working on the Metaphysics of the California Weltgeist on my patreon page found at https://www/patreon.com/plasticpills For more content search for the plasticpills podcast wherever you listen. #philosophy #warhol #baudrillard
    https://wn.com/Andy_Warhol_And_The_End_Of_Art
    Andy Warhol in 8 Minutes: Pop Art Legend or Fashion Guru?
    8:48

    Andy Warhol in 8 Minutes: Pop Art Legend or Fashion Guru?

    • Order:
    • Duration: 8:48
    • Uploaded Date: 11 Sep 2020
    • views: 94789
    From iconic illustrations to prominent prints, Andy Warhol made a lasting impact on the world of art. But the talent and influence of this legendary icon extends beyond the art, to the catwalks of fashion. In this video, we pull back the curtain and give a quick history of Andy Warhol’s life and how his pop art changed the way we dress. #AndyWarhol #Art #Fashion #CuriousMuse SIGN UP TODAY 🎨 Check out our online courses on Art, Philosophy and more: https://courses.curiousmuse.org JOIN OUR FREE NEWSLETTER 📩 Get your regular dose of culture directly in your inbox https://curiousmuse.org/newsletter DOWNLOAD OUR FREE CHECKLIST 🎨 9 Ways to Supercharge Your Life with Art https://courses.curiousmuse.org/9-ways-to-supercharge-your-life-through-art CREDITS: Research / Script: Ross Aston Voiceover: Ash Steel Video Production: IK Video Production FOLLOW US: Instagram: https://www.instagram.com/curious_muse_ Facebook: https://www.facebook.com/curiousmuse.org TikTok: https://www.tiktok.com/@curious_muse Twitter: https://twitter.com/Curious__Muse Spotify: https://open.spotify.com/show/32lbUE86Dw2MmN4w4L3wI7
    https://wn.com/Andy_Warhol_In_8_Minutes_Pop_Art_Legend_Or_Fashion_Guru
    The Chaotic But True Life Of Andy Warhol
    11:43

    The Chaotic But True Life Of Andy Warhol

    • Order:
    • Duration: 11:43
    • Uploaded Date: 22 Mar 2024
    • views: 99515
    Anyone who's ever wanted their "15 minutes of fame" has Andy Warhol to thank. Commonly associated with Campbell's Soup cans, pale wigs, and an assortment of strange artists and celebrities working together in a place known as the Factory, Warhol became one of the most famous American artists in history. The Andy Warhol life story is colorful, filled with the drugs, adult pleasure, and creativity that infected the New York art scene of the era. Although many wild tales exist about the Factory and his relationships with celebrities from the 1960s to the 1980s, true stories about Andy Warhol reveal a man who wasn't always in tune with his image. To Read more about Andy Warhol's life, go here: https://www.ranker.com/list/true-stories-andy-warhol-life/erin-mccann?utm_source=newsletters&utm_medium=weirdhistory&utm_campaign=wh_active&utm_content=%7Bdate%28%27yyyyMMdd%27%29%7D Be sure to subscribe to the Weird History Newsletter: https://www.ranker.com/newsletters/weird-history?utm_source=Youtube&utm_medium=WeirdHistory&utm_campaign=WHnewsletters&utm_content=description_box #andywarhol #popart WeirdHistory
    https://wn.com/The_Chaotic_But_True_Life_Of_Andy_Warhol
    ART/ARCHITECTURE: Andy Warhol
    6:20

    ART/ARCHITECTURE: Andy Warhol

    • Order:
    • Duration: 6:20
    • Uploaded Date: 16 Oct 2015
    • views: 528641
    Andy Warhol was one of the great artists of the 20th century who understood the legitimate role that glamour and business should play in the production of art. He has much to teach the modern world. Enjoying our Youtube videos? Get full access to all our audio content, videos, and thousands of thought-provoking articles, conversation cards and more with The School of Life Subscription: https://t.ly/5XPmw Be more mindful, present and inspired. Get the best of The School of Life delivered straight to your inbox: https://t.ly/G95D7 SOCIAL MEDIA Feel free to follow us at the links below: Facebook: https://www.facebook.com/theschooloflifelondon/ X: https://twitter.com/TheSchoolOfLife Instagram: https://www.instagram.com/theschooloflifelondon/ CREDITS Brought to you by http://theschooloflife.com Produced in collaboration with Mad Adam http://madadamfilms.co.uk #TheSchoolOfLife
    https://wn.com/Art_Architecture_Andy_Warhol
    BBC Modern Masters 1of4 - ANDY WARHOL
    59:01

    BBC Modern Masters 1of4 - ANDY WARHOL

    • Order:
    • Duration: 59:01
    • Uploaded Date: 27 May 2015
    • views: 189130
    BBC Modern Masters 1of4 ANDY WARHOL
    https://wn.com/BBC_Modern_Masters_1Of4_Andy_Warhol
    Andy Warhol's Marilyn: Great Art Explained
    15:08

    Andy Warhol's Marilyn: Great Art Explained

    • Order:
    • Duration: 15:08
    • Uploaded Date: 08 Oct 2020
    • views: 632320
    My other channel, Great Books Explained here - https://www.youtube.com/@greatbooksexplained371 Please consider supporting this channel on Patreon (and getting exclusive content), thanks! https://www.patreon.com/user?u=53686503 or if you prefer a one-off donation - https://paypal.me/GreatArtExplained?country.x=GB&locale.x=en_GB Alternatively, every video has a "thanks" button under it- I appreciate it! Subscribe and click the bell icon to be notified! https://www.youtube.com/channel/UCePD... I started "Great Art Explained" during lockdown. My aim is to make videos which focus on one great artwork. I want to present art in a jargon free, entertaining, clear and concise way with no gimmicks. Subscribe and click the bell icon to get more arts content. Each video takes me about three weeks to a month, so I download at least once a month: https://www.youtube.com/channel/UCePD... Andy Warhol made “Marilyn Diptych” in 1962, right after Marilyn Monroe’s death. By the 1960s Marilyn’s film career as a sex symbol was all but over. Warhol would effectively immortalize Marilyn as the sex symbol of the 20th century. The seductive blonde Marilyn with the heavy-lidded eyes and parted lips is frozen in time. She is transformed into the personification of the allure and glamour of Hollywood's Golden Age. Marilyn would make Warhol a household name, and Warhol would make Marilyn an icon. Marilyn Diptych is perhaps his greatest canvas, bringing together celebrity, death and exposure. It is both a warning and a love letter to America. Warhol, who is often criticised as vacuous or superficial, produced art, that is profoundly subversive and quite simply a perfect mirror of our times. Andy Warhol and Marilyn Monroe were both the embodiment of the American dream. They also, both projected a vacant persona that made sure no-body knew the real person behind the mask. Chinese subtitles by Charles Xue CREDITS CREDITS All the videos, songs, images, and graphics used in the video belong to their respective owners and I or this channel does not claim any right over them. Copyright Disclaimer under section 107 of the Copyright Act of 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Marilyn Diptych © The Andy Warhol Foundation for the Visual Arts / Artists Rights Society (ARS), New York / DACS, London 2017. Photo credit: Tate Coca-cola bottle © 2020 The Andy Warhol Foundation for the Visual Arts, Inc. / Licensed by DACS/Artimage, London royalty free Music by Giorgio Di Campo for FreeSound Music http://freesoundmusic.eu Photograph: Tate, London, © The Andy Warhol Foundation for the Visual Arts, Inc./Artists Rights Society (ARS), New York Andy Warhol’s Silkscreen Technique https://www.youtube.com/watch?v=jNM04-mhMgo
    https://wn.com/Andy_Warhol's_Marilyn_Great_Art_Explained
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • 1986: Andy Warhol Interview
      3:49
      1986: Andy Warhol Interviewremove from playlist
    • ANDY WARHOL: A Troubled Life and Death (Documentary)
      7:55
      ANDY WARHOL: A Troubled Life and Death (Documentary)remove from playlist
    • Andy Warhol - Why Was He So Different? | Biographical Documentary
      58:24
      Andy Warhol - Why Was He So Different? | Biographical Documentaryremove from playlist
    • The Life of Andy Warhol (documentary - part one)
      1:52:13
      The Life of Andy Warhol (documentary - part one)remove from playlist
    • Andy Warhol and the End of Art
      31:34
      Andy Warhol and the End of Artremove from playlist
    • Andy Warhol in 8 Minutes: Pop Art Legend or Fashion Guru?
      8:48
      Andy Warhol in 8 Minutes: Pop Art Legend or Fashion Guru?remove from playlist
    • The Chaotic But True Life Of Andy Warhol
      11:43
      The Chaotic But True Life Of Andy Warholremove from playlist
    • ART/ARCHITECTURE: Andy Warhol
      6:20
      ART/ARCHITECTURE: Andy Warholremove from playlist
    • Andy Warhol's Marilyn: Great Art Explained
      15:08
      Andy Warhol's Marilyn: Great Art Explainedremove from playlist
    PLAYLIST TIME: 0:00 / 5:14:55

    1986: Andy Warhol Interview

    In July 1986, ITN's Stephen Phillips interviewed Andy Warhol when the artist made a rare trip to London to open an exhibition of self-portraits. Warhol gave typically untypical answers to Phillips' questions... #AndyWarhol #PopArt To license the footage featured in this clip, follow the link below: https://www.gettyimages.co.uk/search/2/film?family=editorial&phrase=AS080786003* To search the ITN Archive collection on Getty Images, follow the link below: https://www.gettyimages.co.uk/footage/itn 🎥 Subscribe to our YouTube channel (tap the bell icon and stay up to date with all the latest ITN Archive videos!) - https://www.youtube.com/c/OnThisDayITNP 🎥 Follow us on Twitter - https://twitter.com/ITNArchive 🎥 Like us on Facebook - https://www.facebook.com/ITNArchiveITNP 🎥 Check out our TikTok - https://www.tiktok.com/@itnarchive1955
    3:49
    1986: Andy Warhol Interview
    In July 1986, ITN's Stephen Phillips interviewed Andy Warhol when the artist made a rare t...
    published: 27 Oct 2022
    Play in Full Screen
    7:55
    ANDY WARHOL: A Troubled Life and Death (Documentary)
    Skip the waitlist and invest in blue-chip art for the very first time by signing up for Ma...
    published: 28 Mar 2023
    Play in Full Screen
    58:24
    Andy Warhol - Why Was He So Different? | Biographical Documentary
    Andy Warhol is one of the most instantly recognisable artists of modern times. From the l...
    published: 12 Apr 2024
    Play in Full Screen
    1:52:13
    The Life of Andy Warhol (documentary - part one)
    Part 1 of the documentary. Andy Warhol begins by delving deep into his impoverished upbrin...
    published: 07 Jan 2019
    Play in Full Screen
    31:34
    Andy Warhol and the End of Art
    A video essay showing that you don't need to read a bunch of postmodern philosophy to see ...
    published: 28 Mar 2024
    Play in Full Screen
    8:48
    Andy Warhol in 8 Minutes: Pop Art Legend or Fashion Guru?
    From iconic illustrations to prominent prints, Andy Warhol made a lasting impact on the wo...
    published: 11 Sep 2020
    Play in Full Screen
    11:43
    The Chaotic But True Life Of Andy Warhol
    Anyone who's ever wanted their "15 minutes of fame" has Andy Warhol to thank. Commonly ass...
    published: 22 Mar 2024
    Play in Full Screen
    6:20
    ART/ARCHITECTURE: Andy Warhol
    Andy Warhol was one of the great artists of the 20th century who understood the legitimate...
    published: 16 Oct 2015
    Play in Full Screen
    59:01
    BBC Modern Masters 1of4 - ANDY WARHOL
    BBC Modern Masters 1of4 ANDY WARHOL
    published: 27 May 2015
    Play in Full Screen
    15:08
    Andy Warhol's Marilyn: Great Art Explained
    My other channel, Great Books Explained here - https://www.youtube.com/@greatbooksexplai...
    published: 08 Oct 2020
    Play in Full Screen

    Andy Warhol

    Andy Warhol (/ˈwɔːrhɒl/; born Andrew Warhola; August 6, 1928 – February 22, 1987) was an American artist who was a leading figure in the visual art movement known as pop art. His works explore the relationship between artistic expression, celebrity culture, and advertisement that flourished by the 1960s. After a successful career as a commercial illustrator, Warhol became a renowned and sometimes controversial artist. The Andy Warhol Museum in his native city, Pittsburgh, Pennsylvania, holds an extensive permanent collection of art and archives. It is the largest museum in the United States dedicated to a single artist.

    Warhol's art used many types of media, including hand drawing, painting, printmaking, photography, silk screening, sculpture, film, and music. He was also a pioneer in computer-generated art using Amiga computers that were introduced in 1984, two years before his death. He founded Interview magazine and was the author of numerous books, including The Philosophy of Andy Warhol and Popism: The Warhol Sixties. He managed and produced The Velvet Underground, a rock band which had a strong influence on the evolution of punk rock music. He is also notable as a gay man who lived openly as such before the gay liberation movement. His studio, The Factory, was a well known gathering place that brought together distinguished intellectuals, drag queens, playwrights, Bohemian street people, Hollywood celebrities, and wealthy patrons.

    '); } 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: Andy Warhol

    Edit

    The week in classical: Arias Reimagined; Rhythm of the Seasons; Out of the Deep; Turandot – review

    The Observer 30 Mar 2025
    Hair streaked with blue, face bubble-gum pink, eyes highlighted in yellow, Andy Warhol paid homage to Botticelli’s Birth of Venus with joyful freedom, creating a vivid dialogue between Italian Renaissance high art and American mass culture ... Turandot ... .
    Edit

    The week in classical: Arias Reimagined; Rhythm of the Seasons; Out of the Deep; Turandot ...

    The Guardian 29 Mar 2025
    Hair streaked with blue, face bubble-gum pink, eyes highlighted in yellow, Andy Warhol paid homage to Botticelli’s Birth of Venus with joyful freedom, creating a vivid dialogue between Italian Renaissance high art and American mass culture ... ....
    Edit

    Massive high desert ranch larger than the city of Denver up for sale — for ...

    New York Post 29 Mar 2025
    14 ... Hall and Hall 14. Known as Atarque Ranch, the property near Fence Lake has been owned by the Yates family since 1978 ... Andy Warhol's former NYC townhouse — where his green paint streaks remain on the kitchen floor — asks for $6.95M.
    Edit

    All Is Vanity

    The American Spectator 29 Mar 2025
    After less than a year at VF, he boasts, he’d made it onto Jann Wenner’s birthday-party list, along with “Calvin and Kelly Klein, Billy Joel, Malcolm Forbes, Ahmet and Mica Ertegun, Andy Warhol, Fred ...
    Edit

    Amol Rajan: what I learnt holidaying with four kids under eight

    The Times/The Sunday Times 29 Mar 2025
    And so the last thing I wanted to do was gamble ... Puerto Calero marina ... After befriending Andy Warhol and others in New York in the 1960s, Manrique abandoned the Big Apple for this dusty patch, where he preferred to keep quiet about his bisexuality ... .
    Edit

    Avengers: Doomsday: a doomed character pile-up or a masterstroke-in-waiting?

    The Guardian 28 Mar 2025
    Doomsday earlier this week was like something out of an avant garde endurance piece curated by Andy Warhol, a five-hour extended live stream during which a row of empty director’s chairs stood solemnly under the harsh glare of studio lighting ... ....
    Edit

    Andy Warhol’s former NYC townhouse — where his green paint streaks remain on the kitchen ...

    New York Post 27 Mar 2025
    The Manhattan townhouse formerly owned by pop art titan Andy Warhol will list on Thursday for $6.95 million, marking its first sale in more than a decade, The Post has learned ... “I was thinking about Andy Warhol and how his work was what it was.
    Edit

    OpenAI just made it harder to turn your pics into Studio Ghibli-style images

    Business Insider 27 Mar 2025
    Finally, I tested Andy Warhol's pop art style using a photo of myself ... I'm not sure why it let the Koons request through, but not Warhol ... AI-generated picture from Grok was a Warhol pop art dream.
    Edit

    New York singer-songwriter Leslie Mendelson to perform in Colorado Springs

    Colorado Springs Gazette 27 Mar 2025
    During the pandemic, singer-songwriter Leslie Mendelson couldn’t take her eyes off the Andy Warhol print hanging on the wall of her Brooklyn, N.Y., apartment ... She went on to name a song and her latest album, released last year, after the Warhol print.
    Edit

    A ‘Real Housewives of Dubai’ star has sold a Florida mansion that she just finished ...

    New York Post 27 Mar 2025
    Andy Warhol's former NYC townhouse — where his green paint streaks remain on the kitchen floor — asks for $6.95M ... But its future remains uncertain; executive producer Andy Cohen told ...
    Edit

    The Singing Archivist

    Eugine Weekly 27 Mar 2025
    ... fragments of 18th-century nursery rhymes sit next to an obscure Maestro Garry Gaxiola cover “Andy” from Gaxiola’s 1986 cassette-only cult classic album, Go’N to New York, about Andy Warhol.
    Edit

    'She Said, She Said' exhibit celebrates contemporary women artists at Akron Art Museum

    Akron Beacon Journal 27 Mar 2025
    In Jewish artist Deborah Kass' 1992 "4-Color Barbara," part of her "Warhol Project," she adopted Andy Warhol's screen printing of iconic American celebrities to feature her own idol, her "Jewish Jackie" Barbra Streisand.
    Edit

    The ultra-wealthy went on a home-buying spree in 2024 — with luxury sales booming across ...

    New York Post 27 Mar 2025
    Buy, baby, buy ... Mansion Global first reported on the data. 3. The ultra-wealthy splurged on luxury real estate last year ... 3 ... Andy Warhol's former NYC townhouse — where his green paint streaks remain on the kitchen floor — asks for $6.95M.
    Edit

    Stylish NYC home that hosted fabulous Studio 54 afterparties has listed for $4.4M

    New York Post 27 Mar 2025
    Light just pours in all day,” said Matthew Solomon at Compass, who holds the listing. 13 ... Getty Images 13 ... 13 ... 13 ... Andy Warhol, Calvin Klein, Brooke Shields and Steve Rubell — the latter of whom was a club co-founder — partying at Studio 54.
    ×