- published: 07 Oct 2009
- views: 49029599
'+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; })); }); -->
Hermanus "Herman" Brood (Dutch pronunciation: [ɦɛrˈmaːnʏs ˈɦɛrmɑn broːt]; 5 November 1946 – 11 July 2001) was a Dutch musician and painter. As a musician he achieved artistic and commercial success in the 1970s and 1980s, and was called "the Dutch greatest and only rock 'n' roll star". Later in life he started a successful career as a painter.
Known for his hedonistic lifestyle of "sex, drugs and rock 'n roll," Brood was an enfant terrible and a cultural figure whose suicide, apparently caused by a failure to kick his drug and alcohol habit, only strengthened his controversial status. His suicide, according to a poll organized to celebrate fifty years of Dutch popular music, was the most significant event in its history.
Herman Brood was born in Zwolle, and started playing the piano at age 12. He founded beat band The Moans in 1964, which would later become Long Tall Ernie and the Shakers. Brood was asked to play with Cuby and the Blizzards, but was removed by management when the record company discovered he used drugs. For a number of years Brood was in jail (for dealing LSD), or abroad, and had a number of short-term engagements (with The Studs, the Flash & Dance Band, Vitesse).
Little Sister may refer to:
Little Sister was an American all-female vocal harmony group, which served primarily as the background vocalists for the influential rock/funk band Sly and the Family Stone in concert and on record. Originally a gospel music group called The Heavenly Tones, Little Sister was composed of Vet Stewart (Family Stone frontman Sly Stone's little sister), Mary McCreary, and Elva Mouton, and became a recording act of its own for a brief period in 1970-1971.
While still in high school, Vaetta Stewart and her friends Mary McCreary, Elva Mouton and Tramaine Hawkins had a gospel group called The Heavenly Tones and performed at various venues around the Oakland/San Francisco area. In 1966 they recorded the album "I Love The Lord" for the Gopsel label, and a 45 for the Music City label called "He's Alright" When Vaetta's older brother Sylvester aka Sly Stone formed Sly and the Family Stone with their brother Freddie, and friends Larry Graham, Cynthia Robinson, Jerry Martini, and Greg Errico, the Heavenly Tones were recruited directly out of high school to become Little Sister, Sly & the Family Stone's background vocalists for their recording. Tramaine Hawkins left the group and started a very successful solo career.
"Little Sister" is a rock and roll song written by Doc Pomus and Mort Shuman. It was originally released as a single in 1961 by American singer Elvis Presley, who enjoyed a No. 5 hit with it on the Billboard Hot 100. The single (as a double A-side with "(Marie's the Name) His Latest Flame") also reached No. 1 in the UK Singles Chart. Lead guitar was played by Hank Garland, with backing vocals by the The Jordanaires featuring the distinctive bass voice of Ray Walker.
Presley performs the song as part of a medley with "Get Back" in the 1970 rockumentary film Elvis: That's the Way It Is. The song would later be covered by such artists as Dwight Yoakam, Robert Plant, The Nighthawks, The Staggers, Pearl Jam, Ry Cooder and Jesse and the Rippers.
The song lyric makes mention of "Jim Dandy" which was the title of a 1956 song "Jim Dandy" by LaVern Baker. An answer song to "Little Sister", with the same melody but different lyrics, was recorded and released under the title "Hey, Memphis" by Baker on Atlantic Records (Atlantic 2119-A) in September 1961.
REMASTERED IN HD! Official Music Video for Little Sister performed by Queens Of The Stone Age. Playlist Best of Queens of the Stone Age: https://goo.gl/NhvHq2 Subscribe for more: https://goo.gl/vJEcQR Follow Queens Of The Stone Age Facebook: https://www.facebook.com/QOTSA Twitter: https://twitter.com/qotsa Instagram: https://www.instagram.com/queensofthestoneage Website: https://qotsa.com (C) 2005 Interscope Records #QueensOfTheStoneAge #LittleSister #Remastered
Elvis Presley, “Little Sister" Listen to your favorite Elvis Presley tracks: https://Elvis.lnk.to/top_tracksYD Be sure to tune into ‘Elvis All-Star Tribute’ on Sunday, February 17 at 9/8c on NBC! Music’s biggest stars recreate The King’s 1968 comeback special alongside rare behind-the-scenes footage from the original production. Hosted by Blake Shelton and featuring Carrie Underwood, Shawn Mendes, Post Malone, Darius Rucker, Ed Sheeran, John Legend, Jennifer Lopez and many more! Buy/listen to Elvis Presley Live at the ’68 Comeback Special: https://Elvis.lnk.to/68ComebackSpecial Follow Elvis Presley: Facebook: https://Elvis.lnk.to/fbYD Twitter: https://Elvis.lnk.to/twitterYD Instagram: https://Elvis.lnk.to/igYD Website: https://Elvis.lnk.to/websiteYD Streaming Services: https://Elvis.lnk...
Queens of The Stone Age - Little Sister - Lyrics
Queens of the Stone Age playing 'Little Sister' live at Studio Brussel in Belgium, at Fort II in Wommelgem on August 27th 2017. http://www.stubru.be http://www.facebook.com/studiobrussel http://www.instagram.com/stubru http://www.twitter.com/stubru
Austin, TX 1989
Music From The Motion Picture - The Lost Boys
Watch the official music video for "Little Sister" by Dwight Yoakam from the album "Hillybilly Deluxe" Check Out Our Favorite Playlists: Rhino Favorite 100 http://bit.ly/RhinoFavorite100 80s Hits http://bit.ly/80sMusicHits Classic Rock http://bit.ly/ClassicRockFavorites Stay connected with RHINO on... Facebook https://www.facebook.com/RHINO/ Instagram https://www.instagram.com/rhino_records Twitter https://twitter.com/Rhino_Records https://www.rhino.com/ RHINO is the official YouTube channel of the greatest music catalog in the world. Founded in 1978, Rhino is the world's leading pop culture label specializing in classic rock, soul, and 80's and 90's alternative. The vast Rhino catalog of more than 5,000 albums, videos, and hit songs features material by Warner Music Group artists such ...
Provided to YouTube by Warner Records Little Sister · Ry Cooder Bop Till You Drop ℗ 1979 Warner Records Inc. Background Vocals: Bobby King Guitar: David Lindley Drums: Jim Keltner Recorded by: Lee Herschberg Percussion: Milt Holland Guitar: Ronnie Barron Guitar, Producer, Vocals: Ry Cooder Bass: Tim Drummond Writer: Doc Pomus Writer: Mort Shuman Auto-generated by YouTube.
When little sister wants to dance, brothers have to do what brothers have to do. #fortnitemoves #theyloveher #lovewhentheygetalong #lovemy family #littlesister To use this video in a commercial player or in broadcasts, please email [email protected]
Little Sister live at the Austin Music Awards (1994) From the Austin Chronicle 1993-94 Music Awards show, see Little Sister rock out with some very special guests including Bob Schneider and the Ugly Americans, Abbra Moore and Guy Forsythe. Austin Music Network Collection. AR.2001.007.000060.Clip 1
Little Sister Band Promo Video
Little Sister was an American all-female vocal harmony group, which served primarily as the background vocalists for the influential rock/funk band Sly and the Family Stone in concert and on record. Originally a gospel music group called The Heavenly Tones, Little Sister was composed of Vet Stewart (Family Stone frontman Sly Stone's little sister), Mary McCreary, and Elva Mouton, and became a recording act of its own for a brief period in 1970–1971. During the interim period between the releases of the Family Stone albums Stand! and There's a Riot Goin' On, Sly Stone negotiated a production deal with Atlantic Records, resulting in his own imprint, Stone Flower. Stone Flower released four singles, including one by R&B artist Joe Hicks, one by 6IX, and two by Little Sister: "You're The One"...
Rock trio performs a live cover of "Little Sister" by Elvis Presley. ACME Time Machine at Irwindale Speedway Ronnie Po: guitar and vocal Steve Lacorte: bass guitar Tom McIntyre: drums and vocal #elvispresley #elvis #coversong #liveband #elvislittlesister #hislatestflame #littlesisterelvis #elvistributeartist #elvistribute
Hello Everyone! We did this video for a very special reason. Our 11 year old cousin, Joe Henson. Ever since June 26 Joe has been in the John Hopkins Hospital, battling brain cancer. Three years ago Joe's father was killed in a car crash. We are raising money to help with the hospital bills. Our challenge to you is, help us reach our $25,000 goal. Please go to ,http://www.fearisntreal.com/ Please share this information with as many people as possible! Thank you all so much
Slayd5000 presents... Little Sister - You're The One (Full Version) (Promo 45) N-joi! & subscribe to my channel. Positive comments are always welcome. More to come.
Minecraft Game Band Unboxing | Surprise For My Sister! | Minecraft Game Band GAMEBAND INFO: http://www.gameband.com/ The Game Band is a Minecraft Wrist Band that can be used to save your Minecraft Worlds and much more to take with you whereever you go! It also comes with customization opens to edit light up display on the band itself! ___ ► Twitter http://twitter.com/Logdotzip ► Music/Intro/Outro by Shag http://facebook.com/shagbeats ► Graphic Intro by Bilal http://youtube.com/africanspacejesus ► Get a sweet server! http://bit.ly/BNServ Code "LOGDOT" for 15% off ___ Deck The Halls B by Kevin MacLeod Jingle Bells 3 by Kevin MacLeod All music used with permission from its creator. This video has been sponsored by Gameband
The story of this piece begins with "I remember my childhood," and from there, it becomes apparent that this is roughly a ghost story. Although I haven't done any animal abuse, the overall situation is still quite absurd. At the elementary school I attended, there was a sandpit used for long jumps on the playground. Every time it rained, if the rain was heavy enough, the sandpit would fill with rainwater and turn into a small pond. Before long, it would be filled with tadpoles. My second sister and I used to follow our classmates to catch tadpoles and bring them home to raise into little frogs. Back then, we thought it was just fun playing with water and observing nature. We never considered where the tadpoles would go when the water evaporated. In my junior year of college, I composed a p...
First hit for Little Sister. The song is about teenage pregnancy.
Hermanus "Herman" Brood (Dutch pronunciation: [ɦɛrˈmaːnʏs ˈɦɛrmɑn broːt]; 5 November 1946 – 11 July 2001) was a Dutch musician and painter. As a musician he achieved artistic and commercial success in the 1970s and 1980s, and was called "the Dutch greatest and only rock 'n' roll star". Later in life he started a successful career as a painter.
Known for his hedonistic lifestyle of "sex, drugs and rock 'n roll," Brood was an enfant terrible and a cultural figure whose suicide, apparently caused by a failure to kick his drug and alcohol habit, only strengthened his controversial status. His suicide, according to a poll organized to celebrate fifty years of Dutch popular music, was the most significant event in its history.
Herman Brood was born in Zwolle, and started playing the piano at age 12. He founded beat band The Moans in 1964, which would later become Long Tall Ernie and the Shakers. Brood was asked to play with Cuby and the Blizzards, but was removed by management when the record company discovered he used drugs. For a number of years Brood was in jail (for dealing LSD), or abroad, and had a number of short-term engagements (with The Studs, the Flash & Dance Band, Vitesse).
Hello mamma don't blame me
if I look a lil'
out of control
but life as a Rock 'n Roll idol
is worse than livin'
in a tell tale hole
Last night
as I flew my jet fighter
some ramblin'
jarred upon my ear
Tell me ma
was it plain suspicion
or real lightnin' I did fear
The company
is proud of me
I'm the best sellin'
act around
Talkin' trash to the press
workin' my ass off
from town to town
Hey man take a smoke
take a line
Y'r songs are out a sight
of course we're gonna
make you a star
Don't you worry bout
the copyright
Watch y'r step now
y'r gonna be trapped
in some Rock 'n Roll jive
Y'r gonna be in trouble
Y'r gonna be
buried alive