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

Flight of the Conchords

Flight of the Conchords is a New Zealand-based comedy band composed of Bret McKenzie and Jemaine Clement. The duo's comedy and music became the basis of a BBC radio series and then an American television series that aired for two seasons on HBO. They used to refer to themselves as "New Zealand's fourth most popular guitar-based digi-bongo acapella-rap-funk-comedy folk duo", but now speak of themselves as "the almost award-winning fourth-most-popular folk duo in New Zealand."

They were named Best Alternative Comedy Act at the 2005 US Comedy Arts Festival and Best Newcomer at the Melbourne Comedy Festival, and they received a nomination for the Perrier Comedy Award at the 2003 Edinburgh Festival Fringe for their show at Edinburgh venue The Caves. The duo's live performances have gained them a worldwide cult following.

Career history

McKenzie and Clement were flatmates at Victoria University of Wellington, where they were studying film and theatre before forming Flight of the Conchords in 1998. They first performed as part of a five-man group called So You're a Man, which included Taika Waititi and debuted at Wellington's iconic BATS Theatre, garnering a small but loyal following in New Zealand and Australia.

Flight of the Conchords (disambiguation)

Flight of the Conchords is a musical comedy duo from New Zealand. It's also the title of three of the duo's works:

  • Flight of the Conchords (album), their debut album
  • Flight of the Conchords (radio series), their BBC radio series
  • Flight of the Conchords (TV series), their HBO television series
  • Flight of the Conchords (TV series)

    Flight of the Conchords is an American television comedy series that was first shown on HBO on June 17, 2007. The show follows the adventures of Flight of the Conchords, a two-man band from New Zealand, as its members seek fame and success in New York City. The show stars the real-life duo of Jemaine Clement and Bret McKenzie, who play fictionalized versions of themselves. A second season was announced on August 17, 2007 and shown from January 18, 2009. On December 11, 2009, the duo confirmed that the series would not return for a third season.

    Throughout its run, Flight of the Conchords received positive critical reception, with its second season scoring 80/100 on Metacritic. The show has received 10 Emmy Award nominations, including "Outstanding Comedy Series" and "Outstanding Lead Actor in a Comedy Series" for Jemaine Clement, both in 2009.

    Plot

    The series centers on the day-to-day lives and loves of two shepherds-turned-musicians, Jemaine and Bret (Jemaine Clement and Bret McKenzie, playing fictionalized versions of themselves), who have uprooted themselves from their native New Zealand to try to make it big as a folk duo in New York City. The two have frequent appointments with their officious and ineffectual band manager, Murray Hewitt (Rhys Darby), a Deputy Cultural Attaché at the New Zealand Consulate. Jemaine and Bret constantly fend off the amorous attentions of Mel (Kristen Schaal), a married woman who is their sole fan and stalker. Their friend Dave Mohumbhai (Arj Barker) works at a pawn shop and gives them advice on dealing with American women and culture. Other recurring characters include their landlord, Eugene (Eugene Mirman), Bret's short-term girlfriend Coco (Sutton Foster), Jemaine and Bret's ex-girlfriend Sally (Rachel Blanchard), Mel's husband Doug (David Costabile), and Murray's put-upon assistant Greg (Frank Wood).

    Podcasts:

    • Flight of the Conchords- Business Time

      Flight of the Conchords performing their song "Business Time."

      published: 22 Jul 2006
    • Flight of the Conchords - The Most Beautiful Girl (In The Room)

      Taken from the first episode of HBO's show, Flight of the Conchords.

      published: 31 Jan 2011
    • A Gender Reversal Reversal | Flight of the Conchords: Live in London (2018) | HBO

      Jemaine Clement and Bret McKenzie perform another duet that challenges gender stereotypes… within the band. This is a gender reversal reversal. Streaming now on HBO. #FOTC #HBO Subscribe to the HBO YouTube Channel: https://goo.gl/wtFYd7 Don’t have HBO? Order Now: https://play.hbonow.com/ Get More HBO: Get HBO GO: https://play.hbogo.com/ Like on Facebook: https://www.facebook.com/HBO Follow on Twitter: https://twitter.com/hbo Like on Instagram: https://www.instagram.com/hbo/ Subscribe on Tumblr: http://hbo.tumblr.com/ Official Site: http://www.hbo.com

      published: 07 Oct 2018
    • Flight Of The Conchords Perform 'Father & Son'

      Bret McKenzie and Jemaine Clement drop by the Late Show to perform a song from their upcoming special 'Flight of the Conchords: Live at the London Apollo.' Subscribe To "The Late Show" Channel HERE: http://bit.ly/ColbertYouTube For more content from "The Late Show with Stephen Colbert", click HERE: http://bit.ly/1AKISnR Watch full episodes of "The Late Show" HERE: http://bit.ly/1Puei40 Like "The Late Show" on Facebook HERE: http://on.fb.me/1df139Y Follow "The Late Show" on Twitter HERE: http://bit.ly/1dMzZzG Follow "The Late Show" on Google+ HERE: http://bit.ly/1JlGgzw Follow "The Late Show" on Instagram HERE: http://bit.ly/29wfREj Follow "The Late Show" on Tumblr HERE: http://bit.ly/29DVvtR Watch The Late Show with Stephen Colbert weeknights at 11:35 PM ET/10:35 PM CT. Only on CBS. Get...

      published: 25 Sep 2018
    • Flight Of The Conchords - Sexy Lady

      Flight Of The Conchords Season 2 Episode 6 I do not own the right to this video. All rights belong to "Flight Of The Conchords" and HBO. http://www.hbo.com/flight-of-the-conchords/index.html

      published: 18 Jan 2012
    • Flight of the Conchords Ep 3 Hiphopopotamus vs. Rhymenoceros

      Lyrics from whatthefolk.net I'm the mother flippin' Rhymenocerous My beats are fly and the birds are on my back And I'm horny I'm horny If you choose to proceed you will indeed concede Cos I hit you with my flow The Wild Rhino Stampede. I'm not just wild, I'm trained, Domesticated I was raised by a rapper and rhino that dated And subsequently procreated That's how it goes Here's the Hiphopopotamus The hip hop hippo They call me the Hiphopopotamus My lyrics are bottomless They call me the Hiphopopotamus Flows that glow like phosphorous Poppin' off the top of this esophagus Rockin' this metropolis I'm not a large water-dwelling mammal Where did you get that preposterous hypothesis? Did Steve tell you that, perchance? Steve. My rhymes and records they don't get play...

      published: 03 Jul 2007
    • Flight Of The Conchords - The Humans Are Dead

      All credit goes to "Flight Of The Conchords" I put this song up to share a extrordinarily amazing piece of music and for other people to enjoy.

      published: 21 Feb 2010
    • Flight of the Conchords - "If You're Into It" [HQ]

      Buy Flight of the Conchords DVDs @ http://tinyurl.com/FOTC-HBO-Store

      published: 13 Dec 2011
    • Flight Of The Conchords - Jenny

      Flight Of The Conchords - Jenny

      published: 02 Nov 2006
    • FOTC Best of Season 1

      my favorite scenes from flight of the conchords of season 1

      published: 17 Jul 2009
    developed with YouTube
    Flight of the Conchords- Business Time
    3:56

    Flight of the Conchords- Business Time

    • Order:
    • Duration: 3:56
    • Uploaded Date: 22 Jul 2006
    • views: 38795924
    Flight of the Conchords performing their song "Business Time."
    https://wn.com/Flight_Of_The_Conchords_Business_Time
    Flight of the Conchords - The Most Beautiful Girl (In The Room)
    4:28

    Flight of the Conchords - The Most Beautiful Girl (In The Room)

    • Order:
    • Duration: 4:28
    • Uploaded Date: 31 Jan 2011
    • views: 7167440
    Taken from the first episode of HBO's show, Flight of the Conchords.
    https://wn.com/Flight_Of_The_Conchords_The_Most_Beautiful_Girl_(In_The_Room)
    A Gender Reversal Reversal | Flight of the Conchords: Live in London (2018) | HBO
    7:03

    A Gender Reversal Reversal | Flight of the Conchords: Live in London (2018) | HBO

    • Order:
    • Duration: 7:03
    • Uploaded Date: 07 Oct 2018
    • views: 4221089
    Jemaine Clement and Bret McKenzie perform another duet that challenges gender stereotypes… within the band. This is a gender reversal reversal. Streaming now on HBO. #FOTC #HBO Subscribe to the HBO YouTube Channel: https://goo.gl/wtFYd7 Don’t have HBO? Order Now: https://play.hbonow.com/ Get More HBO: Get HBO GO: https://play.hbogo.com/ Like on Facebook: https://www.facebook.com/HBO Follow on Twitter: https://twitter.com/hbo Like on Instagram: https://www.instagram.com/hbo/ Subscribe on Tumblr: http://hbo.tumblr.com/ Official Site: http://www.hbo.com
    https://wn.com/A_Gender_Reversal_Reversal_|_Flight_Of_The_Conchords_Live_In_London_(2018)_|_Hbo
    Flight Of The Conchords Perform 'Father & Son'
    5:00

    Flight Of The Conchords Perform 'Father & Son'

    • Order:
    • Duration: 5:00
    • Uploaded Date: 25 Sep 2018
    • views: 2889491
    Bret McKenzie and Jemaine Clement drop by the Late Show to perform a song from their upcoming special 'Flight of the Conchords: Live at the London Apollo.' Subscribe To "The Late Show" Channel HERE: http://bit.ly/ColbertYouTube For more content from "The Late Show with Stephen Colbert", click HERE: http://bit.ly/1AKISnR Watch full episodes of "The Late Show" HERE: http://bit.ly/1Puei40 Like "The Late Show" on Facebook HERE: http://on.fb.me/1df139Y Follow "The Late Show" on Twitter HERE: http://bit.ly/1dMzZzG Follow "The Late Show" on Google+ HERE: http://bit.ly/1JlGgzw Follow "The Late Show" on Instagram HERE: http://bit.ly/29wfREj Follow "The Late Show" on Tumblr HERE: http://bit.ly/29DVvtR Watch The Late Show with Stephen Colbert weeknights at 11:35 PM ET/10:35 PM CT. Only on CBS. Get the CBS app for iPhone & iPad! Click HERE: http://bit.ly/12rLxge Get new episodes of shows you love across devices the next day, stream live TV, and watch full seasons of CBS fan favorites anytime, anywhere with CBS All Access. Try it free! http://bit.ly/1OQA29B --- The Late Show with Stephen Colbert is the premier late night talk show on CBS, airing at 11:35pm EST, streaming online via CBS All Access, and delivered to the International Space Station on a USB drive taped to a weather balloon. Every night, viewers can expect: Comedy, humor, funny moments, witty interviews, celebrities, famous people, movie stars, bits, humorous celebrities doing bits, funny celebs, big group photos of every star from Hollywood, even the reclusive ones, plus also jokes.
    https://wn.com/Flight_Of_The_Conchords_Perform_'Father_Son'
    Flight Of The Conchords - Sexy Lady
    3:24

    Flight Of The Conchords - Sexy Lady

    • Order:
    • Duration: 3:24
    • Uploaded Date: 18 Jan 2012
    • views: 2183656
    Flight Of The Conchords Season 2 Episode 6 I do not own the right to this video. All rights belong to "Flight Of The Conchords" and HBO. http://www.hbo.com/flight-of-the-conchords/index.html
    https://wn.com/Flight_Of_The_Conchords_Sexy_Lady
    Flight of the Conchords Ep 3 Hiphopopotamus vs. Rhymenoceros
    2:04

    Flight of the Conchords Ep 3 Hiphopopotamus vs. Rhymenoceros

    • Order:
    • Duration: 2:04
    • Uploaded Date: 03 Jul 2007
    • views: 19877911
    Lyrics from whatthefolk.net I'm the mother flippin' Rhymenocerous My beats are fly and the birds are on my back And I'm horny I'm horny If you choose to proceed you will indeed concede Cos I hit you with my flow The Wild Rhino Stampede. I'm not just wild, I'm trained, Domesticated I was raised by a rapper and rhino that dated And subsequently procreated That's how it goes Here's the Hiphopopotamus The hip hop hippo They call me the Hiphopopotamus My lyrics are bottomless They call me the Hiphopopotamus Flows that glow like phosphorous Poppin' off the top of this esophagus Rockin' this metropolis I'm not a large water-dwelling mammal Where did you get that preposterous hypothesis? Did Steve tell you that, perchance? Steve. My rhymes and records they don't get played Because my records and rhymes they don't get made And if you rap like me you don't get paid And if you roll like me you don't get laid. My rhymes are so potent that in this small segment I made all of the ladies in the area pregnant Yes, sometimes my lyrics are sexist But you lovely bitches and hoes should know I'm trying to correct this. Other rappers dis me Say my rhymes are sissy. Why? Why? Why? What? Why exactly? What? Why? Be more constructive with your feedback, please. Why? Why? Why, because I rap about reality? Like me and my grandma drinking a cup of tea? There ain't no party like my nanna's tea party. Hey! Ho! I'm the motherflippin' I'm the motherflippin' I'm the motherflippin' Who's the motherflippin? I'm the motherflippin' I'm the motherflippin' I'm the motherflippin' Motherflippin'
    https://wn.com/Flight_Of_The_Conchords_Ep_3_Hiphopopotamus_Vs._Rhymenoceros
    Flight Of The Conchords - The Humans Are Dead
    3:58

    Flight Of The Conchords - The Humans Are Dead

    • Order:
    • Duration: 3:58
    • Uploaded Date: 21 Feb 2010
    • views: 641276
    All credit goes to "Flight Of The Conchords" I put this song up to share a extrordinarily amazing piece of music and for other people to enjoy.
    https://wn.com/Flight_Of_The_Conchords_The_Humans_Are_Dead
    Flight of the Conchords - "If You're Into It" [HQ]
    2:05

    Flight of the Conchords - "If You're Into It" [HQ]

    • Order:
    • Duration: 2:05
    • Uploaded Date: 13 Dec 2011
    • views: 3429907
    Buy Flight of the Conchords DVDs @ http://tinyurl.com/FOTC-HBO-Store
    https://wn.com/Flight_Of_The_Conchords_If_You're_Into_It_Hq
    Flight Of The Conchords - Jenny
    7:10

    Flight Of The Conchords - Jenny

    • Order:
    • Duration: 7:10
    • Uploaded Date: 02 Nov 2006
    • views: 16811433
    Flight Of The Conchords - Jenny
    https://wn.com/Flight_Of_The_Conchords_Jenny
    FOTC Best of Season 1
    9:37

    FOTC Best of Season 1

    • Order:
    • Duration: 9:37
    • Uploaded Date: 17 Jul 2009
    • views: 526972
    my favorite scenes from flight of the conchords of season 1
    https://wn.com/Fotc_Best_Of_Season_1
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Flight of the Conchords- Business Time

    Flight of the Conchords performing their song "Business Time."
    3:56
    Flight of the Conchords- Business Time
    Flight of the Conchords performing their song "Business Time."
    published: 22 Jul 2006
    Play in Full Screen
    4:28
    Flight of the Conchords - The Most Beautiful Girl (In The Room)
    Taken from the first episode of HBO's show, Flight of the Conchords.
    published: 31 Jan 2011
    Play in Full Screen
    7:03
    A Gender Reversal Reversal | Flight of the Conchords: Live in London (2018) | HBO
    Jemaine Clement and Bret McKenzie perform another duet that challenges gender stereotypes…...
    published: 07 Oct 2018
    Play in Full Screen
    5:00
    Flight Of The Conchords Perform 'Father & Son'
    Bret McKenzie and Jemaine Clement drop by the Late Show to perform a song from their upcom...
    published: 25 Sep 2018
    Play in Full Screen
    3:24
    Flight Of The Conchords - Sexy Lady
    Flight Of The Conchords Season 2 Episode 6 I do not own the right to this video. All righ...
    published: 18 Jan 2012
    Play in Full Screen
    2:04
    Flight of the Conchords Ep 3 Hiphopopotamus vs. Rhymenoceros
    Lyrics from whatthefolk.net I'm the mother flippin' Rhymenocerous My beats are fly and...
    published: 03 Jul 2007
    Play in Full Screen
    3:58
    Flight Of The Conchords - The Humans Are Dead
    All credit goes to "Flight Of The Conchords" I put this song up to share a extrordinarily...
    published: 21 Feb 2010
    Play in Full Screen
    2:05
    Flight of the Conchords - "If You're Into It" [HQ]
    Buy Flight of the Conchords DVDs @ http://tinyurl.com/FOTC-HBO-Store
    published: 13 Dec 2011
    Play in Full Screen
    7:10
    Flight Of The Conchords - Jenny
    Flight Of The Conchords - Jenny
    published: 02 Nov 2006
    Play in Full Screen
    9:37
    FOTC Best of Season 1
    my favorite scenes from flight of the conchords of season 1
    published: 17 Jul 2009
    Play in Full Screen

    Flight of the Conchords

    Flight of the Conchords is a New Zealand-based comedy band composed of Bret McKenzie and Jemaine Clement. The duo's comedy and music became the basis of a BBC radio series and then an American television series that aired for two seasons on HBO. They used to refer to themselves as "New Zealand's fourth most popular guitar-based digi-bongo acapella-rap-funk-comedy folk duo", but now speak of themselves as "the almost award-winning fourth-most-popular folk duo in New Zealand."

    They were named Best Alternative Comedy Act at the 2005 US Comedy Arts Festival and Best Newcomer at the Melbourne Comedy Festival, and they received a nomination for the Perrier Comedy Award at the 2003 Edinburgh Festival Fringe for their show at Edinburgh venue The Caves. The duo's live performances have gained them a worldwide cult following.

    Career history

    McKenzie and Clement were flatmates at Victoria University of Wellington, where they were studying film and theatre before forming Flight of the Conchords in 1998. They first performed as part of a five-man group called So You're a Man, which included Taika Waititi and debuted at Wellington's iconic BATS Theatre, garnering a small but loyal following in New Zealand and Australia.

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