- published: 18 Oct 2014
- views: 828342
'+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; })); }); -->
Be There may refer to:
Be There is a single by Howie Day from the album Sound the Alarm.
"Be There" debuted on the Billboard Adult Top 40 Songs at 38 for the week ending July 11th, 2009. The song peaked at #23 in its 18th week on the chart.
Got to Be There is the debut studio album by Michael Jackson, released by Motown on January 24, 1972. It includes the song of the same name, which was released on October 7, 1971, as Jackson's debut solo single. It sold nearly 900,000 copies in the United States and over 3.2 million copies worldwide. The album was later remastered and reissued in 2009 as part of the 3-disc compilation Hello World: The Motown Solo Collection.
The title track and "Rockin' Robin" were released as singles and were commercially successful. Those two hits were back-to-back on the Hot 100 at #5 and #6, respectively, on April 8, 1972. Jackson's "I Wanna Be Where You Are" reached number 27 on the American chart on June 24, 1972. The album included covers of Bill Withers' "Ain't No Sunshine", Carole King's "You've Got a Friend" and the Supremes' "Love Is Here and Now You're Gone". The album's songs have a tempo ranging from 74 beats per minute on "Ain't No Sunshine", to 170 on "Rockin' Robin".
"Got to Be There" is the debut single written by Elliot Willensky for American recording artist Michael Jackson, whose original version was released as his first solo single in 1971 on Motown Records. The song was produced by Hal Davis and recorded at Motown's Hitsville West studios in Hollywood.
The single became an immediate success, reaching number one on Cashbox's pop and R&B singles charts, while reaching number four on Billboard's pop and R&B singles charts. Released to select European countries, it also found success, reaching number five in the UK. The song was composed as a pop ballad with soul and soft rock elements. The song was musically arranged by Dave Blumberg while Willie Hutch produced its vocal arrangements.
Fellow Motown recording act The Miracles recorded the track for their final studio album, Flying High Together, in 1972. In 1982, Chaka Khan had a top 5 R&B hit version with the song, featured on her self-titled album. In 1993, George Benson performed the track using his guitar and vocal hums on his 1993 album, Love Remembers. In 2007, group Boyz II Men covered it for their 2007 release, Motown: A Journey Through Hitsville USA.
Michael Joseph Jackson (August 29, 1958 – June 25, 2009) was an American singer, songwriter, record producer, dancer, and actor. Called the King of Pop, his contributions to music and dance, along with his publicized personal life, made him a global figure in popular culture for over four decades.
The eighth child of the Jackson family, he debuted on the professional music scene along with his elder brothers Jackie, Tito, Jermaine, and Marlon as a member of the Jackson 5 in 1964, and began his solo career in 1971. In the early 1980s, Jackson became a dominant figure in popular music. The music videos for his songs, including those of "Beat It", "Billie Jean", and "Thriller" from his 1982 album Thriller, were credited with breaking down racial barriers and with transforming the medium into an art form and promotional tool. The popularity of these videos helped to bring the then-relatively-new television channel MTV to fame. His 1987 album Bad spawned the U.S. Billboard Hot 100 number-one singles "I Just Can't Stop Loving You", "Bad", "The Way You Make Me Feel", "Man in the Mirror", and "Dirty Diana", becoming the first album to have five number-one singles on the Billboard Hot 100. With videos such as "Black or White" and "Scream", he continued to innovate the medium throughout the 1990s, as well as forging a reputation as a touring solo artist. Through stage and video performances, Jackson popularized a number of complicated dance techniques, such as the robot and the moonwalk, to which he gave the name. His distinctive sound and style has influenced numerous artists of various music genres.
Michael Jackson is a UK male singer who was lead vocalist with the heavy metal band Satan/Pariah.
Michael was born in Lancaster, Lancashire in 1964 to Estelle & Michael Jackson. He was brought up by his mother in Morecambe, Lancashire from an early age. A fanatical Queen fan Michael Jackson dreamed of being a rock singer like his idol Freddie Mercury.
Entering the Merchant Navy straight from school Michael spent 5 years sailing all over the world while singing with the band Rough Edge between assignments. Eventually he decided to answer an advertisement, learned the required songs and travelled to London for his audition with the band Satan. After a successful interview at Clink Studios, Tower Bridge, London Michael moved there to join Satan.
The first recordings Michael did with Satan later became the EP "Into the Future" which was well received by the press, leading to a deal with Steamhammer Records, Germany. In between recordings the band toured Europe, mainly the Netherlands, which culminated in their appearance at the first Dynamo Open Air Festival in 1986. Michael has fond memories of this festival, especially meeting Angelwitch and Laaz Rocket. Satan were later to tour with Angelwitch in 1987. The first full album, "Suspended Sentence" was released in 1987 and toured Europe with Running Wild to promote it.
Michael Derek Jackson (born July 13, 1964) is a retired American professional basketball player who was selected by the New York Knicks in the 2nd round (47th overall) of the 1986 NBA Draft. A 6'2" guard from Georgetown University, Jackson played in 3 NBA seasons for the Sacramento Kings from 1987 to 1990.
In his NBA career, Jackson played in 89 games and scored a total of 188 points and 198 assists. He led the Kings in assists in a number of games that he played in the '87/'88 season. He was a member of Georgetown's 1984 National Championship team. After graduating with a degree in sociology in 1986, he was accepted to the Kennedy School of Government at Harvard. Upon retirement, Jackson assumed management positions with the United States Olympic Committee, Turner Sports and served as the president of Yankees-Nets (currently known as YES Network). He is now Vice President and General Manager of Global Basketball at Nike, Inc..
"Got to Be There" is a song written by Elliot Willensky for American recording artist Michael Jackson, whose original version was released as his first solo single in 1971 on Motown Records. The song was produced by Hal Davis and recorded at Motown's Hitsville West studios in Hollywood. The single became an immediate success, reaching number one on Cashbox's pop and R&B singles charts, while reaching number four on Billboard's pop and R&B singles charts.[1] Released to select European countries, it also found success, reaching number five in the UK.[2] The song was composed as a pop ballad with soul and soft rock elements. The song was musically arranged by Dave Blumberg while Willie Hutch produced its vocal arrangements. Fellow Motown recording act The Miracles recorded the track for th...
Provided to YouTube by Universal Music Group Got To Be There · Michael Jackson 20th Century Masters: The Millennium Collection: Best of Michael Jackson ℗ A Motown Records Release; ℗ 1971 UMG Recordings, Inc. Released on: 2000-01-01 Producer: Hal Davis Associated Performer, Recording Arranger: Dave Blumberg Associated Performer, Vocal Arranger: Willie Hutch Associated Performer, Vocals: Michael Jackson Composer Lyricist: Elliot Willensky Auto-generated by YouTube.
Michael Jackson - Got To Be There From Album Got To Be There released 24 Januar 1972. Lyrics: Got to be there, got to be there In the morning When she says hello to the world Got to be there, got to be there Bring her good times And show her that she's my girl Oh what a feeling there'll be The moment I know she loves me 'Cause when I look in her eyes I realize I need her sharing her world beside me So I've got to be there Got to be there in the morning And welcome her into my world And show her that she is my girl When she says, "Hello world!" I need her sharing the world beside me That's why I've got to be there Got to be there where love begins And that's everywhere she goes I've got to be there so she knows That when she's with me, she's home Got to be ther...
Provided to YouTube by Rhino/Warner Records Got to Be There · Chaka Khan Chaka Khan ℗ 1982 Warner Records Inc. Producer: Arif Mardin Vocals: Chaka Khan Backing Vocals: Hamish Stuart Electric Guitar: Paul Jackson Jr Keyboards, Synthesizer: Robbie Buchanan Drums: Steve Ferrone Backing Vocals: Will Lee Writer: Elliot Willensky Auto-generated by YouTube.
Provided to YouTube by Warner Records Got to Be There · George Benson Love Remembers ℗ 1993 Warner Records Inc. Unknown: Bernie Grundman Unknown: Bob Rosa Unknown: Gary Henry Keyboards: Gary Henry Producer: Gary Henry Drum Programmer: Gary Henry Guitar: George Benson Unknown: George Benson Production: George Benson Lead Vocals: George Benson Unknown: James Mckeever Unknown: Jennifer Bette Audio Recording Engineer: Kendal Stubbs Unknown: Leonard Ricardson Synthesizer: Melvin Davis Writer: Elliott Wilensky Auto-generated by YouTube.
Rest In Peace, Michael!
Live at Hellzapoppin in 1972
From Live at Amerasian, here's the Soul Siren with her version of Michael Jackson's first solo single in 1971 on Motown Records. For more Live at Amerasian Videos: https://www.youtube.com/watch?v=MSm0wUBNGsY&list=PL8FS5vAg45om157UjD4OrQC3kqvnHx-57 Got to be there, got to be there in the morning When she says hello to the world Got to be there, got to be there Bring her good times And show her that she's my girl Oh, what a feeling there'll be The moment I know she loves me 'Cause when I look in her eyes, I realize I need her sharing her world beside me So I've got to be there Got to be there in the morning And welcome her into my world And show her that she is my girl When she says, "Hello world" I need her sharing her world beside me That's why I've got to be there Got to be there wh...
Watch the TNT Boys as they sing their rendition of "Got To Be There" by The Jackson 5! Arranged by: Edward Del Fierro Mitra Vocal arranger/Vocal coach: Froilan Canlas TNTV Team Business Unit Head/Creative Director: Peter Edward Dizon Director: Carlo Jan Landrito Producer: Rowena Puzon-Valencia Associate Producer: Tyn Mistica, Ford Lariosa Segment Producer: Grace Balderas Artist Business Partners: Hervie Bautista, Jean Chiu, Kaicy Ronda, Kams Miñano Production Assistants: Faye Eranzo, Dolly Lastimada The finest renditions of TNT's best vocalists made possible by TNT Band & The Arrangers For inquiries 📱+639053837894 or +639178985508 📧[email protected] Subscribe to TNT Versions, just click here: http://bit.ly/TNTVersions Also, follow us on our Social Media accounts: https://www.faceboo...
an AMAZING cover of the late great Micheal's
Be There may refer to:
Say what you want
If I'm not there
You know it hurts
You can't save me now
Please tell me this world isn't real
I can't make it without you
Forced to struggle on my own
To make my life easy
CHORUS:
carry me when the sea wind dies
hold me when the fire goes out
make the earth stay stable for me
tell the rough waters to stop beating me
can you be there when I need you most?
Can you make the rain fall up instead?
Will you show me that you love me?
Will you want me when I feel ashamed?
CHORUS
'cause I need you when I need you
and I don't know how or why
but I would give all the world
for you to just be there
CHORUS
and I would give all the world