- published: 05 Nov 2012
- views: 14169072
'+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; })); }); -->
I Need a Miracle may refer to:
HIDDEN ERROR: Usage of "born" is not recognized
Tara Jane McDonald is an English-Irish songwriter and vocalist signed to Mercury/Universal records. Tara achieved success working and co-writing with Armand Van Helden and Axwell on the chart hits ‘My My My’ and ‘Feel the Vibe’. Both these projects debuted at #1 in the club charts before peaking in the UK sales charts at #12 and #16, respectively. She has also collaborated with Todd Terry co-writing the song ‘Get Down’ and with David Guetta co-writing ‘Delirious’ and ‘You Are Not Alone’. ‘Delirious’ – which featured on the platinum selling album ‘Pop Life’ LP’ – was one the most heavily played records on European radio throughout 2008.
McDonald hosts her own dance music radio show called "I Like This Beat" (formerly called "Shut Up & Dance") which is a one-hour show currently syndicated in 40+ countries and 50+ stations across the world and on dance music stations and is also a podcast available as a free download through iTunes worldwide.
"I Need a Miracle" is a song by Christian Contemporary-Southern-Rock band Third Day from their eleventh studio album, Miracle. It was released on September 24, 2012, as the first single from the album.
This song was produced by Brendan O'Brien.
"I Need a Miracle" was written by Mac Powell and his fellow band members in Third Day.
The song "I Need a Miracle" was digitally released as the lead single from Miracle on September 24, 2012.
Yanou (born Yann Peifer) is a German trance musician and producer. He is most famous for collaborating on DJ Sammy's hit "Heaven" with vocalist Do and for being a member of the popular German trance act Cascada alongside DJ Manian and Natalie Horler. Before Yanou worked with Cascada and DJ Sammy he produced and wrote tracks for "Beam & Yanou" in the late 1990s.
“I Need A Miracle" available now everywhere you consume music: iTunes: http://smarturl.it/ThirdDayMiracleItune?IQid=vevo Spotify: http://smarturl.it/ThirdDayMiracleSpoti?IQid=vevo Apple Music: http://smarturl.it/ThirdDayMiracle?IQid=vevo Amazon: http://smarturl.it/TDMiracleAmzn?IQid=vevo Get the most recent album Revival here: iTunes: http://smarturl.it/revivalbuy?IQid=vevo Spotify: http://smarturl.it/revivalspot?IQid=vevo Apple Music: http://smarturl.it/revivalapple?IQid=vevo Amazon: http://smarturl.it/revivalamazon?IQid=vevo Connect with Third Day : Facebook: http://smarturl.it/thirddayfacebook Twitter: http://smarturl.it/thirddaytwitter Instagram: http://smarturl.it/thirddayinstagram Website: http://smarturl.it/thirddaywebsite I Need A Miracle Well, late one night, she started to...
KREAM & Coco Star - I Need A Miracle is out now! Stream/Download: https://musicalfreedom.release.link/i-need-a-miracle!YT Connect with KREAM: https://www.instagram.com/wearekream https://www.facebook.com/wearekream https://www.twitter.com/wearekream https://soundcloud.com/kreamofficial Connect with Coco Star: https://soundcloud.com/user-662006093-31260866 Connect with Musical Freedom: https://www.instagram.com/musicalfreedom https://www.twitter.com/musicalfreedom https://www.facebook.com/musicalfreedom/ https://www.youtube.com/user/musicalfreedom https://soundcloud.com/musical-freedom #kream #cocostar #musicalfreedom
Toca´s Miracle (2000 Radio Mix) with new vocals. Originally released in April 2000. Spotify: https://open.spotify.com/album/0r8FFE2Sk4dcCpfjuc2XvE?si=coiJNLyLSkebkawYqr4pvw Apple Music:https://music.apple.com/de/album/tocas-miracle-ep/1611153090
ReMan & Taylor Mosley - I Need A Miracle When I was approached to do a modern #DeepHouse version of this great classic dance song Coco Star - I Need A Miracle , I just couldn't say no. With Taylor Mosley's great vocals , this song is a perfect track for your summer holiday . It has a warm feeling, cool deep house basslines and brings back memories. I also made a lyric video for it. Enjoy ✅If you like my music and want to support me , now you can do it on Patreon: https://www.patreon.com/reman_music I Have some special perks for you guys over there ;) ▶Stream/Download: https://reman.fanlink.to/Miracle ✖ReMan Spotify: https://spoti.fi/2Ifb3mC Apple Music: https://apple.co/2o9wVbL Socials & Others: https://beacons.ai/reman_music Contact: [email protected] ✖ Follow Taylor Mosley ht...
No Copyright intended. I do not own any part of this song. All rights go to Distributor Records/Columbia the chainsmokers and daya. Itunes: http://smarturl.it/DLMDItunes Spotify: http://smarturl.it/DLMDStream Beatport: http://smarturl.it/TCSBeatport Download The Bouquet EP: http://smarturl.it/Bouquet
Video to Cascada's "Miracle", off of the album 'Everytime We Touch'.
Fragma_-_Tocas_Miracle_(Late_Night_Version)_(www.SkyGlobe.Ru)
Luke 1:37 For nothing is impossible with God. Song by : HERITAGE SINGERS Video Edited by : JENELYN SAGUIN AREÑOS ♥[ILoveYouLord]♥
BGCI Sunday Evening Service I Need A Miracle 29.09.2024 6pm - 9pm Rotary Club House, Comm. 5, Tema. We do not own the rights to the background music/song used. All rights belong to the owner. #jesuschristislord
Provided to YouTube by Grateful Dead/Rhino I Need a Miracle (2013 Remaster) · Grateful Dead Shakedown Street ℗ 1978 Grateful Dead Productions Drums, Percussion: Bill Kreutzmann Assistant Mix Engineer: Billy Candelario Engineer: Bob Matthews Guitar, Vocals: Bob Weir Engineer: Brett Cohen Production: Cameron Sears Co- Producer: Dan Healy Unknown: David Lemieux Vocals: Donna Godchaux Unknown: George Horn Unknown: Hale Milfgrim Production: James Austin Assistant Mix Engineer: Jeffrey Boden Guitar, Vocals: Jerry Garcia Unknown: Jimmy Edwards Remastering Engineer: Joe Gastwirt Additional Production: Joe Gastwirt Assistant Mix Engineer: John Hagen Horns Arranger: John Kahn Unknown: John Kahn Percussion: Jordan Amarantha Keyboards, Vocals: Keith Godchaux Producer: Lowell George Featu...
Music video by TARA MCDONALD performing DELIRIOUS by DAVID GUETTA ft TARA MCDONALD for Gum Prod/EMI Records. Follow Tara McDonald: http://www.taramcdonald.tv http://www.facebook.com/taramcdonaldofficial http://twitter.com/TaraMcDonaldTV http://youtube.com/user/TaraMcDonaldTV https://youtube.com/user/TaraMcDonaldTVVEVO http://instagram.com/taramcdonaldtv
Join Sidney Samson on facebook: http://on.fb.me/SidneySamson Join us on Facebook: http://on.fb.me/SpinninRecords Follow us on Twitter: http://twitter.com/spinninrecords Check out our playlists on Spotify: http://spoti.fi/RockTheHouze Join us on G+ : http://gplus.to/spinninrecords Buy here on Beatport : http://bit.ly/SSTMDY Sidney Samson presents a more blissed out sound than we are used to from him. With Tara McDonald adding her fantastic vocals 'Dynamite' rocks the house every time. Huge Nicky Romero Remix included. David Guetta: 'Nicky romero spices it up' David Tort: 'Interesting Nikki Romero remix' Bingo Players: 'Full support on Nicky Romero remix' DJ DLG: 'Massive!' Robbie Rivera: 'Cool release!' Marco V: 'Nice remix from Nicky!' --- The Spinnin’ Records YouTube channel is the h...
Music video by Tara McDonald performing greatest hits live at Sea Dance/Exit Festival 2014 (Budva, Montenegro) (C) 2014 Tara McDonald Ltd, licence exclusive Mercury/Universal Music France Follow Tara McDonald: http://www.taramcdonald.tv http://www.facebook.com/taramcdonaldofficial http://twitter.com/TaraMcDonaldTV http://www.youtube.com/user/TaraMcDonaldTV http://www.vevo.com/artist/tara-mcdonald http://instagram.com/taramcdonaldtv
Music video by TARA MCDONALD performing GIVE ME MORE. (C) 2013 Tara McDonald Ltd/Mercury-Universal. Follow Tara McDonald: http://www.taramcdonald.tv http://www.facebook.com/taramcdonaldofficial http://twitter.com/TaraMcDonaldTV http://youtube.com/user/TaraMcDonaldTV https://youtube.com/user/TaraMcDonaldTVVEVO http://instagram.com/taramcdonaldtv
Découvrez le tout nouveau clip de Tara McDonald « Shooting Star » en featuring avec Zaho iTunes : http://po.st/iTunesTaraZaho Google Play : http://po.st/FuHZxR Facebook : https://www.facebook.com/taramcdonaldofficial Twitter : https://twitter.com/TaraMcDonaldTV Site off : http://www.taramcdonald.tv/ Music video by Tara McDonald performing Shooting Star. (C) 2013 Tara McDonald Ltd
David Vendetta vs. Tara McDonald ft. Alim - I'm Your Goddess from Ultra Music. Buy his album 'Vendetta' here: http://bit.ly/cEsoAS Ultra Music is one step ahead in the world of dance music and is a leading independent electronic label. Ultra's current roster includes North American artists deadmau5, Wolfgang Gartner, Kaskade, Roger Sanchez, Markus Schulz, Tommie Sunshine, David Morales, Sharam, Cedric Gervais, and international artists Tiësto, Above & Beyond, Benny Benassi, Ferry Corsten, Armin van Buuren, Alex Gaudino, Kraak & Smaak, Morcheeba, Congorock, Adrian Lux, GRUM, Unicorn Kid, Fedde le Grand, and others. Ultra has featured releases from the aforementioned artists and many others such as Paul van Dyk, Paul Oakenfold, The Crystal Method, Timo Maas, Sasha & John Digweed, 4 Strin...
STAR FM 88.8 Ο Νο 1 σταθμός στις επιτυχίες στην Κέρκυρα.
Music video by TARA MCDONALD performing MY MY MY live for Plan children's charity. Amsterdam. (C) 2013 Tara McDonald Ltd/Mercury-Universal. Follow Tara McDonald: http://www.taramcdonald.tv http://www.facebook.com/taramcdonaldofficial http://twitter.com/TaraMcDonaldTV http://youtube.com/user/TaraMcDonaldTV https://youtube.com/user/TaraMcDonaldTVVEVO http://instagram.com/taramcdonaldtv
Listen on Spotify: http://open.spotify.com/album/09K6ojco74Sj0JirclFwOC The extended versions plus remixes of Beat For You are downloadable here: Download on Beatport: http://bit.ly/FAME037 Download on iTunes: http://bit.ly/FAME037iT BUT, the new Mischa Daniels album, 'Where You Wanna Go' is out now and also features this track! Buy on iTunes: http://tinyurl.com/WhereYouWannaGo-iTunes Buy on Beatport: http://bit.ly/bI7YbO Buy in the Armada Music Shop: http://bit.ly/9unica Mischa Daniels has always known what direction to head in. It has been music all the way, from the very point that he discovered the wonder of it, to the time being now. Now's an exciting time for the Dutchman, for he's finally taken the next step in his career. He's gathered his 15 years of DJ- and 10 years of produci...
video oficial pentru imnul Liberty Parade 2009 - Vibers (Avi, Rudi, DJ Optick, DJ Andi, Play & Win) and Tara McDonald - Revolution
I Need a Miracle may refer to:
Tell me what's it gonna take
I'm running out of prayers Lord
Can't you see I'm helpless
Down here on my knees
I'm begging you please
There's nothing left for me to do
I need a miracle from you
I'm tired of days
That feel like this
When hurt is like a rope
Wrapped around my wrist
I know your listening
I know it's in your hands
But still I'm out here in the dark
I just don't understand (understand)
Tell me what's it gonna take
I'm running out of prayers Lord
Can't you see i'm helpless
Down here on my knees
I'm begging you please
There's nothing left for me to do
I need a miracle from you
I know you're tired
With plans to keep
Off saving someone's life
Or calming stormy seas
But I'm not asking you
To bring me back the moon
All I need is a little help
That can only come from you
Tell me what's it gonna take
I'm running out of prayers Lord
Can't you see I'm helpless
Down here on my knees
I'm begging you please
There's nothing left for me to do
I need a miracle from you
How long can I go on this way
I need you to plead my case
To turn this thing around
Tell me what's it gonna take (what's it gonna take)
I'm running out of prayers Lord (out of prayer lord)
Can't you see I'm helpless (can't you see helpless)
Down here on my knees (I'mmm onn my knees)
I'm begging you please (I got nothing left to do I'm callng you Lord)
There's nothing left for me to do (I'm begging you pleeease)
I need a miracle from you
Tell me what's it gonna take (what's it gonna take)
I'm running out of prayers Lord (What's it gonna take, Lord)
Can't you see i'm helpless
Down here on my knees
I'm begging you please
There's nothing left for me to do