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

Autumn Records

Autumn Records was a 1960s San Francisco-based pop record label. Among the notable acts on its roster was The Beau Brummels, a band who released a pair of top 20 singles, "Laugh, Laugh" and "Just a Little".

Also on the Autumn Records roster was The Great Society, a short-lived Haight-Ashbury group that recorded the first version of "Somebody to Love," which became a 1967 hit for Jefferson Airplane.

The label dissolved in 1966. Tom Donahue, a San Francisco DJ, who worked for KSAN radio, owned the record label. Donahue invented the genre "underground radio."

History

Rock producer/DJ Sly Stone was a producer for the label producing Bobby Freeman's "C'Mon And Swim"/"Do The Swim," a hit on the national and regional charts in 1965. Freeman had had some hits on Jubilee in 1958-60, and on King in the early 1960s, but became the first artist on Autumn to have any big-selling hits. Stone produced the Psyrcle's 45 on Lorna, which did not sell well regionally or nationally. The Psyrcle took a hiatus, rehearsed and regrouped before becoming the Rockets (later Crazy Horse, Neil Young's backing band), a band with eight members.

Podcasts:

  • Kristina Warren @ Autumn Records - June 24, 2023

    Kristina Warren - Live in-store performance at Autumn Records, Winooski VT, June 24th, 2023 filmed by Jay Blanchard

    published: 26 Jun 2023
  • Saint Silva @ Autumn Records - June 24, 2023

    Saint Silva - Live in-store performance at Autumn Records, Winooski VT, June 24th, 2023 filmed by Jay Blanchard

    published: 25 Jun 2023
  • Grein @ Autumn Records - May 29, 2023

    Grein - Live in-store performance at Autumn Records, Winooski VT, May 29th, 2023 filmed by Jay Blanchard

    published: 31 May 2023
  • Russel The Leaf @ Autumn Records - July 16, 2023

    Russel The Leaf - Live in-store performance at Autumn Records, Winooski VT, July 16th, 2023 filmed by Jay Blanchard

    published: 18 Jul 2023
  • Alina Jacobs & Noa Jacques @ Autumn Records - July 16, 2023

    Alina Jacobs & Noa Jacques - Live in-store performance at Autumn Records, Winooski VT, July 16th, 2023 filmed by Jay Blanchard

    published: 18 Jul 2023
  • Ouzkxqlzn @ Autumn Records - May 29, 2023

    Ouzkxqlzn - Live in-store performance at Autumn Records, Winooski VT, May 29th, 2023 filmed by Jay Blanchard

    published: 30 May 2023
  • Zach Rowden @ The Phoenix, Waterbury, VT - July 29, 2023

    Zach Rowden performs at The Phoenix art gallery and music hall in Waterbury, VT on July 29th, 2023 as part of an evening of solo, acoustic improvised music from Outer Sounds (Greg Davis) and turnMusic. https://www.outersoundsvinyl.com/ https://thephoenixvt.com/turnmusic filmed by Jay Blanchard

    published: 30 Jul 2023
  • Ver Sacrum @ Autumn Records - April 12, 2023

    Ver Sacrum - Live in-store performance at Autumn Records, Winooski VT, April 12th, 2023 filmed by Jay Blanchard

    published: 17 Apr 2023
  • Autumn Vibes 🍁 [Relaxing Lofi Beats Mix 2023]

    Autumn/Fall inspired chill lofi beats mix taken from our latest compilation album - LoFi Café Records Presents: Autumn Blend 2023 Warm your soul with this relaxing fall lofi mix 🍁 Listen to the the album: https://loficaferecords.fanlink.to/autumn-blend-2023 Tracklist 🎶 00:00 intro 00:07 Darsena & Lenny Loops - About Last Life 02:22 Juliàn - Escape Reality 04:36 drkmnd - Paradise Lights 07:16 Bogomolove - Zephyr's Embrace 09:24 Dreama - Sun and Moon 12:19 wood. - Forest Walks 14:46 Rebecca Mardal - You Might Have To Think It Over 17:27 Chalm - Simpler Times 20:08 Hendy & koolmonke - Cascades 22:12 Nadav Cohen & Pierson Booth - Oceans 25:29 lost.mindd - recharge 27:39 beyond pluto - near the end 29:46 muun & mėlyna - Pausing Time 32:08 Basmati & Cookie Tapes - Clear Conscience 34:15 LUQĘT...

    published: 14 Sep 2023
  • Pete Edwards @ Autumn Records - May 4, 2023

    Pete Edwards - Live in-store performance at Autumn Records, Winooski VT, May 4th, 2023 filmed by Greg Davis

    published: 06 May 2023
Kristina Warren @ Autumn Records - June 24, 2023
25:11

Kristina Warren @ Autumn Records - June 24, 2023

  • Order:
  • Duration: 25:11
  • Uploaded Date: 26 Jun 2023
  • views: 66
Kristina Warren - Live in-store performance at Autumn Records, Winooski VT, June 24th, 2023 filmed by Jay Blanchard
https://wn.com/Kristina_Warren_Autumn_Records_June_24,_2023
Saint Silva @ Autumn Records - June 24, 2023
23:20

Saint Silva @ Autumn Records - June 24, 2023

  • Order:
  • Duration: 23:20
  • Uploaded Date: 25 Jun 2023
  • views: 36
Saint Silva - Live in-store performance at Autumn Records, Winooski VT, June 24th, 2023 filmed by Jay Blanchard
https://wn.com/Saint_Silva_Autumn_Records_June_24,_2023
Grein @ Autumn Records - May 29, 2023
34:32

Grein @ Autumn Records - May 29, 2023

  • Order:
  • Duration: 34:32
  • Uploaded Date: 31 May 2023
  • views: 74
Grein - Live in-store performance at Autumn Records, Winooski VT, May 29th, 2023 filmed by Jay Blanchard
https://wn.com/Grein_Autumn_Records_May_29,_2023
Russel The Leaf @ Autumn Records  - July 16, 2023
21:00

Russel The Leaf @ Autumn Records - July 16, 2023

  • Order:
  • Duration: 21:00
  • Uploaded Date: 18 Jul 2023
  • views: 23
Russel The Leaf - Live in-store performance at Autumn Records, Winooski VT, July 16th, 2023 filmed by Jay Blanchard
https://wn.com/Russel_The_Leaf_Autumn_Records_July_16,_2023
Alina Jacobs & Noa Jacques @ Autumn Records  - July 16, 2023
21:00

Alina Jacobs & Noa Jacques @ Autumn Records - July 16, 2023

  • Order:
  • Duration: 21:00
  • Uploaded Date: 18 Jul 2023
  • views: 133
Alina Jacobs & Noa Jacques - Live in-store performance at Autumn Records, Winooski VT, July 16th, 2023 filmed by Jay Blanchard
https://wn.com/Alina_Jacobs_Noa_Jacques_Autumn_Records_July_16,_2023
Ouzkxqlzn @ Autumn Records  - May 29, 2023
24:49

Ouzkxqlzn @ Autumn Records - May 29, 2023

  • Order:
  • Duration: 24:49
  • Uploaded Date: 30 May 2023
  • views: 30
Ouzkxqlzn - Live in-store performance at Autumn Records, Winooski VT, May 29th, 2023 filmed by Jay Blanchard
https://wn.com/Ouzkxqlzn_Autumn_Records_May_29,_2023
Zach Rowden @ The Phoenix, Waterbury, VT - July 29, 2023
20:09

Zach Rowden @ The Phoenix, Waterbury, VT - July 29, 2023

  • Order:
  • Duration: 20:09
  • Uploaded Date: 30 Jul 2023
  • views: 95
Zach Rowden performs at The Phoenix art gallery and music hall in Waterbury, VT on July 29th, 2023 as part of an evening of solo, acoustic improvised music from Outer Sounds (Greg Davis) and turnMusic. https://www.outersoundsvinyl.com/ https://thephoenixvt.com/turnmusic filmed by Jay Blanchard
https://wn.com/Zach_Rowden_The_Phoenix,_Waterbury,_Vt_July_29,_2023
Ver Sacrum @ Autumn Records  - April 12, 2023
17:11

Ver Sacrum @ Autumn Records - April 12, 2023

  • Order:
  • Duration: 17:11
  • Uploaded Date: 17 Apr 2023
  • views: 26
Ver Sacrum - Live in-store performance at Autumn Records, Winooski VT, April 12th, 2023 filmed by Jay Blanchard
https://wn.com/Ver_Sacrum_Autumn_Records_April_12,_2023
Autumn Vibes 🍁 [Relaxing Lofi Beats Mix 2023]
38:36

Autumn Vibes 🍁 [Relaxing Lofi Beats Mix 2023]

  • Order:
  • Duration: 38:36
  • Uploaded Date: 14 Sep 2023
  • views: 345
Autumn/Fall inspired chill lofi beats mix taken from our latest compilation album - LoFi Café Records Presents: Autumn Blend 2023 Warm your soul with this relaxing fall lofi mix 🍁 Listen to the the album: https://loficaferecords.fanlink.to/autumn-blend-2023 Tracklist 🎶 00:00 intro 00:07 Darsena & Lenny Loops - About Last Life 02:22 Juliàn - Escape Reality 04:36 drkmnd - Paradise Lights 07:16 Bogomolove - Zephyr's Embrace 09:24 Dreama - Sun and Moon 12:19 wood. - Forest Walks 14:46 Rebecca Mardal - You Might Have To Think It Over 17:27 Chalm - Simpler Times 20:08 Hendy & koolmonke - Cascades 22:12 Nadav Cohen & Pierson Booth - Oceans 25:29 lost.mindd - recharge 27:39 beyond pluto - near the end 29:46 muun & mėlyna - Pausing Time 32:08 Basmati & Cookie Tapes - Clear Conscience 34:15 LUQĘT x Strong.AL& - Falling Leaves 36:08 MALIWA & Fred Paci - Floating ➤ Subscribe to LoFi Café Records for more mixes @loficaferecords https://youtu.be/vhpMW4M57m4 https://youtu.be/W2WjTgDXJqU https://youtu.be/6zGw-1YQ1xA Follow LoFi Café Records ☕️ Instagram: https://www.instagram.com/loficaferecords/ Facebook: https://www.facebook.com/LoFiCafeRecords/ Spotify: https://open.spotify.com/user/dj755pqekg5cyszr1wu8uha1r?si=70c43a0cb1384d39&nd=1 Apple Music: https://music.apple.com/profile/loficaferecords Artwork created by: https://www.instagram.com/kiileray/ Animation by: https://www.fiverr.com/freelancers/easd41 Mix mood: Chillhop / Relaxing Music / Mellow Music / Mellow Lofi / Relaxing Lofi / Soft Music / Gentle Music / Ambient Music / Lofi Beats / Instrumental Music Mix Purpose: Autumn Music / Work From Home / Study Music / Background Music / Relax / Chill Beats to Relax / Relaxing Music For Stress Relief / Lofi Radio _____ Autumn Lofi Mix 2023 🍁 [Relaxing Lofi Beats Mix] Autumn Lofi Mix 2023 🍁 [Relaxing Lofi Beats Mix] Autumn Lofi Mix 2023 🍁 [Relaxing Lofi Beats Mix] #lofichill #autumn #backgroundmusic
https://wn.com/Autumn_Vibes_🍁_Relaxing_Lofi_Beats_Mix_2023
Pete Edwards @ Autumn Records  - May 4, 2023
17:22

Pete Edwards @ Autumn Records - May 4, 2023

  • Order:
  • Duration: 17:22
  • Uploaded Date: 06 May 2023
  • views: 15
Pete Edwards - Live in-store performance at Autumn Records, Winooski VT, May 4th, 2023 filmed by Greg Davis
https://wn.com/Pete_Edwards_Autumn_Records_May_4,_2023
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 4:03:10

Kristina Warren @ Autumn Records - June 24, 2023

Kristina Warren - Live in-store performance at Autumn Records, Winooski VT, June 24th, 2023 filmed by Jay Blanchard
25:11
Kristina Warren @ Autumn Records - June 24, 2023
Kristina Warren - Live in-store performance at Autumn Records, Winooski VT, June 24th, 202...
published: 26 Jun 2023
Play in Full Screen
23:20
Saint Silva @ Autumn Records - June 24, 2023
Saint Silva - Live in-store performance at Autumn Records, Winooski VT, June 24th, 2023 fi...
published: 25 Jun 2023
Play in Full Screen
34:32
Grein @ Autumn Records - May 29, 2023
Grein - Live in-store performance at Autumn Records, Winooski VT, May 29th, 2023 filmed by...
published: 31 May 2023
Play in Full Screen
21:00
Russel The Leaf @ Autumn Records - July 16, 2023
Russel The Leaf - Live in-store performance at Autumn Records, Winooski VT, July 16th, 202...
published: 18 Jul 2023
Play in Full Screen
21:00
Alina Jacobs & Noa Jacques @ Autumn Records - July 16, 2023
Alina Jacobs & Noa Jacques - Live in-store performance at Autumn Records, Winooski VT, Jul...
published: 18 Jul 2023
Play in Full Screen
24:49
Ouzkxqlzn @ Autumn Records - May 29, 2023
Ouzkxqlzn - Live in-store performance at Autumn Records, Winooski VT, May 29th, 2023 filme...
published: 30 May 2023
Play in Full Screen
20:09
Zach Rowden @ The Phoenix, Waterbury, VT - July 29, 2023
Zach Rowden performs at The Phoenix art gallery and music hall in Waterbury, VT on July 29...
published: 30 Jul 2023
Play in Full Screen
17:11
Ver Sacrum @ Autumn Records - April 12, 2023
Ver Sacrum - Live in-store performance at Autumn Records, Winooski VT, April 12th, 2023 fi...
published: 17 Apr 2023
Play in Full Screen
38:36
Autumn Vibes 🍁 [Relaxing Lofi Beats Mix 2023]
Autumn/Fall inspired chill lofi beats mix taken from our latest compilation album - LoFi C...
published: 14 Sep 2023
Play in Full Screen
17:22
Pete Edwards @ Autumn Records - May 4, 2023
Pete Edwards - Live in-store performance at Autumn Records, Winooski VT, May 4th, 2023 fil...
published: 06 May 2023
Play in Full Screen

Autumn Records

Autumn Records was a 1960s San Francisco-based pop record label. Among the notable acts on its roster was The Beau Brummels, a band who released a pair of top 20 singles, "Laugh, Laugh" and "Just a Little".

Also on the Autumn Records roster was The Great Society, a short-lived Haight-Ashbury group that recorded the first version of "Somebody to Love," which became a 1967 hit for Jefferson Airplane.

The label dissolved in 1966. Tom Donahue, a San Francisco DJ, who worked for KSAN radio, owned the record label. Donahue invented the genre "underground radio."

History

Rock producer/DJ Sly Stone was a producer for the label producing Bobby Freeman's "C'Mon And Swim"/"Do The Swim," a hit on the national and regional charts in 1965. Freeman had had some hits on Jubilee in 1958-60, and on King in the early 1960s, but became the first artist on Autumn to have any big-selling hits. Stone produced the Psyrcle's 45 on Lorna, which did not sell well regionally or nationally. The Psyrcle took a hiatus, rehearsed and regrouped before becoming the Rockets (later Crazy Horse, Neil Young's backing band), a band with eight members.

'); } 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: autumn records

Edit

How much did that house sell for? Deed transfers in Ocala/Marion: Feb. 3-9, 2025

Ocala Star Banner 06 Apr 2025
Rodney Long speaks at ceremony renaming Ocala street for Whitfield Jenkins ... Please direct any questions to calendar@starbanner.com. Deed transfers of $80,000 or more as recorded with the Clerk of the Circuit Court, Feb ... Autumn Glen ... Autumn Glen ... Coventry.
Edit

Sports roundup for April 3

Greenville Daily News 03 Apr 2025
Autumn Shattuck had the shutout in goal. Record ... Record ... Record ... Record ... Record ... Record ... Record ... Benedict recorded an assist, her third of the season, and Ebony Williams also had an assist ... Record ... No scores or stats recorded. Record ... Record.
Edit

Panic stations for Labour after Spring Statement: Polls show major hit for party in wake ...

The Daily Mail 02 Apr 2025
It comes after YouGov found the government's approval rating has slumped to a joint record low ... It comes after YouGov found the government's approval rating has slumped to a joint record low.
Edit

Reeves’ tax raid triggers worst wave of business closures since lockdown

The Daily Telegraph 02 Apr 2025
Ms Reeves raised taxes by a record £40 billion at the Budget in autumn, including a £25 billion rise in employers’ National Insurance ... doors in the same month as Ms Reeves’s record tax-raising Budget.
Edit

Travis Perkins shares plummet to 16-year low as profits collapse | This is Money

The Daily Mail 01 Apr 2025
Trading was further impacted by the rollover of lower commodity prices, especially timber, and uncertainty resulting from the July general election and Autumn Budget.
Edit

High school scoreboard: Gloucester boys overcome No. 15 Smithfield by a run

Daily Press 01 Apr 2025
The Gators improve their record to 9-1 ... Autumn Cookson (5-0); LP ... The Dukes improved their record to 6-0 ... Nathan Johnson recorded 16 saves and freshman Grant Amet won 4 of 9 faceoffs ... Stella Turk recorded her third shutout in a row for the Crusaders.
Edit

Only 2.5% of private rentals in England affordable on housing benefit, study finds

The Observer 01 Apr 2025
Meanwhile, 126,040 households in England are now in temporary accommodation, including more than 164,000 children – the highest levels on record. In the autumn budget, the chancellor, Rachel Reeves, ...
Edit

Children as young as five attacking their teachers

AOL 30 Mar 2025
In total, 25,724 suspensions and expulsions were recorded for physical assault during the autumn term in 2023, up from 18,259 in the same period the year before ... nearly 1.5 times last autumn to 648.
Edit

Recollections of a 1980s indie kid

The Spectator 30 Mar 2025
The US novelist Dave Eggers would later recall being a teenage Anglophile indie fan in the suburbs of Chicago and cycling 20 miles to get this record that autumn.
Edit

Children as young as five kicked out of class for attacking teachers amid rise in ...

The Daily Mail 30 Mar 2025
In total, 25,724 suspensions and expulsions were recorded for physical assault during the autumn term in 2023, up from 18,259 in the same period the year before ... He told The Telegraph ... A Department for Education spokesman said ... .
Edit

How much did that house sell for? Deed transfers in Ocala/Marion: Jan. 27-Feb. 2, 2025

Ocala Star Banner 30 Mar 2025
Rodney Long speaks at ceremony renaming Ocala street for Whitfield Jenkins ... Deed transfers of $80,000 or more as recorded with the Clerk of the Circuit Court, Jan. 27-Feb. 2, 2025. Autumn Glen ... Autumn Glen ... Autumn Glen ... Autumn Glen ... Belleair ... Belleview.
Edit

Four million workers to be dragged into higher tax brackets

The Daily Telegraph 28 Mar 2025
This is half a million more than the watchdog forecast in October, when Rachel Reeves spared workers from a further raid as she announced a record £40bn increase in taxes ... assault in the autumn.
Edit

Waking Windows Announces 2025 Lineup

Seven Days 28 Mar 2025
Tickets are on sale now at wakingwindows.com. They can also be purchased in person at Autumn Records in Winooski and Pure Pop Records in Burlington. … ....
Edit

Rachel Reeves' emergency budget was a humiliation and it confirmed what we knew already... Labour ...

The Daily Mail 26 Mar 2025
She inherited the fastest growth in the G7, but she has trashed the economy, hiked record taxes and killed growth'. That shows beyond any doubt that her disastrous choices in the autumn have cost the country dearly.
×