- published: 04 Jun 2021
- views: 2758647
'+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; })); }); -->
Violent Femmes are an American alternative rock band from Milwaukee, Wisconsin, initially active from 1980 to 1987 and again from 1988 to 2009. As of 2013, they are active again. The band has performed as a trio, including singer, guitarist and songwriter Gordon Gano, bassist Brian Ritchie, and three drummers: Victor DeLorenzo (1980–1993, 2002–2009 and 2013), Guy Hoffman (1993–2002) and Brian Viglione (2013–2016).
The Violent Femmes have released eight studio albums and fifteen singles during the course of their career. The band found immediate success with the release of their self-titled debut album in early 1983. Featuring many of their well-known songs, including "Blister in the Sun", "Kiss Off", "Add It Up" and "Gone Daddy Gone", Violent Femmes became the band's biggest-selling album and was eventually certified platinum by the RIAA. Violent Femmes went on to become one of the most successful alternative rock bands of the 1980s, selling over 9 million albums by 2005. After the release of their third album The Blind Leading the Naked (1986), the band's future was uncertain and they split up in 1987, when Gano and Ritchie went solo. However, they regrouped a year later, releasing the album 3 (1989). Since then, Violent Femmes' popularity continued to grow, especially in the United States where the songs "Nightmares" and "American Music" cracked the top five on the Modern Rock Tracks chart.
Violent Femmes is the debut album by Violent Femmes. Mostly recorded in July 1982, the album was released by Slash Records on vinyl and on cassette in April 1983, and on CD in 1987 with two extra tracks "Ugly" and "Gimme the Car".
In 2002, Rhino Records remastered the album, filled out the disc's length with demos, and added another disc of live tracks and a radio interview for a 20th anniversary special edition, with liner notes by Michael Azerrad.
Violent Femmes is the band's most successful album to date and went platinum eight years after its release. The album achieved what is believed to be a unique feat by going gold, four years after its release, without having yet made an appearance on Billboard's Top 200 album chart.
Slant Magazine listed the album at #21 on its list of "Best Albums of the 1980s".
Most of the songs on both this album and its follow-up were written when the songwriter, Gordon Gano, was still in high school in Milwaukee, Wisconsin.Violent Femmes peaked at #171 on Billboard's Top 200 album chart in 1991.
Taken from the self-titled debut album, Violent Femmes. As Violent Femmes celebrate their 40th year together, Craft Recordings is pleased to honor the band’s enduring catalog of cult classics with the digital and long out-of-print vinyl reissue of Add It Up (1981–1993). Available to order here: https://found.ee/vf-additup The 23-track compilation features Violent Femmes biggest hits, including “Blister in the Sun,” “American Music,” and “Gone Daddy Gone,” plus live recordings of favorites like “Add It Up,” and “Kiss Off,” alongside a trove of demos, B-sides, interstitial voice recordings, and rarities. Housed in a gatefold jacket, the 2-LP set was pressed at Memphis Records Pressing, with lacquers cut by George Horn at Fantasy Studios. Video by GOODNICETHANKS. Drawn by Grant Claire.
Provided to YouTube by Universal Music Group Kiss Off · Violent Femmes Violent Femmes ℗ 2023 Craft Recordings., Distributed by Concord. Released on: 2023-12-01 Producer, Recording Producer: Mark Van Hecke Studio Personnel, Recording Engineer: Glen Lorbiecki Studio Personnel, Recording Engineer: John Tanner Associated Performer, Guitar, Violin, Vocals: Gordon Gano Associated Performer, Bass Guitar, Xylophone, Electric Bass, Background Vocalist: Brian Ritchie Associated Performer, Snare Drum, Drums, Background Vocalist: Victor Delorenzo Studio Personnel, Mastering Engineer: Bill Inglot Studio Personnel, Mastering Engineer: David Schultz Composer Lyricist: Gordon Gano Auto-generated by YouTube.
Taken from the self-titled album, VIOLENT FEMMES. The popular Violent Femmes’ retrospective compilation ADD IT UP (1981-1993) makes it return to streaming services, as well as being reissued on vinyl on May 21st, 2021. Pre-save or pre-order here: https://found.ee/additup-vf The long out-of-print 23-track compilation features the bands biggest hits, including “Blister in the Sun,” “American Music,” and “Gone Daddy Gone,” plus live recordings of favorites like “Add It Up,” and “Kiss Off,” alongside a trove of demos, B-sides, interstitial voice recordings, and rarities. Housed in a gatefold jacket, the 2-LP set was pressed at Memphis Records Pressing, with lacquers cut by George Horn at Fantasy Studios. In addition to the standard black 2-LP, a special “Blister Red Marble” edition is avail...
http://KEXP.ORG presents Violent Femmes performing live in KEXP's gathering space. Recorded August 2, 2017. Songs: Blister In The Sun Please Do Not Go American Music Country Death Song Host: Troy Nelson Audio Engineer: Kevin Suggs Cameras: Jim Beckmann, Alaia D'Alessandro, Kendall Rock & Justin Wilmore Editor: Jim Beckmann http://kexp.org http://vfemmes.com
Official music video for "American Music" taken from the album Why Do Birds Sing?, newly restored in HD. As Violent Femmes celebrate their 40th year together, Craft Recordings is pleased to honor the band’s enduring catalog of cult classics with the long out-of-print vinyl reissue of Add It Up (1981–1993). Available to pre-order here: https://found.ee/vf-additup The 23-track compilation features Violent Femmes biggest hits, including “Blister in the Sun,” “American Music,” and “Gone Daddy Gone,” plus live recordings of favorites like “Add It Up,” and “Kiss Off,” alongside a trove of demos, B-sides, interstitial voice recordings, and rarities. Housed in a gatefold jacket, the 2-LP set was pressed at Memphis Records Pressing, with lacquers cut by George Horn at Fantasy Studios. Music v...
The Violent Femmes were the final band to ever play at Auckland's His Majestys Theatre before its controversial 1988 demolition. Gordon Gano played Mr. Zank, the first of many substitute math teachers in an episode of The Adventures of Pete & Pete ("X=Why?"). The band appeared on the early-1990s sitcom Clarissa Explains It All. They have also been featured as themselves in one episode of the TV Show Sabrina, the Teenage Witch.
The Violent Femmes were founded by Brian Ritchie (bassist), and Victor DeLorenzo (percussionist) as a rhythm section, and became a full-fledged band upon the arrival of Gordon Gano (singer/guitarist). In its early days, the band frequently played coffee houses and street corners. They were discovered (and subsequently forgotten) by James Honeyman-Scott (of The Pretenders) August 23, 1981 when the band was busking on a street corner in front of the Oriental Theatre, the Milwaukee venue that The Pretenders would be playing later that night. Chrissie Hynde invited them to play a brief acoustic set after the opening act.[1] The band signed to Slash Records and released a self-titled album that they had recorded in July 1982. The music was an innovative combination of American folk music and in...
Track taken from the 40th anniversary Deluxe Edition of the Violent Femmes' classic self-titled debut album. Order now: https://found.ee/violentfemmes40 Craft Recordings celebrates the 40th anniversary of Violent Femmes’ 1983 self-titled debut with a special reissue of the seminal cult classic. The deluxe 2-CD and digital formats feature newly remastered audio and over a dozen demos, B-sides, and live performances from the pioneering folk-punk trio — including alternate versions of iconic songs like “Blister in the Sun,” “Please Do Not Go,” “Gone Daddy Gone,” and “Add It Up.” A special 4-disc vinyl box set will follow February 9th, 2024, limited to 5,000 copies worldwide. Housed in a lift-top box with die-cut window detail, this collectible edition offers three 180-gram LPs — the origi...
WICKED GAME ♡ synth, tronichord, sax and vox cover by Workplace Romance duo ♡ LYRICS: The world was on fire and no one could save me but you It's strange what desire will make foolish people do I never dreamed that I'd meet somebody like you And I never dreamed that I'd lose somebody like you No, I don't wanna fall in love (this world is only gonna break your heart) No, I don't wanna fall in love (this world is only gonna break your heart) With you (this world is only gonna break your heart) With you What a wicked game you play, to make me feel this way What a wicked thing to do, to let me dream of you What a wicked thing to say, you never felt this way What a wicked thing to do, to make me dream of you And I don't wanna fall in love (this world is only gonna break your heart) No, I do...
The following year, the Violent Femmes released Hallowed Ground, which moved the group to a more country music sound and introduced spiritual themes. Their third album, The Blind Leading the Naked, produced by fellow Milwaukee native Jerry Harrison of the Talking Heads, was more mainstream and pop-oriented, resulting in a minor hit with "Children of the Revolution" (originally by T. Rex). The group then disbanded, with Gano releasing an album in 1987, the result of a gospel side project Mercy Seat. Ritchie also released several solo LPs. The group came back together in late 1988, releasing 3 and then Why Do Birds Sing? (1991), after signing to Reprise
Violent Femmes are an American alternative rock band from Milwaukee, Wisconsin, initially active from 1980 to 1987 and again from 1988 to 2009. As of 2013, they are active again. The band has performed as a trio, including singer, guitarist and songwriter Gordon Gano, bassist Brian Ritchie, and three drummers: Victor DeLorenzo (1980–1993, 2002–2009 and 2013), Guy Hoffman (1993–2002) and Brian Viglione (2013–2016).
The Violent Femmes have released eight studio albums and fifteen singles during the course of their career. The band found immediate success with the release of their self-titled debut album in early 1983. Featuring many of their well-known songs, including "Blister in the Sun", "Kiss Off", "Add It Up" and "Gone Daddy Gone", Violent Femmes became the band's biggest-selling album and was eventually certified platinum by the RIAA. Violent Femmes went on to become one of the most successful alternative rock bands of the 1980s, selling over 9 million albums by 2005. After the release of their third album The Blind Leading the Naked (1986), the band's future was uncertain and they split up in 1987, when Gano and Ritchie went solo. However, they regrouped a year later, releasing the album 3 (1989). Since then, Violent Femmes' popularity continued to grow, especially in the United States where the songs "Nightmares" and "American Music" cracked the top five on the Modern Rock Tracks chart.
Where were you
When Judas needed a band
Sitting in the backseat
With another woman in your hand
Don't look this way
With your changing point of view
Just sit on a fence
And pretend to be you
Christ is crying
Outside your church door
Don't let him in
He'll get mud on your floor
Just put on your apron
And count up all the money
Don't you smell the burning
And you just think it's funny
You love yourself
You love yourself
Have we become what we wanted?
You go ahead, I'll love myself more
You're a man
Who works for the Lord
Polishing the statues
When their faces look worn
The best of times
And the worst of men
Don't seem to affect you
You're asleep again
You love yourself
You love yourself
Have we become what we wanted?
You go ahead, I'll love myself more