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

Ben Folds Five (album)

Ben Folds Five is the self-titled debut album by Ben Folds Five, released in 1995. A non-traditional rock album, it featured an innovative indie-pop sound, and excluded lead guitars completely. The album was released on the small independent label Passenger Records, owned by Caroline Records, a subsidiary of Virgin/EMI. Ben Folds Five received positive reviews, and spawned five singles. The record failed to chart, but sparked an intense bidding war eventually won by Sony Music. Several live versions of songs originally released on Ben Folds Five reappeared later as b-sides or on compilations.

Reception

The album received positive reviews from NME, Rolling Stone, Pitchfork, and Entertainment Weekly. Allmusic gave Ben Folds Five 4 out of 5 stars, calling it "a potent, and extremely fun collection of postmodern rock ditties that comes off as a pleasantly workable combination of Tin Pan Alley showmanship, Todd Rundgren-style power pop, and myriad alt-rock sensibilities."

Immersive video

An immersive video is basically a video recording of a real world scene, where the view in every direction is recorded at the same time. During playback the viewer has control of the viewing direction. Generally the only area that can't be viewed is the view toward the camera support. The material is recorded as data which when played back through a software player allows the user control of the viewing direction and playback speed. The player control is typically via a mouse or other sensing device and the playback view is typically 4:3 window on a computer display or projection screen or other presentation device such as a head mounted display.

A recent example, as of 2011, of immersive video is provided by the Kogeto Dot panoramic video capture device and associated online community for smartphones, for the iPhone 4, iPhone 4S and for the Galaxy Nexus with the Kogeto Dot 360-degree panoramic video accessory.

Sometimes the phrase "immersive video" is used to describe full-size teleconferencing capabilities, such as Cisco's Telepresence product.

Microsoft Video 1

Microsoft Video 1 or MS-CRAM is an early lossy video compression and decompression algorithm (codec) that was released with version 1.0 of Microsoft's Video for Windows in November 1992. It is based on MotiVE, a vector quantization codec which Microsoft licensed from Media Vision. In 1993, Media Vision marketed the Pro Movie Spectrum, an ISA board that captured video in both raw and MSV1 formats (the MSV1 processing was done in hardware on the board).

Compression algorithm

Microsoft Video 1 operates either in a 8-bit palettized color space or in a 15-bit RGB color space. Each frame is split into 4×4 pixel blocks. Each 4×4 pixel block can be coded in one of three modes: skip, 2-color or 8-color. In skip mode, the content from the previous frame is copied to the current frame in a conditional replenishment fashion. In 2-color mode, two colors per 4×4 block are transmitted, and 1 bit per pixel is used to select between the two colors. In 8-color mode, the same scheme applies with 2 colors per 2×2 block. This can be interpreted as a 2-color palette which is locally adapted on either a 4×4 block basis or a 2×2 block basis. Interpreted as vector quantization, vectors with components red, green, and blue are quantized using a forward adaptive codebook with two entries.

Early left anterior negativity

The early left anterior negativity (commonly referred to as ELAN) is an event-related potential in electroencephalography (EEG), or component of brain activity that occurs in response to a certain kind of stimulus. It is characterized by a negative-going wave that peaks around 200 milliseconds or less after the onset of a stimulus, and most often occurs in response to linguistic stimuli that violate word-category or phrase structure rules (as in *the in room instead of in the room). As such, it is frequently a topic of study in neurolinguistics experiments, specifically in areas such as sentence processing. While it is frequently used in language research, there is no evidence yet that it is necessarily a language-specific phenomenon.

Characteristics of the ELAN

The ELAN was first reported by Angela D. Friederici as a response to German sentences with phrase structure violations, such as *the pizza was in the eaten (as opposed to the pizza was eaten); it can be elicited by English phrase structure violations such as *Max's of proof (as opposed to Max's proof) or *your write (as opposed to you write). The ELAN is not elicited by sentences with other kinds of grammatical errors, such as subject-verb disagreement (*"he go to the store" rather than "he goes to the store") or grammatically dispreferred and "awkward" sentences (such as "the doctor charged the patient was lying" rather than "the doctor charged that the patient was lying"); it only appears when it is impossible to build local phrase structure.

Midnight (Koontz novel)

Midnight is a novel by the best-selling author Dean Koontz. It was published in 1989. The book is a cross-genre novel. It includes aspects of suspense, science fiction, love story, and horror.

Overview

As with many Koontz books, Midnight is divided into parts. Part One: Along the Night Coast, contains chapters one through fifty-seven. Part Two: Daybreak in Hades, contains thirty-seven chapters, but is similar to Part One in that it begins with its own 'Chapter One'. Part Three: The Night Belongs To Them, follows suit, begins with its own Chapter One, and has forty-one chapters.

It is interesting to note that Midnight contains a total of one-hundred and thirty-five chapters, far exceeding the chapter count of most contemporary novels.

Midnight is Dean Koontz's first No. 1 hardcover on the New York Times bestseller list.

Midnight has a mixture of two classic plots- the great 50's film Invasion of the Body Snatchers and the classic H.G. Wells tale, The Island of Dr. Moreau. And, indeed, Koontz cleverly mentions both of these later in the novel.

Midnight (Hunter novel)

Midnight is a fantasy novel, the first book in Erin Hunter's Warriors: The New Prophecy series. Following The Darkest Hour and Firestar's Quest, and preceding Moonrise, it was released May 10, 2005. The novel centers on a group of feral cats living in four Clans: ThunderClan, RiverClan, WindClan, and ShadowClan.

Plot summary

More than a year has passed since the previous book, [The Darkest Hour (Warriors)]. Bramblepaw, Tigerstar's son, has received his warrior name, Brambleclaw. Firestar has had two kits with Sandstorm, named Squirrelpaw and Leafpaw. Squirrelpaw is apprenticed to Dustpelt, and Leafpaw is apprenticed to Cinderpelt, to train to become the next medicine cat of ThunderClan. While Leafpaw and Cinderpelt search for herbs, StarClan, the cats' ancestors, sends Cinderpelt an ominous warning in some burning bracken, a picture of a tiger running through fire, which she interprets to mean that fire and tiger will destroy the forest. Cinderpelt concludes that the warning must be about Squirrelpaw and Brambleclaw, the daughter of Firestar and the son of Tigerstar, respectively. They share the warning with Firestar, who later decides to keep Brambleclaw and Squirrelpaw separated.

Midnight (wrestler)

Ann-Marie Crooks (born September 12, 1965) is a Jamaican-born American former female bodybuilder and professional wrestler. She was previously working for World Championship Wrestling (WCW) in 1999 under the ring name Midnight.

Professional career

Bodybuilding

As a bodybuilder, Crooks won the Ms. Sunshine State competition in 1992 and placed well in several other bodybuilding events through 1998, finishing as high as 2nd place in the 1994 National Physique Committee (NPC) Nationals (heavyweights).

World Championship Wrestling

In 1999, she began a short career with World Championship Wrestling, wrestling under the name Midnight. She acted as the valet and storyline sibling of Harlem Heat's Booker T and Stevie Ray. She trained at the WCW Power Plant. During her time with WCW, she made appearances at Mayhem and Starrcade in 1999, and Souled Out in 2000.

Personal life

Before getting into bodybuilding, Crooks had considered a career in aeronautical engineering but chose to go into the Air Force, where she spent two years in Germany.

Podcasts:

  • Ben Folds Five - Brick

    Ben Folds Five's official music video for 'Brick'. Click to listen to Ben Folds Five on Spotify: http://smarturl.it/BFFSpot?IQid=BFFB As featured on Whatever And Ever Amen. Click to buy the track or album via iTunes: http://smarturl.it/BFFWEAiTunes?IQid=BFFB Google Play: http://smarturl.it/BFFBPlay?IQid=BFFB Amazon: http://smarturl.it/BFFWEAAm?IQid=BFFB More from Ben Folds Five Song For The Dumped: https://youtu.be/XVk_e31dnlE Army: https://youtu.be/Yr_s6-Q7f00 Kate: https://youtu.be/u7K_mF-aKSY More great Ultimate Hits Of The Nineties videos here: http://smarturl.it/UHNPlaylist?IQid=BFFB Follow Ben Folds Five Website: http://www.benfolds.com/ Facebook: https://www.facebook.com/BenFolds Twitter: https://twitter.com/benfolds Instagram: https://instagram.com/murkanpianist/ Subscribe to ...

    published: 25 Oct 2009
  • Ben Folds Five - Battle Of Who Could Care Less (Video Version)

    Music video by Ben Folds Five performing Battle Of Who Could Care Less. YouTube view counts pre-VEVO: 350,204. (C) 1997 SONY BMG MUSIC ENTERTAINMENT

    published: 11 Dec 2009
  • Ben Folds Five FULL ALBUM

    TRACK LIST 1.Jackson Cannery 0:00 2.Philosophy 3:22 3.Julianne 7:58 4.Where's Summer B? 10:30 5.Alice Childress 14:38 6.Underground 19:04 7.Sports & Wine 23:24 8.Uncle Walter 26:22 9.Best Imitation of Myself 30:13 10.Video 32:52 11.The Last Polka 36:59 12.Boxing 41:34 Enjoy x Youtube may remove this because they don't like philosophy.

    published: 09 Jun 2013
  • Ben Folds Five - Army

    Music video by Ben Folds Five performing Army. (C) 1999 SONY BMG MUSIC ENTERTAINMENT

    published: 25 Oct 2009
  • Ben Folds - Rockin' the Suburbs

    Ben Folds' official music video for 'Rockin' The Suburbs'. Click to listen to Ben Folds on Spotify: http://smarturl.it/BenFoldsSpotify?IQid=BenFRTS As featured on The Best Imitation of Myself: A Retrospective. Click to buy the track or album via iTunes: http://smarturl.it/BenFoldsRetro?IQid=BenFRTS Google Play: http://smarturl.it/RTSGPlay?IQid=BenFRTS Amazon: http://smarturl.it/BenFoldsAmazon?IQid=BenFRTS More From Ben Folds You Don't Know Me: https://youtu.be/UskSU5BoyZs Landed: https://youtu.be/0vPygzPSg8M Still Fighting It: https://youtu.be/kqPwR39VMh0 More great 00's videos here: http://smarturl.it/Ultimate00?IQid=BenFRTS Follow Ben Folds Website: http://www.benfolds.com/ Facebook: https://www.facebook.com/BenFolds Twitter: https://twitter.com/benfolds Subscribe to Ben Folds on Yo...

    published: 25 Oct 2009
  • Ben Folds Five - One Angry Dwarf and 200 Solemn Faces

    Music video by Ben Folds Five performing One Angry Dwarf And 200 Solemn Faces. (C) 1997 SONY BMG MUSIC ENTERTAINMENT

    published: 25 Oct 2009
  • Narcolepsy

    Provided to YouTube by 550 Music Narcolepsy · Ben Folds Five The Unauthorized Biography Of Reinhold Messner ℗ 1999 Epic Records, a division of Sony Music Entertainment Released on: 1999-04-21 Producer, Recording Engineer: Caleb Southern Composer, Lyricist: Ben Folds Violin: Antoine Silverman Unknown: Roger Lian Mixing Engineer: Andy Wallace Violin: Mark Feldman Mastering Engineer: Howie Weinberg Violin: Lorenza Ponce Cello: Jane Scarpantoni Fluegelhorn: John Mark Painter Auto-generated by YouTube.

    published: 25 Jan 2017
  • Ben Folds: NPR Music Tiny Desk Concert

    Watching Ben Folds perform his songs on piano at the Tiny Desk, there seems to be a direct line between thought and expression, except perhaps when he stumbles or forgets a line or two. Folds has a knack for plainspoken, smartly crafted words that sometimes sting and always seem to speak the truth — like these words from "Phone In A Pool": "Seems what's been good for the music Hasn't always been so good for the life" At the Tiny Desk, Folds opened with three sharp songs from his most recent album So There, a collaboration with six musicians who straddle the line between pop and classical music; they're known as the yMusic Ensemble. When he finished those tunes, he asked the crowd for requests, at which point he banged out two favorites on piano: "Emaline," which dates back to the '80s, a...

    published: 16 Feb 2016
  • Ben Folds Five - Brick (from Sessions at West 54th)

    Music video by Ben Folds Five performing Brick (from Sessions at West 54th). (C) 2001 Epic Records, a division of Sony Music Entertainment http://vevo.ly/zrW528

    published: 10 Oct 2018
  • Ben Folds Five - Philosophy (Live on Jools Holland)

    Ben Folds Five playing Philosophy on the UK show Later with Jools Holland. Check out Jools getting it all wrong at the start!

    published: 13 Dec 2006
  • Ben Folds Five "DO IT ANYWAY" f. Fraggle Rock [Official Video]

    Get your Boy Gorg Shirts! http://www.cafepress.com/dd/71572186 A production of Nerdist Industries: http://www.nerdist.com Buy the album on iTunes: http://bit.ly/BF5NewAlbum Directed by Phil Hodges: http://philiphodges.com - @philipmhodges Executive Producers: Chris Hardwick, Lisa Henson Producers: Nicole Goldman, Seth Laderman, Johnny Wickham & Debi Cohen Special Thanks to Alan Wolmark - CEC Management "Do it Anyway" - ImaVeePee Records/Sony Music See the Behind-the-Scenes here: http://youtu.be/cY5u5nc0UhI The Official Music Video for "Do It Anyway," the first track from Ben Folds Five's much anticipated album THE SOUND OF THE LIFE OF THE MIND...featuring the Fraggles from Jim Henson's "Fraggle Rock"! Also starring Rob Corddry, Anna Kendrick & Chris Hardwick. Subscribe for more from Ner...

    published: 17 Sep 2012
  • Philosophy

    Provided to YouTube by Universal Music Group Philosophy · Ben Folds Five Ben Folds Five ℗ 1995 Capitol Records, LLC Released on: 1995-01-01 Producer: Caleb Southern Composer: Ben Folds Auto-generated by YouTube.

    published: 12 Sep 2015
  • Ben Folds Five - Underground

    Music video by Ben Folds Five performing Underground.

    published: 06 Nov 2009
  • Annie Waits

    Provided to YouTube by Epic Annie Waits · Ben Folds Rockin' The Suburbs ℗ 2001 Epic Records, a division of Sony Music Entertainment Released on: 2001-09-11 Mixing Engineer, Producer, Programmer, Recording Engineer: Ben Grosse Engineer, Programmer: Cameron Webb Arranger: John Mark Painter Assistant Engineer: Rick Behrens Assistant Engineer: Aaron Lepley Assistant Engineer: Chuck Bailey Assistant Engineer: Justin Pynes Assistant Engineer: Uly Noriega Assistant Engineer: Dale Lawtone Programmer, Recording Engineer: Blumpy Programmer: John Vitale Programmer, Recording Engineer: Andrew R. Wallace Mastering Engineer: Ted Jensen Auto-generated by YouTube.

    published: 25 Jan 2017
developed with YouTube
Ben Folds Five - Brick
4:31

Ben Folds Five - Brick

  • Order:
  • Duration: 4:31
  • Uploaded Date: 25 Oct 2009
  • views: 17192474
Ben Folds Five's official music video for 'Brick'. Click to listen to Ben Folds Five on Spotify: http://smarturl.it/BFFSpot?IQid=BFFB As featured on Whatever And Ever Amen. Click to buy the track or album via iTunes: http://smarturl.it/BFFWEAiTunes?IQid=BFFB Google Play: http://smarturl.it/BFFBPlay?IQid=BFFB Amazon: http://smarturl.it/BFFWEAAm?IQid=BFFB More from Ben Folds Five Song For The Dumped: https://youtu.be/XVk_e31dnlE Army: https://youtu.be/Yr_s6-Q7f00 Kate: https://youtu.be/u7K_mF-aKSY More great Ultimate Hits Of The Nineties videos here: http://smarturl.it/UHNPlaylist?IQid=BFFB Follow Ben Folds Five Website: http://www.benfolds.com/ Facebook: https://www.facebook.com/BenFolds Twitter: https://twitter.com/benfolds Instagram: https://instagram.com/murkanpianist/ Subscribe to Ben Folds Five on YouTube: http://smarturl.it/BFFSub?IQid=BFFB --------- Lyrics: 6 a.m., day after Christmas I throw some clothes on in the dark The smell of cold Car seat is freezing The world is sleeping I am numb Up the stairs to the apartment She is balled up on the couch Her mom and dad went down to Charlotte They're not home to find us out And we drive Now that I have found someone I'm feeling more alone Than I ever have before She's a brick and I'm drowning slowly Off the coast and I'm headed nowhere She's a brick and I'm drowning slowly
https://wn.com/Ben_Folds_Five_Brick
Ben Folds Five - Battle Of Who Could Care Less (Video Version)
3:23

Ben Folds Five - Battle Of Who Could Care Less (Video Version)

  • Order:
  • Duration: 3:23
  • Uploaded Date: 11 Dec 2009
  • views: 1136635
Music video by Ben Folds Five performing Battle Of Who Could Care Less. YouTube view counts pre-VEVO: 350,204. (C) 1997 SONY BMG MUSIC ENTERTAINMENT
https://wn.com/Ben_Folds_Five_Battle_Of_Who_Could_Care_Less_(Video_Version)
Ben Folds Five FULL ALBUM
46:19

Ben Folds Five FULL ALBUM

  • Order:
  • Duration: 46:19
  • Uploaded Date: 09 Jun 2013
  • views: 484611
TRACK LIST 1.Jackson Cannery 0:00 2.Philosophy 3:22 3.Julianne 7:58 4.Where's Summer B? 10:30 5.Alice Childress 14:38 6.Underground 19:04 7.Sports & Wine 23:24 8.Uncle Walter 26:22 9.Best Imitation of Myself 30:13 10.Video 32:52 11.The Last Polka 36:59 12.Boxing 41:34 Enjoy x Youtube may remove this because they don't like philosophy.
https://wn.com/Ben_Folds_Five_Full_Album
Ben Folds Five - Army
3:22

Ben Folds Five - Army

  • Order:
  • Duration: 3:22
  • Uploaded Date: 25 Oct 2009
  • views: 2107681
Music video by Ben Folds Five performing Army. (C) 1999 SONY BMG MUSIC ENTERTAINMENT
https://wn.com/Ben_Folds_Five_Army
Ben Folds - Rockin' the Suburbs
4:16

Ben Folds - Rockin' the Suburbs

  • Order:
  • Duration: 4:16
  • Uploaded Date: 25 Oct 2009
  • views: 3975970
Ben Folds' official music video for 'Rockin' The Suburbs'. Click to listen to Ben Folds on Spotify: http://smarturl.it/BenFoldsSpotify?IQid=BenFRTS As featured on The Best Imitation of Myself: A Retrospective. Click to buy the track or album via iTunes: http://smarturl.it/BenFoldsRetro?IQid=BenFRTS Google Play: http://smarturl.it/RTSGPlay?IQid=BenFRTS Amazon: http://smarturl.it/BenFoldsAmazon?IQid=BenFRTS More From Ben Folds You Don't Know Me: https://youtu.be/UskSU5BoyZs Landed: https://youtu.be/0vPygzPSg8M Still Fighting It: https://youtu.be/kqPwR39VMh0 More great 00's videos here: http://smarturl.it/Ultimate00?IQid=BenFRTS Follow Ben Folds Website: http://www.benfolds.com/ Facebook: https://www.facebook.com/BenFolds Twitter: https://twitter.com/benfolds Subscribe to Ben Folds on YouTube: http://smarturl.it/BenFoldsSub?IQid=BenFRTS --------- Lyrics: Let me tell y'all what it's like Being male, middle-class and white It's a b*tch, if you don't believe Listen up to my new CD (Sha-mon) I got shit runnin' through my brain It's so intense that I can't explain All alone in my white-boy pain Shake your booty while the band complains I'm rockin' the suburbs Just like Michael Jackson did I'm rockin' the suburbs Except that he was talented I'm rockin' the suburbs I take the cheques and face the facts That some producer with computers fixes all my shitty tracks
https://wn.com/Ben_Folds_Rockin'_The_Suburbs
Ben Folds Five - One Angry Dwarf and 200 Solemn Faces
3:58

Ben Folds Five - One Angry Dwarf and 200 Solemn Faces

  • Order:
  • Duration: 3:58
  • Uploaded Date: 25 Oct 2009
  • views: 1182918
Music video by Ben Folds Five performing One Angry Dwarf And 200 Solemn Faces. (C) 1997 SONY BMG MUSIC ENTERTAINMENT
https://wn.com/Ben_Folds_Five_One_Angry_Dwarf_And_200_Solemn_Faces
Narcolepsy
5:25

Narcolepsy

  • Order:
  • Duration: 5:25
  • Uploaded Date: 25 Jan 2017
  • views: 114702
Provided to YouTube by 550 Music Narcolepsy · Ben Folds Five The Unauthorized Biography Of Reinhold Messner ℗ 1999 Epic Records, a division of Sony Music Entertainment Released on: 1999-04-21 Producer, Recording Engineer: Caleb Southern Composer, Lyricist: Ben Folds Violin: Antoine Silverman Unknown: Roger Lian Mixing Engineer: Andy Wallace Violin: Mark Feldman Mastering Engineer: Howie Weinberg Violin: Lorenza Ponce Cello: Jane Scarpantoni Fluegelhorn: John Mark Painter Auto-generated by YouTube.
https://wn.com/Narcolepsy
Ben Folds: NPR Music Tiny Desk Concert
23:02

Ben Folds: NPR Music Tiny Desk Concert

  • Order:
  • Duration: 23:02
  • Uploaded Date: 16 Feb 2016
  • views: 1808077
Watching Ben Folds perform his songs on piano at the Tiny Desk, there seems to be a direct line between thought and expression, except perhaps when he stumbles or forgets a line or two. Folds has a knack for plainspoken, smartly crafted words that sometimes sting and always seem to speak the truth — like these words from "Phone In A Pool": "Seems what's been good for the music Hasn't always been so good for the life" At the Tiny Desk, Folds opened with three sharp songs from his most recent album So There, a collaboration with six musicians who straddle the line between pop and classical music; they're known as the yMusic Ensemble. When he finished those tunes, he asked the crowd for requests, at which point he banged out two favorites on piano: "Emaline," which dates back to the '80s, and a foot-stomper from his second album with Ben Folds Five, "One Angry Dwarf And 200 Solemn Faces." It's a memorable performance recounting memorable moments from second grade and beyond, as simple and direct as its closing line: "Kiss my ass." So There is available now: iTunes: https://itunes.apple.com/us/album/so-there/id1018447558 Amazon: http://www.amazon.com/So-There-Ben-Folds/dp/B011KF8BJK Set List: "Phone In A Pool" "Not A Fan" "Capable Of Anything" "Emaline" "One Angry Dwarf And 200 Solemn Faces" Credits: Producers: Bob Boilen, Morgan Walker, Niki Walker; Audio Engineer: Josh Rogosin; Videographers: Morgan Walker, Julia Reihs; Photo: Jun Tsuboike/NPR. For more Tiny Desk concerts, subscribe to our podcast: http://www.npr.org/podcasts/510292/tiny-desk-concerts-video
https://wn.com/Ben_Folds_Npr_Music_Tiny_Desk_Concert
Ben Folds Five - Brick (from Sessions at West 54th)
4:36

Ben Folds Five - Brick (from Sessions at West 54th)

  • Order:
  • Duration: 4:36
  • Uploaded Date: 10 Oct 2018
  • views: 187200
Music video by Ben Folds Five performing Brick (from Sessions at West 54th). (C) 2001 Epic Records, a division of Sony Music Entertainment http://vevo.ly/zrW528
https://wn.com/Ben_Folds_Five_Brick_(From_Sessions_At_West_54Th)
Ben Folds Five - Philosophy (Live on Jools Holland)
5:23

Ben Folds Five - Philosophy (Live on Jools Holland)

  • Order:
  • Duration: 5:23
  • Uploaded Date: 13 Dec 2006
  • views: 489881
Ben Folds Five playing Philosophy on the UK show Later with Jools Holland. Check out Jools getting it all wrong at the start!
https://wn.com/Ben_Folds_Five_Philosophy_(Live_On_Jools_Holland)
Ben Folds Five "DO IT ANYWAY" f. Fraggle Rock [Official Video]
5:42

Ben Folds Five "DO IT ANYWAY" f. Fraggle Rock [Official Video]

  • Order:
  • Duration: 5:42
  • Uploaded Date: 17 Sep 2012
  • views: 2312700
Get your Boy Gorg Shirts! http://www.cafepress.com/dd/71572186 A production of Nerdist Industries: http://www.nerdist.com Buy the album on iTunes: http://bit.ly/BF5NewAlbum Directed by Phil Hodges: http://philiphodges.com - @philipmhodges Executive Producers: Chris Hardwick, Lisa Henson Producers: Nicole Goldman, Seth Laderman, Johnny Wickham & Debi Cohen Special Thanks to Alan Wolmark - CEC Management "Do it Anyway" - ImaVeePee Records/Sony Music See the Behind-the-Scenes here: http://youtu.be/cY5u5nc0UhI The Official Music Video for "Do It Anyway," the first track from Ben Folds Five's much anticipated album THE SOUND OF THE LIFE OF THE MIND...featuring the Fraggles from Jim Henson's "Fraggle Rock"! Also starring Rob Corddry, Anna Kendrick & Chris Hardwick. Subscribe for more from Nerdist: http://bit.ly/Sub2Nerdist Follow us on Twitter: https://twitter.com/NerdistDotCom Check out Nerdist.com: http://www.nerdist.com
https://wn.com/Ben_Folds_Five_Do_It_Anyway_F._Fraggle_Rock_Official_Video
Philosophy
4:37

Philosophy

  • Order:
  • Duration: 4:37
  • Uploaded Date: 12 Sep 2015
  • views: 329501
Provided to YouTube by Universal Music Group Philosophy · Ben Folds Five Ben Folds Five ℗ 1995 Capitol Records, LLC Released on: 1995-01-01 Producer: Caleb Southern Composer: Ben Folds Auto-generated by YouTube.
https://wn.com/Philosophy
Ben Folds Five - Underground
4:33

Ben Folds Five - Underground

  • Order:
  • Duration: 4:33
  • Uploaded Date: 06 Nov 2009
  • views: 377305
Music video by Ben Folds Five performing Underground.
https://wn.com/Ben_Folds_Five_Underground
Annie Waits
4:17

Annie Waits

  • Order:
  • Duration: 4:17
  • Uploaded Date: 25 Jan 2017
  • views: 395351
Provided to YouTube by Epic Annie Waits · Ben Folds Rockin' The Suburbs ℗ 2001 Epic Records, a division of Sony Music Entertainment Released on: 2001-09-11 Mixing Engineer, Producer, Programmer, Recording Engineer: Ben Grosse Engineer, Programmer: Cameron Webb Arranger: John Mark Painter Assistant Engineer: Rick Behrens Assistant Engineer: Aaron Lepley Assistant Engineer: Chuck Bailey Assistant Engineer: Justin Pynes Assistant Engineer: Uly Noriega Assistant Engineer: Dale Lawtone Programmer, Recording Engineer: Blumpy Programmer: John Vitale Programmer, Recording Engineer: Andrew R. Wallace Mastering Engineer: Ted Jensen Auto-generated by YouTube.
https://wn.com/Annie_Waits
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

Ben Folds Five - Brick

Ben Folds Five's official music video for 'Brick'. Click to listen to Ben Folds Five on Spotify: http://smarturl.it/BFFSpot?IQid=BFFB As featured on Whatever And Ever Amen. Click to buy the track or album via iTunes: http://smarturl.it/BFFWEAiTunes?IQid=BFFB Google Play: http://smarturl.it/BFFBPlay?IQid=BFFB Amazon: http://smarturl.it/BFFWEAAm?IQid=BFFB More from Ben Folds Five Song For The Dumped: https://youtu.be/XVk_e31dnlE Army: https://youtu.be/Yr_s6-Q7f00 Kate: https://youtu.be/u7K_mF-aKSY More great Ultimate Hits Of The Nineties videos here: http://smarturl.it/UHNPlaylist?IQid=BFFB Follow Ben Folds Five Website: http://www.benfolds.com/ Facebook: https://www.facebook.com/BenFolds Twitter: https://twitter.com/benfolds Instagram: https://instagram.com/murkanpianist/ Subscribe to Ben Folds Five on YouTube: http://smarturl.it/BFFSub?IQid=BFFB --------- Lyrics: 6 a.m., day after Christmas I throw some clothes on in the dark The smell of cold Car seat is freezing The world is sleeping I am numb Up the stairs to the apartment She is balled up on the couch Her mom and dad went down to Charlotte They're not home to find us out And we drive Now that I have found someone I'm feeling more alone Than I ever have before She's a brick and I'm drowning slowly Off the coast and I'm headed nowhere She's a brick and I'm drowning slowly
4:31
Ben Folds Five - Brick
Ben Folds Five's official music video for 'Brick'. Click to listen to Ben Folds Five on Sp...
published: 25 Oct 2009
Play in Full Screen
3:23
Ben Folds Five - Battle Of Who Could Care Less (Video Version)
Music video by Ben Folds Five performing Battle Of Who Could Care Less. YouTube view count...
published: 11 Dec 2009
Play in Full Screen
46:19
Ben Folds Five FULL ALBUM
TRACK LIST 1.Jackson Cannery 0:00 2.Philosophy 3:22 3.Julianne 7:58 4.Where's Summer B...
published: 09 Jun 2013
Play in Full Screen
3:22
Ben Folds Five - Army
Music video by Ben Folds Five performing Army. (C) 1999 SONY BMG MUSIC ENTERTAINMENT
published: 25 Oct 2009
Play in Full Screen
4:16
Ben Folds - Rockin' the Suburbs
Ben Folds' official music video for 'Rockin' The Suburbs'. Click to listen to Ben Folds on...
published: 25 Oct 2009
Play in Full Screen
3:58
Ben Folds Five - One Angry Dwarf and 200 Solemn Faces
Music video by Ben Folds Five performing One Angry Dwarf And 200 Solemn Faces. (C) 1997 SO...
published: 25 Oct 2009
Play in Full Screen
5:25
Narcolepsy
Provided to YouTube by 550 Music Narcolepsy · Ben Folds Five The Unauthorized Biography ...
published: 25 Jan 2017
Play in Full Screen
23:02
Ben Folds: NPR Music Tiny Desk Concert
Watching Ben Folds perform his songs on piano at the Tiny Desk, there seems to be a direct...
published: 16 Feb 2016
Play in Full Screen
4:36
Ben Folds Five - Brick (from Sessions at West 54th)
Music video by Ben Folds Five performing Brick (from Sessions at West 54th). (C) 2001 Epic...
published: 10 Oct 2018
Play in Full Screen
5:23
Ben Folds Five - Philosophy (Live on Jools Holland)
Ben Folds Five playing Philosophy on the UK show Later with Jools Holland. Check out Jools...
published: 13 Dec 2006
Play in Full Screen
5:42
Ben Folds Five "DO IT ANYWAY" f. Fraggle Rock [Official Video]
Get your Boy Gorg Shirts! http://www.cafepress.com/dd/71572186 A production of Nerdist In...
published: 17 Sep 2012
Play in Full Screen
4:37
Philosophy
Provided to YouTube by Universal Music Group Philosophy · Ben Folds Five Ben Folds Five ...
published: 12 Sep 2015
Play in Full Screen
4:33
Ben Folds Five - Underground
Music video by Ben Folds Five performing Underground.
published: 06 Nov 2009
Play in Full Screen
4:17
Annie Waits
Provided to YouTube by Epic Annie Waits · Ben Folds Rockin' The Suburbs ℗ 2001 Epic Rec...
published: 25 Jan 2017
Play in Full Screen

Ben Folds Five (album)

Ben Folds Five is the self-titled debut album by Ben Folds Five, released in 1995. A non-traditional rock album, it featured an innovative indie-pop sound, and excluded lead guitars completely. The album was released on the small independent label Passenger Records, owned by Caroline Records, a subsidiary of Virgin/EMI. Ben Folds Five received positive reviews, and spawned five singles. The record failed to chart, but sparked an intense bidding war eventually won by Sony Music. Several live versions of songs originally released on Ben Folds Five reappeared later as b-sides or on compilations.

Reception

The album received positive reviews from NME, Rolling Stone, Pitchfork, and Entertainment Weekly. Allmusic gave Ben Folds Five 4 out of 5 stars, calling it "a potent, and extremely fun collection of postmodern rock ditties that comes off as a pleasantly workable combination of Tin Pan Alley showmanship, Todd Rundgren-style power pop, and myriad alt-rock sensibilities."

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