- published: 17 Jun 2009
- views: 35736111
'+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; })); }); -->
Take Me as I Am may refer to:
"Take Me as I Am" is a song written by Bob DiPiero and Karen Staley, and recorded by American country music artist Faith Hill. It was released in September 1994 as the fourth and final single and title track from her album of the same name. The song peaked at number 2 on the Billboard country singles charts, and number 12 on the RPM country charts in Canada.
Take Me as I Am is the debut album by country singer Faith Hill, released in 1993 by Warner Bros. Records. It has been certified 3× platinum in the United States for sales of three million copies, and has sold 4.3 million copies worldwide.
Four singles were released from the album. The first two — "Wild One" and "Piece of My Heart" — reached No. 1 on the Billboard Hot Country Singles & Tracks chart in 1994. "Wild One," the tale of a rebellious teen-aged girl in conflict with her parents' more conservative ways, was the lead-off single, spending four weeks at No. 1 that January.
"Piece of My Heart", a cover of the 1967 song by Erma Franklin, was issued as the follow-up. The third single, "But I Will", failed to break the Top 30, but Hill's fourth release in late 1994 (the title track) reached No. 2.
As listed in liner notes.
Mary Jane Blige (/ˈblaɪʒ/; born January 11, 1971) is an American singer, songwriter, model, record producer and actress. Starting her career as a background singer on Uptown Records in 1989, Blige released her first album, What's the 411?, in 1992, and has released 11 studio albums since and made over 150 guest appearances on other albums and soundtracks.
A recipient of nine Grammy Awards, in addition to receiving a record of thirty Grammy nominations, Blige is one of few entertainers in history to have eight or more albums to reach multi-platinum status. My Life, in particular, is considered among the greatest albums ever recorded according to Rolling Stone,Time, and Vibe. For her part in combining hip-hop and soul in the early-1990s and its subsequent commercial success, Blige received the Legends Award at the World Music Awards. Blige also received the Voice of Music Award from performance rights organization ASCAP, with its official Jeanie Weems stating that "[Blige's] music has been the voice of inspiration to women worldwide in both struggle and triumph." Blige made Time magazine's "Time 100" list of influential individuals around the world in 2007.
REMASTERED IN HD! Music video by Mary J. Blige performing Take Me As I Am. (C) 2006 Geffen Records #MaryJBlige #TakeMeAsIAm #Remastered
Music video by FM Static performing Take Me As I Am (Official Music Video).
Chris Lorenzo & The Streets - Take Me as I Am ❤️ Subscribe: Turn on the Notification-bell 🔔 to stay updated! 🏃 Help me to reach 1,5k Subs: https://www.youtube.com/c/exyyy ✔️ Follow The Artists: - Chris Lorenzo - The Streets ✔️ Follow me for more updates: 🔹 Youtube: https://www.youtube.com/c/exyyy 🔹 Facebook: https://www.facebook.com/Exy-Music-15... 🔹 Twitter: https://twitter.com/Exy900Subs ✉️ For inquiry / to Submit a song: ✉️ Email : [email protected]
Hear Take Me As I Am off of Lecrae's first studio album, "Real Talk" iTunes - bit.ly/realtalkit Google Play - http://bit.ly/realtalkgp Amazon - http://bit.ly/realtalkazn Spotify - http://bit.ly/realtalksp Apple Music - bit.ly/realtalkam Reach Records Storefront - http://bit.ly/realtalkrml Facebook - http://bit.ly/lecraefacebook Twitter - http://bit.ly/lecraetwitter Instagram - http://bit.ly/lecraeinstagram Check Out - http://www.lecrae.com/
The new single "American Heart" available NOW at iTunes: http://smarturl.it/americanheart Watch the lyric video for "American Heart": http://www.youtube.com/watch?v=60_btgB-PZY Watch the best Faith Hill music videos on YouTube: http://www.youtube.com/playlist?list=PLBAB7BFF7C52DBEE4 Subscribe for more Faith Hill: http://www.youtube.com/subscription_center?add_user=faithhill Love this video? Give it a thumbs up. Tour dates, music and more at http://www.faithhill.com http://www.facebook.com/faithhill/ http://www.twitter.com/faithhill/
Take Me As I Am - FM Static (Lyrics) Lyrics video for "Take Me As I Am" by FM Static. ✅Click the 🔔 to stay updated on the latest uploads! 👍 Thumbs Up if you like this video. ❤️Thank you! ❤️ You can also find us on: ▪️ Facebook - https://www.facebook.com/pillowmusicyt ▪️ Instagram - https://www.instagram.com/pillowmusicyt/ ▪️ Twitter - https://twitter.com/PillowMusic1 📜 Lyrics: "Take Me As I Am" This time I finally see the Reason why, I can't do this Alone, it took some time and concentration, To believe it, this I know I need to build my faith sometimes, But I am so comfortable in line, I'm up, there's no more time, To try to mess with this design Tonight's complete, Everyone's asleep, And I wanna say these words to you, I'll be Your hands, take me as I am, I just wanna be with You ...
Official Video for "Take Me As I Am" by Wyclef Jean feat. Sharissa Listen to Wyclef Jean: https://WyclefJean.lnk.to/hitsYD Subscribe to Wyclef Jean: https://WyclefJean.lnk.to/subscribeYD Follow Wyclef Jean: Facebook: https://WyclefJean.lnk.to/followFI Twitter: https://WyclefJean.lnk.to/followTI Instagram: https://WyclefJean.lnk.to/followII Website: https://WyclefJean.lnk.to/followWI Spotify: https://WyclefJean.lnk.to/followSI YouTube: https://WyclefJean.lnk.to/subscribeYD Chorus: You take me as I am (yeah, I'm a take you as you are) Even when my girls can't understand I choose you as my man But you take me as I am, my, my man #WyclefJean #TakeMeAsIAm #OfficialVideo #Sharissa #ThePreachersSon #HipHop
Chris Lorenzo - Take Me as I Am (Bass Boosted)
HALF and HALF Full Episodes 2024 - The Big Take Me as I Am - HALF and HALF full Season HALF and HALF Full Episodes 2024 - The Big Take Me as I Am - HALF and HALF full Season HALF and HALF Full Episodes 2024 - The Big Take Me as I Am - HALF and HALF full Season
Add or download the song to your own playlist: https://Eurovision.lnk.to/ESC2020ID Tornike Kipiani will represent Georgia at the Eurovision Song Contest 2020 in Rotterdam with the song Take Me As I Am. - Read more about Tornike Kipiani here: https://eurovision.tv/participant/tornike-kipiani Follow us on Instagram: https://www.instagram.com/eurovision Follow us on Twitter: https://twitter.com/Eurovision Follow us on Facebook: https://www.facebook.com/EurovisionSongContest/
The new single "American Heart" available NOW at iTunes: http://smarturl.it/americanheart Watch the lyric video for "American Heart": http://www.youtube.com/watch?v=60_btgB-PZY Watch the best Faith Hill music videos on YouTube: http://www.youtube.com/playlist?list=PLBAB7BFF7C52DBEE4 Subscribe for more Faith Hill: http://www.youtube.com/subscription_center?add_user=faithhill Love this video? Give it a thumbs up. Tour dates, music and more at http://www.faithhill.com http://www.facebook.com/faithhill/ http://www.twitter.com/faithhill/
© 2006 WMG Take Me As I Am (Video) #FaithHill #TakeMeAsIAm
Faith Hill Greatest Hits Albums - Best Songs of Faith Hill Old Country Love Songs all time Audrey Faith McGraw (born September 21, 1967) is an American singer and record producer. She is one of the most successful country artists of all time, having sold more than 40 million albums worldwide.[1] Hill is married to American singer Tim McGraw, with whom she has recorded several duets. Hill's first two albums, Take Me as I Am (1993) and It Matters to Me (1995), were major successes and placed a combined three number ones on Billboard's country charts. She then achieved mainstream and crossover success with her next two albums, Faith (1998) and Breathe (1999). Faith spawned her first international hit in early 1998, "This Kiss", while Breathe became one of the best-selling country albums of ...
The title song and 4th single released from her 1993 debut album. This song peaked at #2 on the US Country chart. Full playlist: https://www.youtube.com/playlist?list=PLK-koFK0rtjAeoFlrDaILYKb_5-I9-x9M
The new single "American Heart" available NOW at iTunes: http://smarturl.it/americanheart Watch the lyric video for "American Heart": http://www.youtube.com/watch?v=60_btgB-PZY Watch the best Faith Hill music videos on YouTube: http://www.youtube.com/playlist?list=PLBAB7BFF7C52DBEE4 Subscribe for more Faith Hill: http://www.youtube.com/subscription_center?add_user=faithhill Love this video? Give it a thumbs up. Tour dates, music and more at http://www.faithhill.com http://www.facebook.com/faithhill/ http://www.twitter.com/faithhill/
Faith Hill - The Way You Love me The new single "American Heart" available NOW at iTunes: http://smarturl.it/americanheart Watch the best Faith Hill music videos on YouTube: http://www.youtube.com/playlist?list=PLBAB7BFF7C52DBEE4 Subscribe for more Faith Hill: http://www.youtube.com/subscription_center?add_user=faithhill Love this video? Give it a thumbs up. Tour dates, music and more at http://www.faithhill.com http://www.facebook.com/faithhill/ http://www.twitter.com/faithhill/
The new single "American Heart" available NOW at iTunes: http://smarturl.it/americanheart Watch the lyric video for "American Heart": http://www.youtube.com/watch?v=60_btgB-PZY Watch the best Faith Hill music videos on YouTube: http://www.youtube.com/playlist?list=PLBAB7BFF7C52DBEE4 Subscribe for more Faith Hill: http://www.youtube.com/subscription_center?add_user=faithhill Love this video? Give it a thumbs up. Tour dates, music and more at http://www.faithhill.com http://www.facebook.com/faithhill/ http://www.twitter.com/faithhill/
Provided to YouTube by Warner Records/Nashville Just About Now · Faith Hill Take Me as I Am ℗ 1993 Warner Records Inc. Assistant Engineer: Amy Hughes Synthesizer: Bill Cuomo Electric Guitar: Brent Mason Background Vocals: Cindy Richardson-Walker Electric Guitar: Dan Huff Mastering Engineer: Denny Purcell Acoustic Guitar: Don Potter Lead Vocals: Faith Hill Background Vocals: Gary Burr Assistant Engineer: Herb Tassin Piano: John Barlow Jarvis Cello: John Catchings Assistant Engineer: John Dickson Audio Recording Engineer: John Kelton Assistant Engineer: John Kunz Co-ordinator Production: John Kunz Background Vocals: Karen Staley Background Vocals: Lari White Background Vocals: Larry Stewart Drums: Lonnie Wilson Background Vocals: Mark Luna Background Vocals: Mary Ann K...
Faith Hill performing ''Take Me As I Am'' live on Music City Tonight with Crook & Chase.
Take Me as I Am may refer to:
Baby, don't turn out the light
I wanna see you look at me
Whisper only truth tonight
Not just promises and empty fantasies
I don't need a bed of roses
'Cause roses wither away
All I really need is honesty
From someone with a strong heart
A gentle hand
Who'll take me as I am
Baby, I need for you to know
Just exactly how I feel
Fiery passions come and go
I'd trade a million pretty words
For one touch that is real
I don't need a bed of roses
'Cause roses wither away
All I really need is honesty
From someone with a strong heart
A gentle hand
Who'll take me as I am
I don't need a bed of roses
'Cause roses wither away
All I really need is honesty
From someone with a strong heart
A gentle hand
Who'll take me as I am, oh yeah
From someone with a strong heart
A gentle hand