- published: 23 Feb 2023
- views: 187302
'+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; })); }); -->
John Townes Van Zandt (March 7, 1944 – January 1, 1997), best known as Townes Van Zandt, was an American singer-songwriter. Many of his songs, including "If I Needed You" and "To Live Is to Fly", are considered standards of their genre. He had a small and devoted fanbase, but never had a successful album or single and even had difficulty keeping his recordings in print. In 1983, six years after Emmylou Harris had first popularized it, Willie Nelson and Merle Haggard covered his song "Pancho and Lefty", scoring a number one hit on the Billboard country music charts. Much of his life was spent touring various dive bars, often living in cheap motel rooms, backwoods cabins, etc.
He suffered from a series of drug addictions, alcoholism, and bipolar disorder. When young, insulin shock therapy erased much of his long-term memory.
Van Zandt died on New Years Day 1997 from health problems stemming from years of substance abuse. The 2000s saw a resurgence of interest in Van Zandt. During the decade, two books, a documentary film titled Be Here to Love Me, and a number of magazine articles about the singer were written.
Townes Van Zandt is the third release by country singer/songwriter Townes Van Zandt, released in 1969. It includes re-recordings of four songs from his 1968 debut album, including the first serious song he ever wrote, "Waitin' Around To Die".
Full album stream of The Best of Townes Van Zandt by Townes Van Zandt Listen/Purchase: https://townesvanzandt.ffm.to/thebestoftownesvanzandt.OYD 00:00 For the Sake of the Song 05:22 Pancho & Lefty 09:02 To LIve is to Fly 12:17 Fare Thee Well, Miss Carousel 17:39 I’ll Be Here in the Morning 20:39 St. John the Gambler 23:44 If I Needed You 27:28 Black Widow Blues 29:53 Tecumseh Valley 34:48 Flyin’ Shoes 39:17 Waiting Around to Die 42:02 Lungs 44:31 You Are Not Needed Now 48:43 Tower Song 52:53 Nothin’ 55:39 Rex’s Blues _____ https://www.fatpossum.com/ Follow Fat Possum on... Instagram: https://www.instagram.com/fatpossum/ Facebook: https://www.facebook.com/FatPossumRecords Twitter: https://twitter.com/FatPossum YouTube: https://www.youtube.com/channel/UCVe1YCIwL5vsLIFmDmYlLYQ Fat P...
Townes Van Zandt - Self Titled - Full Album Mix (Official Audio) Listen/Purchase: https://townesvanzandt.lnk.to/TVZID 00:00 For the Sake of the Song 05:22 Columbine 07:56 Waiting Around to Die 10:41 Don’t Take It Too Bad 13:35 Colorado Girl 16:53 Lungs 19:22 I’ll Be Here in the Morning 22:22 Fare Thee Well, Miss Carousel 27:44 (Quicksilver Daydreams Of) Maria 32:29 None but the Rain _____ https://www.fatpossum.com/ Follow Fat Possum on... Instagram: https://www.instagram.com/fatpossum/ Facebook: https://www.facebook.com/FatPossumRecords Twitter: https://twitter.com/FatPossum YouTube: https://www.youtube.com/channel/UCVe1YCIwL5vsLIFmDmYlLYQ Fat Possum is a Record Label based in Oxford, Mississippi, New York & London #TownesVanZandt #SelfTitled
Townes Van Zandt - Our Mother the Mountain Full Album Stream Listen & Purchase: https://townesvanzandt.ffm.to/ourmotherthemountain.OYD 00:00 Be Here to Love Me 02:38 Kathleen 05:25 She Came and She Touched Me 09:28 Like a Summer Thursday 12:32 Our Mother the Mountain 16:54 Second Lover’s Song 19:10 St. John the Gambler 22:15 Tecumseh Valley 27:10 Snake Mountain Blues 29:49 My Proud Mountains 34:53 Why She’s Acting This Way _____ https://www.fatpossum.com/ Follow Fat Possum on... Instagram: https://www.instagram.com/fatpossum/ Facebook: https://www.facebook.com/FatPossumRecords Twitter: https://twitter.com/FatPossum YouTube: https://www.youtube.com/channel/UCVe1YCIwL5vsLIFmDmYlLYQ Fat Possum is a Record Label based in Oxford, Mississippi, New York & London #TownesVanZandt #TVZ #...
Live at The Old Quarter, Houston, Texas by Townes Van Zandt (Official Audio) Listen/Purchase: https://townesvanzandt.ffm.to/liveattheoldquarterhoustantexas.OYD Disc 1: 00:00:00 Announcement (by Dale Soffar) 00:00:44 Pancho & Lefty 00:04:52 Mr. Mudd & Mr. Gold 00:08:32 Don’t You Take It Too Bad 00:11:29 Two Girls 00:15:20 Fraternity Blues 00:18:27 If I Needed You 00:21:45 Brand New Companion 00:26:05 White Freightliner Blues 00:29:31 To Live Is to Fly 00:32:51 She Came and She Touched Me 00:37:00 Talking Thunderbird Blues 00:39:33 Rex’s Blues 00:42:39 Nine Pound Hammer Disc 2: 00:45:45 For the Sake of the Song 00:50:33 Chauffeur's Blues 00:55:06 No Place to Fall 00:58:14 Loretta 01:00:40 Kathleen 01:03:34 Why She’s Acting This Way 01:09:16 Cocaine Blues 01:12:37 Who Do You Love? 01:16:2...
Full album stream of Rear View Mirror by Townes Van Zandt Listen/Purchase: https://townesvanzandt.ffm.to/rearviewmirror.OYD 00:00 Pancho and Lefty 04:01 If I Needed You 06:43 For the Sake of the Song 11:21 Our Mother Mountain 14:19 To Live Is to Fly 18:27 Lungs 21:04 Flyin’ Shoes 24:35 No Place to Fall 27:46 Dollar Bill Blues 30:18 White Freight Liner Blues 34:35 Tecumseh Valley 39:16 Don’t You Take It Too Bad 42:51 Tower Song 45:57 Rex’s Blues 48:19 Brother Flower 51:03 Waitin’ Round to Die 54:15 Colorado Girl _____ https://www.fatpossum.com/ Follow Fat Possum on... Instagram: https://www.instagram.com/fatpossum/ Facebook: https://www.facebook.com/FatPossumRecords Twitter: https://twitter.com/FatPossum YouTube: https://www.youtube.com/channel/UCVe1YCIwL5vsLIFmDmYlLYQ Fat Possum...
Full album stream of At My Window by Townes Van Zandt Listen/Purchase: https://townesvanzandt.ffm.to/atmywindow.OYD 0:00:00 Snowin' On Raton 0:03:52 Blue Wind Blew 0:06:31 At My Window 0:10:40 For The Sake Of The Song 0:15:04 Ain't Leavin' Your Love 0:17:37 Buckskin Stallion Blues 0:20:38 Little Sundance #2 0:23:35 Still Lookin' For You 0:26:12 Gone, Gone Blues 0:28:55 The Catfish Song _____ https://www.fatpossum.com/ Follow Fat Possum on... Instagram: https://www.instagram.com/fatpossum/ Facebook: https://www.facebook.com/FatPossumRecords Twitter: https://twitter.com/FatPossum YouTube: https://www.youtube.com/channel/UCVe1YCIwL5vsLIFmDmYlLYQ Fat Possum is a Record Label based in Oxford, Mississippi, New York & London #TownesVanZandt #TVZ #AtMyWindow
Full album stream of Roadsongs by Townes Van Zandt Listen/Purchase: https://townesvanzandt.ffm.to/roadsongs.OYD https://www.fatpossum.com 00:00 IRA Hayes 03:45 Dead Flowers 08:32 Automobile Blues 13:56 Coo Coo 18:38 Fraulein 21:48 Hello Central 25:58 Indian Cowboy 28:40 Racing in the Streets 31:42 My Starter Won’t Start 35:03 Texas River Song 37:34 Wabash Cannonball 41:05 Short-Haired Woman Blues 44:45 Man Gave Names to All the Animals 49:11 Little Willie the Gambler 52:56 Cocaine Blues #TownesVanZandt #TVZ #Roadsongs
Townes Van Zandt - ‘Delta Momma Blues’ (Official Audio) Listen/Purchase: https://townesvanzandt.ffm.to/deltamommablues.OYD Tracklist: 00:00 F.F.V. 03:37 Delta Momma Blues 07:38 Only Him or Me 10:10 Turnstyled, Junkpiled 13:36 Tower Song 17:46 Come Tomorrow 20:45 Brand New Companion 25:31 Where I Lead Me 28:23 Rake 32:30 Nothin’ _____ https://www.fatpossum.com/ Follow Fat Possum on... Instagram: https://www.instagram.com/fatpossum/ Facebook: https://www.facebook.com/FatPossumRecords Twitter: https://twitter.com/FatPossum YouTube: https://www.youtube.com/channel/UCVe1YCIwL5vsLIFmDmYlLYQ Fat Possum is a Record Label based in Oxford, Mississippi, New York & London #TownesVanZandt #TVZ #DeltaMommaBlues
Provided to YouTube by Triple Vision Record Distribution Doctor My Eyes (Live) · Jackson Browne Live At The Main Point ℗ 2018 The Media Champ Released on: 1975-09-07 Music Publisher: Copyright Control Auto-generated by YouTube.
Full album stream of The Highway Kind by Townes Van Zandt Listen/Purchase: https://townesvanzandt.ffm.to/thehighwaykind.OYD 00:00 Still Lookin’ for You 02:27 Dublin Blues 05:23 Lost Highway 08:13 Lover’s Lullaby 12:21 The Hole 17:42 Highway Kind 20:51 (I Heard That) Lonesome Whistle 23:24 No Deal 26:36 Blaze’s Blues 29:42 Darcy Farrow 33:04 My Proud Mountains 36:38 Wreck on the Highway 40:15 Rake 43:45 Ira Hayes _____ https://www.fatpossum.com/ Follow Fat Possum on... Instagram: https://www.instagram.com/fatpossum/ Facebook: https://www.facebook.com/FatPossumRecords Twitter: https://twitter.com/FatPossum YouTube: https://www.youtube.com/channel/UCVe1YCIwL5vsLIFmDmYlLYQ Fat Possum is a Record Label based in Oxford, Mississippi, New York & London #TownesVanZandt #TVZ #TheHighwayK...
John Townes Van Zandt (March 7, 1944 – January 1, 1997), best known as Townes Van Zandt, was an American singer-songwriter. Many of his songs, including "If I Needed You" and "To Live Is to Fly", are considered standards of their genre. He had a small and devoted fanbase, but never had a successful album or single and even had difficulty keeping his recordings in print. In 1983, six years after Emmylou Harris had first popularized it, Willie Nelson and Merle Haggard covered his song "Pancho and Lefty", scoring a number one hit on the Billboard country music charts. Much of his life was spent touring various dive bars, often living in cheap motel rooms, backwoods cabins, etc.
He suffered from a series of drug addictions, alcoholism, and bipolar disorder. When young, insulin shock therapy erased much of his long-term memory.
Van Zandt died on New Years Day 1997 from health problems stemming from years of substance abuse. The 2000s saw a resurgence of interest in Van Zandt. During the decade, two books, a documentary film titled Be Here to Love Me, and a number of magazine articles about the singer were written.
Ride the blue wind, high and free
She'll lead you down through misery
Leave you low, come time to go
Alone and low, as low can be
Well, if I had a nickel, I'd find a game
If I won a dollar, I'd make it rain
If it rained an ocean, I'd drink it dry
And lay me down dissatisfied
It's legs to walk and thoughts to fly
Eyes to laugh and lips to cry
A restless tongue to classify
All born to grow and grown to die
So tell my baby, I said so long
Tell my mother, I did no wrong
Tell my brother to watch his own
And tell my friends to mourn me none
I'm chained upon the face of time
Feelin' full of foolish rhyme
There ain't no dark till something shines
I'm bound to leave the dark behind
Well, ride the blue wind, high and free
She'll lead you down through misery
Leave you low, come time to go
Alone and low, as low can be