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

Podcasts:

  • Brandi Carlile - The Joke (Official Video)

    From the album "By The Way, I Forgive You" available now. http://elektrar.ec/BrandiCarlileBTWIFY Directed by Danny Clinch Produced by Lindha Narvaez for MILKT Choreography by Peter Leung Ballet sequence filmed by Middle Table Productions Ballerina is Michaela DePrince Connect with Brandi: http://brandicarlile.com http://facebook.com/brandicarlile http://twitter.com/brandicarlile http://instagram.com/brandicarlile Lyrics: You're feeling nervous, aren't you, boy? With your quiet voice and impeccable style Don't ever let them steal your joy And your gentle ways To keep 'em from running wild They can kick dirt in your face Dress you down, and tell you that your place Is in the middle, when they hate the way you shine I see you tugging on your shirt Trying to hide inside of it And h...

    published: 16 Feb 2018
  • Brandi Carlile & Catherine Carlile - Closer To Fine (From Barbie The Album) [Official Audio]

    Download/Stream: https://barbiethealbum.lnk.to/CloserToFine Barbie The Album Available Everywhere + Barbie The Movie In Theaters Now! Connect with Brandi: http://brandicarlile.com http://facebook.com/brandicarlile http://twitter.com/brandicarlile http://instagram.com/brandicarlile Text Brandi: (206) 339-5944 Follow Barbie The Album: https://www.instagram.com/barbiethealbum/ https://tiktok.com/@barbiethealbum https://twitter.com/barbiethealbum https://www.facebook.com/BarbieTheAlbum/ http://www.barbiethealbum.com/ Follow Barbie The Movie: https://www.instagram.com/barbiethemovie/ https://tiktok.com/@barbiethemovie https://twitter.com/barbiethemovie https://www.facebook.com/BarbieThemovie/ #BrandiCarlile #CatherineCarlile #CloserToFine #BarbieTheAlbum

    published: 21 Jul 2023
  • Brandi Carlile - Broken Horses (65th GRAMMY Awards Performance)

    Brandi Carlile performs "Broken Horses" at the 65th GRAMMY Awards. Stream the GRAMMY Award winning album "In These Silent Days": https://brandicarlile.lnk.to/inthesesilentdays Connect with Brandi: http://brandicarlile.com http://facebook.com/brandicarlile http://twitter.com/brandicarlile http://instagram.com/brandicarlile Text Brandi: (206) 339-5944 Lyrics: I wear my father's leather on the inside of my skin I'm a tried and weathered woman, but I won't be tried again Don't think that you can come for me without your Sunday best You had better call your priest and hope the devil gets the rest Before I do Oh, and I will do I have worn the jester's bells and I have vanished with the fools I have worshiped at the altar of the puppet master's rules I have held my tongue too many scenes...

    published: 21 Feb 2023
  • P!nk and Brandi Carlile - Nothing Compares 2 U - Tribute to Sinead O'Conner Cincinnati 7/26/23 HD

    P!nk and Brandi Carlile - Nothing Compares 2 U - Tribute to Sinead O'Conner who tragically passed away earlier that day. Cincinnati Ohio show 7/26/2023 HD Try to ignore the camera man standing in front of the pair. They eventually move to the left and improved my angle Hit Subscribe for more content just like this

    published: 27 Jul 2023
  • Brandi Carlile - The Story (Later Archive 2008)

    Brandi Carlile performs The Story on Later... with Jools Holland.

    published: 16 Oct 2021
  • Brandi Carlile - The Story (Saturday Night Live)

    Brandi Carlile performs "The Story" on Saturday Night Live, December 10, 2022. New album 'In These Silent Days' available now: https://brandicarlile.lnk.to/inthesesilentdays Connect with Brandi: http://brandicarlile.com http://facebook.com/brandicarlile http://twitter.com/brandicarlile http://instagram.com/brandicarlile Text Brandi: (206) 339-5944 Lyrics: All of these lines across my face Tell you the story of who I am So many stories of where I've been And how I got to where I am But these stories don't mean anything When you've got no one to tell them to It's true, I was made for you I climbed across the mountain tops Swam all across the ocean blue I crossed all the lines and I broke all the rules But baby, I broke them all for you Oh, because even when I was flat broke You made...

    published: 04 Feb 2023
  • Pink and Brandi Carlile pay tribute to Sinéad O'Connor with 'Nothing Compares 2 U'

    The two women were in Ohio for the first U.S. performance of Pink’s Summer Carnival Tour on Wednesday when they learned that O’Connor had died at age 56.

    published: 29 Jul 2023
  • Brandi Carlile - The Mother (Official Video)

    The official music video for Brandi Carlile's 'The Mother' from the album "By The Way, I Forgive You" available now. http://elektrar.ec/BrandiCarlileBTWIFY Connect with Brandi: http://brandicarlile.com http://facebook.com/brandicarlile http://twitter.com/brandicarlile http://instagram.com/brandicarlile Our all-female crew: Director: Jess Lowe Producer: Claire McGirr DP: Frances Chen 1st AC: Rachel Doughty Production Coordinator: Nikki Refghi Featuring: Cheyenne Baer, Victoria Joseph, Snehi S. Kapur, Helena Paek, Sheila Williams, Emily Rosario, Alliah Mourad and their families. Editor: Zoe Mougin Colorist: Sofie Borup Senior Audio Engineer: T Terressa Tate Special thanks to Genero: Mark Wild Roemer and Ellie Cameron-Krepp, Company 3, East of Normal, Final-Cut, Rock Paper Scissors N...

    published: 08 May 2019
Brandi Carlile - The Joke (Official Video)
4:59

Brandi Carlile - The Joke (Official Video)

  • Order:
  • Duration: 4:59
  • Uploaded Date: 16 Feb 2018
  • views: 11232259
From the album "By The Way, I Forgive You" available now. http://elektrar.ec/BrandiCarlileBTWIFY Directed by Danny Clinch Produced by Lindha Narvaez for MILKT Choreography by Peter Leung Ballet sequence filmed by Middle Table Productions Ballerina is Michaela DePrince Connect with Brandi: http://brandicarlile.com http://facebook.com/brandicarlile http://twitter.com/brandicarlile http://instagram.com/brandicarlile Lyrics: You're feeling nervous, aren't you, boy? With your quiet voice and impeccable style Don't ever let them steal your joy And your gentle ways To keep 'em from running wild They can kick dirt in your face Dress you down, and tell you that your place Is in the middle, when they hate the way you shine I see you tugging on your shirt Trying to hide inside of it And hide how much it hurts Let 'em laugh while they can Let 'em spin, let 'em scatter in the wind I have been to the movies, I've seen how it ends And the joke's on them You get discouraged, don't you, girl? It's your brother's world for a while longer We gotta dance with the devil on a river To beat the stream Call it living the dream, call it kicking the ladder They come to kick dirt in your face To call you weak and then displace you After carrying your baby on your back across the desert I saw your eyes behind your hair And you're looking tired, but you don't look scared Let 'em laugh while they can Let 'em spin, let 'em scatter in the wind I have been to the movies, I've seen how it ends And the joke's on them Let 'em laugh while they can Let 'em spin, let 'em scatter in the wind I have been to the movies, I've seen how it ends And the joke's on them Ooh, ooh, ooh, ooh Ooh, ooh, ooh, ooh Joe Bell Trailer song Joe Bell movie song
https://wn.com/Brandi_Carlile_The_Joke_(Official_Video)
Brandi Carlile & Catherine Carlile - Closer To Fine (From Barbie The Album) [Official Audio]
5:53

Brandi Carlile & Catherine Carlile - Closer To Fine (From Barbie The Album) [Official Audio]

  • Order:
  • Duration: 5:53
  • Uploaded Date: 21 Jul 2023
  • views: 107360
Download/Stream: https://barbiethealbum.lnk.to/CloserToFine Barbie The Album Available Everywhere + Barbie The Movie In Theaters Now! Connect with Brandi: http://brandicarlile.com http://facebook.com/brandicarlile http://twitter.com/brandicarlile http://instagram.com/brandicarlile Text Brandi: (206) 339-5944 Follow Barbie The Album: https://www.instagram.com/barbiethealbum/ https://tiktok.com/@barbiethealbum https://twitter.com/barbiethealbum https://www.facebook.com/BarbieTheAlbum/ http://www.barbiethealbum.com/ Follow Barbie The Movie: https://www.instagram.com/barbiethemovie/ https://tiktok.com/@barbiethemovie https://twitter.com/barbiethemovie https://www.facebook.com/BarbieThemovie/ #BrandiCarlile #CatherineCarlile #CloserToFine #BarbieTheAlbum
https://wn.com/Brandi_Carlile_Catherine_Carlile_Closer_To_Fine_(From_Barbie_The_Album)_Official_Audio
Brandi Carlile - Broken Horses (65th GRAMMY Awards Performance)
4:51

Brandi Carlile - Broken Horses (65th GRAMMY Awards Performance)

  • Order:
  • Duration: 4:51
  • Uploaded Date: 21 Feb 2023
  • views: 230472
Brandi Carlile performs "Broken Horses" at the 65th GRAMMY Awards. Stream the GRAMMY Award winning album "In These Silent Days": https://brandicarlile.lnk.to/inthesesilentdays Connect with Brandi: http://brandicarlile.com http://facebook.com/brandicarlile http://twitter.com/brandicarlile http://instagram.com/brandicarlile Text Brandi: (206) 339-5944 Lyrics: I wear my father's leather on the inside of my skin I'm a tried and weathered woman, but I won't be tried again Don't think that you can come for me without your Sunday best You had better call your priest and hope the devil gets the rest Before I do Oh, and I will do I have worn the jester's bells and I have vanished with the fools I have worshiped at the altar of the puppet master's rules I have held my tongue too many scenes before the final act With my children in the cheap seats and a zipper on my back Thanks to you No thanks to you Tethered in wide open spaces In fields that lead for miles Right into the barrel of a gun Mendin' up your fences with my Horses runnin' wild Only broken horses know to run I have ever so politely treaded softly for your grace I have whispered through the tears and pleaded sweetly to your face It is time to spit you out like lukewarm water from my mouth I will always taste the apathy, but I won't pass it down It dies with you You Tethered in wide open spaces In fields that lead for miles Right into the barrel of a gun Mendin' up your fences with my Horses runnin' wild Only broken horses know to run I wear my father's leather on the inside of my skin I'm a tried and weathered woman, but I won't be tried again Don't think that you can come for me without your Sunday best You had better call your priest and hope the devil gets the rest Before I do Oh, and I will do Tethered in wide open spaces In fields that lead for miles Right into the barrel of a gun Mendin' up your fences with my Horses runnin' wild Only broken horses know to run #BrandiCarlile #GRAMMYs
https://wn.com/Brandi_Carlile_Broken_Horses_(65Th_Grammy_Awards_Performance)
P!nk and Brandi Carlile - Nothing Compares 2 U - Tribute to  Sinead O'Conner  Cincinnati 7/26/23 HD
5:18

P!nk and Brandi Carlile - Nothing Compares 2 U - Tribute to Sinead O'Conner Cincinnati 7/26/23 HD

  • Order:
  • Duration: 5:18
  • Uploaded Date: 27 Jul 2023
  • views: 284956
P!nk and Brandi Carlile - Nothing Compares 2 U - Tribute to Sinead O'Conner who tragically passed away earlier that day. Cincinnati Ohio show 7/26/2023 HD Try to ignore the camera man standing in front of the pair. They eventually move to the left and improved my angle Hit Subscribe for more content just like this
https://wn.com/P_Nk_And_Brandi_Carlile_Nothing_Compares_2_U_Tribute_To_Sinead_O'Conner_Cincinnati_7_26_23_Hd
Brandi Carlile - The Story (Later Archive 2008)
4:01

Brandi Carlile - The Story (Later Archive 2008)

  • Order:
  • Duration: 4:01
  • Uploaded Date: 16 Oct 2021
  • views: 1008847
Brandi Carlile performs The Story on Later... with Jools Holland.
https://wn.com/Brandi_Carlile_The_Story_(Later_Archive_2008)
Brandi Carlile - The Story (Saturday Night Live)
4:41

Brandi Carlile - The Story (Saturday Night Live)

  • Order:
  • Duration: 4:41
  • Uploaded Date: 04 Feb 2023
  • views: 1642607
Brandi Carlile performs "The Story" on Saturday Night Live, December 10, 2022. New album 'In These Silent Days' available now: https://brandicarlile.lnk.to/inthesesilentdays Connect with Brandi: http://brandicarlile.com http://facebook.com/brandicarlile http://twitter.com/brandicarlile http://instagram.com/brandicarlile Text Brandi: (206) 339-5944 Lyrics: All of these lines across my face Tell you the story of who I am So many stories of where I've been And how I got to where I am But these stories don't mean anything When you've got no one to tell them to It's true, I was made for you I climbed across the mountain tops Swam all across the ocean blue I crossed all the lines and I broke all the rules But baby, I broke them all for you Oh, because even when I was flat broke You made me feel like a million bucks You do, and I was made for you You see the smile that's on my mouth It's hiding the words that don't come out And all of my friends who think that I'm blessed They don't know my head is a mess No, they don't know who I really am And they don't know what I've been through like you do And I was made for you All of these lines across my face Tell you the story of who I am So many stories of where I've been And how I got to where I am Oh, but these stories don't mean anything When you've got no one to tell them to It's true, I was made for you Oh, yeah, well it's true that I was made for you Saturday Night Live SNL #SaturdayNightLive #snl Grammys Grammy Awards 2023
https://wn.com/Brandi_Carlile_The_Story_(Saturday_Night_Live)
Pink and Brandi Carlile pay tribute to Sinéad O'Connor with 'Nothing Compares 2 U'
2:44

Pink and Brandi Carlile pay tribute to Sinéad O'Connor with 'Nothing Compares 2 U'

  • Order:
  • Duration: 2:44
  • Uploaded Date: 29 Jul 2023
  • views: 81
The two women were in Ohio for the first U.S. performance of Pink’s Summer Carnival Tour on Wednesday when they learned that O’Connor had died at age 56.
https://wn.com/Pink_And_Brandi_Carlile_Pay_Tribute_To_Sinéad_O'Connor_With_'Nothing_Compares_2_U'
Brandi Carlile - The Mother (Official Video)
3:49

Brandi Carlile - The Mother (Official Video)

  • Order:
  • Duration: 3:49
  • Uploaded Date: 08 May 2019
  • views: 2048145
The official music video for Brandi Carlile's 'The Mother' from the album "By The Way, I Forgive You" available now. http://elektrar.ec/BrandiCarlileBTWIFY Connect with Brandi: http://brandicarlile.com http://facebook.com/brandicarlile http://twitter.com/brandicarlile http://instagram.com/brandicarlile Our all-female crew: Director: Jess Lowe Producer: Claire McGirr DP: Frances Chen 1st AC: Rachel Doughty Production Coordinator: Nikki Refghi Featuring: Cheyenne Baer, Victoria Joseph, Snehi S. Kapur, Helena Paek, Sheila Williams, Emily Rosario, Alliah Mourad and their families. Editor: Zoe Mougin Colorist: Sofie Borup Senior Audio Engineer: T Terressa Tate Special thanks to Genero: Mark Wild Roemer and Ellie Cameron-Krepp, Company 3, East of Normal, Final-Cut, Rock Paper Scissors NY & LA, Scheimpflug, Significant Others, SMUGGLER Inc., Amhalise Casting and to our mothers. Produced in partnership with Genero.com, a global creative platform. LYRICS Welcome to the end of being alone inside your mind You're tethered to another and you're worried all the time You always knew the melody but you never heard it rhyme She's fair and she is quiet, Lord, she doesn't look like me She made me love the morning, she's a holiday at sea The New York streets are busy as they always used to be But I am the mother of Evangeline The first things that she took from me were selfishness and sleep She broke a thousand heirlooms I was never meant to keep She filled my life with color, canceled plans, and trashed my car But none of that was ever who we are Outside of my windows are the mountains and the snow I'll hold you while you're sleeping and I wish that I could go All my rowdy friends are out accomplishing their dreams But I am the mother of Evangeline And they've still got their morning paper and their coffee and their time And they still enjoy their evenings with the skeptics and the wine Oh, but all the wonders I have seen, I will see a second time From inside of the ages through your eyes You are not an accident where no one thought it through The world has stood against us, made us mean to fight for you And when we chose your name we knew that you'd fight the power too You're nothing short of magical and beautiful to me Oh, I'll never hit the big time without you So they can keep their treasure and their ties to the machine 'Cause I am the mother of Evangeline They can keep their treasure and their ties to the machine 'Cause I am the mother of Evangeline Ooh Ooh Ooh #BrandiCarlile #TheMother #ByTheWayIForgiveYou
https://wn.com/Brandi_Carlile_The_Mother_(Official_Video)
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Brandi Carlile - The Joke (Official Video)
    4:59
    Brandi Carlile - The Joke (Official Video)remove from playlist
  • Brandi Carlile & Catherine Carlile - Closer To Fine (From Barbie The Album) [Official Audio]
    5:53
    Brandi Carlile & Catherine Carlile - Closer To Fine (From Barbie The Album) [Official Audio]remove from playlist
  • Brandi Carlile - Broken Horses (65th GRAMMY Awards Performance)
    4:51
    Brandi Carlile - Broken Horses (65th GRAMMY Awards Performance)remove from playlist
  • P!nk and Brandi Carlile - Nothing Compares 2 U - Tribute to  Sinead O'Conner  Cincinnati 7/26/23 HD
    5:18
    P!nk and Brandi Carlile - Nothing Compares 2 U - Tribute to Sinead O'Conner Cincinnati 7/26/23 HDremove from playlist
  • Brandi Carlile - The Story (Saturday Night Live)
    4:41
    Brandi Carlile - The Story (Saturday Night Live)remove from playlist
  • Pink and Brandi Carlile pay tribute to Sinéad O'Connor with 'Nothing Compares 2 U'
    2:44
    Pink and Brandi Carlile pay tribute to Sinéad O'Connor with 'Nothing Compares 2 U'remove from playlist
  • Brandi Carlile - The Mother (Official Video)
    3:49
    Brandi Carlile - The Mother (Official Video)remove from playlist
PLAYLIST TIME: 0:00 / 36:16

Brandi Carlile - The Joke (Official Video)

From the album "By The Way, I Forgive You" available now. http://elektrar.ec/BrandiCarlileBTWIFY Directed by Danny Clinch Produced by Lindha Narvaez for MILKT Choreography by Peter Leung Ballet sequence filmed by Middle Table Productions Ballerina is Michaela DePrince Connect with Brandi: http://brandicarlile.com http://facebook.com/brandicarlile http://twitter.com/brandicarlile http://instagram.com/brandicarlile Lyrics: You're feeling nervous, aren't you, boy? With your quiet voice and impeccable style Don't ever let them steal your joy And your gentle ways To keep 'em from running wild They can kick dirt in your face Dress you down, and tell you that your place Is in the middle, when they hate the way you shine I see you tugging on your shirt Trying to hide inside of it And hide how much it hurts Let 'em laugh while they can Let 'em spin, let 'em scatter in the wind I have been to the movies, I've seen how it ends And the joke's on them You get discouraged, don't you, girl? It's your brother's world for a while longer We gotta dance with the devil on a river To beat the stream Call it living the dream, call it kicking the ladder They come to kick dirt in your face To call you weak and then displace you After carrying your baby on your back across the desert I saw your eyes behind your hair And you're looking tired, but you don't look scared Let 'em laugh while they can Let 'em spin, let 'em scatter in the wind I have been to the movies, I've seen how it ends And the joke's on them Let 'em laugh while they can Let 'em spin, let 'em scatter in the wind I have been to the movies, I've seen how it ends And the joke's on them Ooh, ooh, ooh, ooh Ooh, ooh, ooh, ooh Joe Bell Trailer song Joe Bell movie song
4:59
Brandi Carlile - The Joke (Official Video)
From the album "By The Way, I Forgive You" available now. http://elektrar.ec/BrandiCarlile...
published: 16 Feb 2018
Play in Full Screen
5:53
Brandi Carlile & Catherine Carlile - Closer To Fine (From Barbie The Album) [Official Audio]
Download/Stream: https://barbiethealbum.lnk.to/CloserToFine Barbie The Album Available Eve...
published: 21 Jul 2023
Play in Full Screen
4:51
Brandi Carlile - Broken Horses (65th GRAMMY Awards Performance)
Brandi Carlile performs "Broken Horses" at the 65th GRAMMY Awards. Stream the GRAMMY Awar...
published: 21 Feb 2023
Play in Full Screen
5:18
P!nk and Brandi Carlile - Nothing Compares 2 U - Tribute to Sinead O'Conner Cincinnati 7/26/23 HD
P!nk and Brandi Carlile - Nothing Compares 2 U - Tribute to Sinead O'Conner who tragicall...
published: 27 Jul 2023
Play in Full Screen
4:01
Brandi Carlile - The Story (Later Archive 2008)
Brandi Carlile performs The Story on Later... with Jools Holland.
published: 16 Oct 2021
Play in Full Screen
4:41
Brandi Carlile - The Story (Saturday Night Live)
Brandi Carlile performs "The Story" on Saturday Night Live, December 10, 2022. New album ...
published: 04 Feb 2023
Play in Full Screen
2:44
Pink and Brandi Carlile pay tribute to Sinéad O'Connor with 'Nothing Compares 2 U'
The two women were in Ohio for the first U.S. performance of Pink’s Summer Carnival Tour o...
published: 29 Jul 2023
Play in Full Screen
3:49
Brandi Carlile - The Mother (Official Video)
The official music video for Brandi Carlile's 'The Mother' from the album "By The Way, I F...
published: 08 May 2019
Play in Full Screen
'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: Brandi Carlile

Edit

San Diego concert picks: Elton John, Willie Nelson, Diana Krall, Los Mirlos

San Diego Union-Tribune 08 May 2025
And it’s for a very good cause ... concert since the March release of his absorbing new album with Brandi Carlile, “Who Believes In Angels?” (For good measure, John also appears in the upcoming movie “Spinal Tap II ... 8 p.m. Friday.
Edit

NASHVILLE PRIDE ANNOUNCES THE 2025 FESTIVAL ENTERTAINMENT LINEUP FEATURING KIM PETRAS, 4 NON BLONDES, BIG ...

The Tennessee Tribune 03 May 2025
The full festival line up is at NashvillePride.org ... Elton John asked Jake to perform with Grammy award winner Brandi Carlile at his feted 30th annual Oscar-viewing AIDS foundation benefit and was the opening act for the Panic! At the Disco arena tour.
Edit

Ames' all-female choir, Good Company, presents 'Songs of Solidarity, Sisterhood \u0026 Freedom’

Ames Tribune 02 May 2025
The group’s spring concert will be held at 7 p.m ... This powerful and inspiring concert will feature songs about women’s voices, strength and unity, including “What’s Keeping You From Singing” and “A Beautiful Noise,” by Alicia Keys and Brandi Carlile.
Edit

Eric Church on his New Orleans-inspired new album and that polarizing Stagecoach set

The Los Angeles Times 02 May 2025
the Machine,” his first album since 2021 ... You opened Chief’s a little over a year ago ... Sure ... I was like, “Yes, Sir Paul, I would love to come sing ‘Hey Jude’ with you.” So me and Brandi Carlile and a few others, we went out and sang with Paul McCartney.
Edit

Brandi Carlile and Elton John's new album broken down

Decatur Daily 01 May 2025
SEATTLE — What a month it's been for Brandi Carlile, building up to the buzziest album release of her career. For anyone living under a sequins-encrusted rock, the Maple Valley songsmith teamed up with her longtime hero-pal Elton John for ... .
Edit

Sheryl Crow lauds young talented female singers

The News International 01 May 2025
Sheryl Crow lauds young talented female singers. Sheryl Crow has recently expressed her admiration for new lot of women singers including Taylor Swift, Chappell Roan, Olivia Rodrigo and Phoebe Bridgers ... There’s Brandi [Carlile] and Courtney Barnett.” ... .
Edit

Sheryl Crow tells aspiring songwriters to go to 'college of Taylor Swift'

Music News 01 May 2025
Sheryl Crow says anyone who wants to learn the art of songwriting should go to the "college of Taylor Swift" ... In a new cover story for Variety’s first-ever Power of Women Nashville issue, she said ... There’s Brandi [Carlile] and Courtney Barnett ... .
Edit

Terror for Sheryl Crow as armed man breaks into her barn on remote Tennessee property ...

The Daily Mail 01 May 2025
So long Tesla ... 'Let's face it ... Nashville edition of the magazine, the You and Me Time songstress had heavy praise for colleagues like P!NK, Chappell Roan, Olivia Rodrigo, and Phoebe Bridgers, Taylor Swift, Brandi Carlile, and Courtney Barnett ... .
Edit

Girlfriends behind rap group Kneecap revealed as one of Ireland's 'most sought-after singers' and a ...

The Daily Mail 01 May 2025
The trio - with respective real names of Naoise Ó Cairealláin, Liam Óg Ó hAnnaid and J. J ... DJ Próvaí, real name J ... They are due to perform on the Saturday as are other acts such as Charli XCX, Neil Young, Raye, Brandi Carlile, Gary Numan and Nick Lowe ... .
Edit

‘Do something with your actions. Don’t just write a cheque’: Bonnie Raitt on activism, making men cry and 38 years of sobriety

The Observer 01 May 2025
LondonLuvver. I wasn’t expecting to do music for a job ... ToneRay ... Then I would say my friend Brandi Carlile, who has done so much for legacy artists like Joni Mitchell and Tanya Tucker – she is such a fan of music, and making such great music of her own.
Edit

'A huge fan of community radio,' Pieta Brown readies for KHOI fundraising concert at Stephens

Ames Tribune 30 Apr 2025
Brown opened for Brandi Carlile at Stephens. Brown performed at the iconic Ames venue about a decade ago when she opened for Brandi Carlile. “Brandi Carlile was also performing with the symphony, and so ...
Edit

Soundgarden guitarist on finding Chris Cornell’s replacement for Rock & Roll Hall of Fame induction: ...

NME 29 Apr 2025
... last December for a benefit event where they were fronted temporarily by Shaina Shepherd, once during a tribute show for the singer in 2019 and again in 2021 when they performed with Brandi Carlile.
Edit

BeachLife Festival returns to rock Redondo Beach for its 6th year

Daily Breeze 28 Apr 2025
“Luckily, the South Bay has embraced us ... And after the 2021 festival, Sanford sought to expand the breand, launching the country-inspired BeachLife Ranch, which took place in 2022 and 2023 with headliners Brandi Carlile and Jack Johnson, among others.
Edit

Now streaming and on DVD: Mikey Madison deserves the 'Anora' Oscar, no question

Journal Gazette 27 Apr 2025
Perfect for 2024. Anora (Mikey Madison) shows off her ring after she's engaged. NEON ... Simple, right?. Not really ... Rep ... NEON ... Brandi Carlile, left, and Catherine Shepherd arrive at the Oscars on Sunday, March 2, 2025, at the Dolby Theatre in Los Angeles ... .
×