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

Philemon Arthur and the Dung

Philemon Arthur and the Dung is a mysterious music group from Scania, Sweden, consisting of two members known only by their pseudonyms Philemon Arthur and the Dung. The band formed in the early 1960s under the name The Popbeams, which they changed before the release of their first album. The duo's true identities are most likely known only to a few individuals at Silence Records, the record label that the band has worked with since 1971. Philemon Arthur and the Dung do not want their identities to be known, lest those who live in their small village find out who they are.

The band's music is recorded on reel-to-reel tape decks with crackling microphones and is played on untuned guitars, drums, and accordions, with the occasional accompaniment of household objects such as saucepans, chairs, and radiators. The lyrics vary from utter nonsense, such as profoundly whimsical observations about everyday life, to satire concerning social phenomena such as homelessness, pollution, and hunting.

Folke

Coordinates: 50°55′11″N 2°29′11″W / 50.9196°N 2.4864°W / 50.9196; -2.4864

Folke is a parish in the county of Dorset in southern England, situated in the Blackmore Vale in the West Dorset administrative district approximately 3.5 miles (5.6 km) south-east of Sherborne. The parish has an area of 2,120 acres (8.6 km2) and includes the hamlet of Folke itself and the slightly larger settlement of Alweston. Dorset County Council's 2013 estimate of the population of Folke parish is 270. In the 2011 census figures have been published for the population of Folke parish combined with the small parish of North Wootton to the north; this was 339. The Manor House in the hamlet of Folke dates from about 1500, and adjoins the early 17th-century parish church. The house of Font le Roi, sited by the road towards Sturminster Newton, was built as a gatehouse in the 15th century.Folke Wood is nearby.

References

External links

Media related to Folke at Wikimedia Commons

  • The Parish of Folke

  • Folke (name)

    Folke is a Swedish male given name, which means "people", derived from the Old Norse folk. As of 2004, in Sweden there are 20,100 persons named Folke. Of them, about 5,700 had it as their main given name. In 2002, 118 newborn boys were named Folke, of them 15 as main name. The name may refer to:

  • Folke Alnevik (born 1919), Swedish athlete
  • Folke Bengtsson (born 1944), Swedish ice hockey player
  • Folke Bergman (1902–1946), Swedish explorer and archaeologist
  • Folke Bernadotte (1895–1948), Swedish diplomat
  • Folke Bohlin (musicologist) (born 1931), Swedish musicologist
  • Folke Bohlin (sailor) (1903–1972), Swedish sailor
  • Folke Ekström (1906–2000), Swedish chess player
  • Folke Eriksson (1925–2008), Swedish water polo player
  • Folke Filbyter (11th century), Swedish political leader
  • Folke Fleetwood (1890–1949), Swedish athlete
  • Folke Frölén (1908–2002), Swedish horse rider
  • Folke Hauger Johannessen (1913–1997), Norwegian admiral
  • Folke Heybroek (1913–1983), Dutch artist
  • Folke Hjort (1934–1977), Swedish actor
  • Folke Jansson (1897–1965), Swedish athlete
  • Podcasts:

    • Neovim 0.5 Release - Lua Integration with Folke

      Part 2 of 5 from our Neovim 0.5 Release day stream. We find out some more info about Folke, a creator of a lot of great plugins and recent contributor to Neovim core. Folke: https://github.com/folke I hope you enjoy it! Playlist: https://www.youtube.com/playlist?list=PLep05UYkc6wSN7MRsO0nvRz9FzsnE49z9 Stream: https://twitch.tv/teej_dv

      published: 09 Jul 2021
    • Best Indie Folk of 2020

      Enjoy the best indie folk songs of the year 2020 now, with lyrics! (Acoustic, Indie, Folk) Also on spotify: https://spoti.fi/2V3CIPU Subscribe: https://goo.gl/58cjHJ We have a Top 100 Indie Folk compilation out: https://youtu.be/5wiykPlwWIo In this 4-hour music video, you'll find the best indie folk songs of 2020, from Tommy Ashby to Ocie Elliott and Ed Patrick to Stu Larsen. Lyrics are included! 🔔 Subscribe and turn on the bell to be the first to enjoy our music! ❤️ Follow us: https://ffm.bio/indiefolkcentral 🔗 Spotify Playlists: https://spoti.fi/2V3CIPU ☕ Support us: https://indiefolkcentral.com/patreon 🎶 Spotify, Apple Music, Amazon Music & more. | Playlist: https://ffm.to/indiefolk2020 | Album: https://ffm.bio/indiefolk20 | & more: https://ffm.bio/indiefolkcentral ❤️ Subscribe: ht...

      published: 27 Dec 2020
    • 70s Folk Rock & Country Music

      #Folksongs #Countrymusic #Folkrockcountrymusic #LourdesTiwiAlbay Selection songs from 70s folk, rock, & country music

      published: 19 Jul 2020
    • Cozy Coffeehouse ☕ - An Indie/Folk/Acoustic Playlist | Vol. 1

      Relax with a hot drink and listen to these beautiful acoustic songs! Tracklist & Spotify link below… 👇 LISTEN ON SPOTIFY: https://spoti.fi/2MXKGFy » Subscribe to be the first to hear the best new independent music! http://bit.ly/145fFnx ✉ Please contact alexrainbirdmusic@gmail.com if you’d like your music to be featured on our channel. 💿 Tracklist: 0:00 Plàsi -- ‘Vienna’ https://spoti.fi/2NfTaHo https://www.facebook.com/plasimusic/ Download: https://apple.co/2NbwOa7 4:13 The Boy and His Dog -- ‘I’d Be a Fool https://spoti.fi/2NOIsVr https://www.facebook.com/TheBoyandHisDogOfficial/ Download: https://apple.co/2NOIvk5 7:42 Kane Miller -- 'All We Need’ https://spoti.fi/2Cnb0nL https://www.facebook.com/KMillerMusic/ Download: https://apple.co/2Q61NTp 10:48 Marcus Alexander -- ‘Journey’ http...

      published: 07 Sep 2018
    • Acoustic Chill • A Soft Indie Folk Playlist (50 tracks/3 hours) Calm & Soothing

      If you're looking for some soothing, calm, mellow, and acoustic songs to unwind to, we've put together a playlist of 50 Soft Indie Folk songs that might just hit the spot. Whether you're an introvert seeking some introspective sounds or simply in need of a peaceful soundtrack, we've curated this list with care, collecting a mix of fresh releases and hidden gems that we hope will delight your ears. Take a breather and let yourself be carried away by this selection of beautiful acoustic indie folk songs. Added to this youtube playlist https://youtube.com/playlist?list=PLJH9QWrouDvTIqgnrB1XtwOkw4ZgQjaZq & available on Spotify https://spoti.fi/3LWk1Gz A Soft Indie Folk playlist; enjoy 3 hours of calming, soothing, and serene acoustic melodies. The perfect playlist for study, work, relaxing, o...

      published: 21 Mar 2023
    • Classic Folk Rock - Jim Croce, John Denver, Don Mclean, Cat Stevens

      Classic Folk Rock - Jim Croce, John Denver, Don Mclean, Cat Stevens 😍HAVE A GOOD TIME😍 👉 Thanks for watching this video and don't forget to LIKE, COMMENT, SUBSCRIBE and SHARE my channel if you enjoy it. 👉 If there are any copyright infringement, Please send e-mail to us or comment on this video!!! 👉 Thank You for Everything!! Email : contact@crown-media.vn #Folkrock , #Country Tag : country music, classic country songs, folk and country music, folk country, folk, country music playlist, country music playlist 2020, country music 2020, folk music, americana, country rock, folk rock, folk rock and country music, folk rock and country music 70s, folk rock and country, folk country 80s, country folk music, country folk music 90s, country folk love songs, folk rock and country love songs, f...

      published: 20 May 2022
    • Instrumental Indie-Folk | Vol. 1 🪕 - An Acoustic/Chill Playlist for study, relax and focus

      No vocals? No problem! Introducing the best instrumental indie-folk! Tracklist below… 👇 LISTEN ON SPOTIFY: https://spoti.fi/3oGnbBF APPLE MUSIC, DEEZER, AMAZON & MORE: https://fanlink.to/InstrumentalIF Subscribe to be the first to hear the finest new independent music! http://bit.ly/arbMsubscribe 📩 SUBMIT YOUR MUSIC: https://www.submithub.com/blog/alexrainbirdmusic or https://submissions.alexrainbirdmusic.com/ ✉ Email for all other enquiries: alexrainbirdmusic@gmail.com 💿 Tracklist: 0:00 Kevin Bean - ‘Kindred’ https://spoti.fi/3B5zDQp 3:01 The Satellite Station - ‘Satellites’ https://spoti.fi/3IBBgb3 6:28 Days of August - ‘Bones’ https://spoti.fi/3rw0nq1 9:34 Children of Indigo - ‘Ripple’ https://spoti.fi/3JbkwYr 13:19 Jaguar Sun & Jesse Maranger - ‘Autumn Fire’ https://spoti.fi/3JdWHPG ...

      published: 11 Feb 2022
    • Relaxing Sunday Mornings ☕ - An Indie/Folk/Pop Playlist | Vol. 1

      Make every day a Sunday with an hour of chilled indie music and laidback folk tracks. More info on my website: http://www.alexrainbirdmusic.com/relaxing-sunday-morning/ » Subscribe to be the first to hear the best new independent music! http://bit.ly/145fFnx ✉ Please contact alexrainbirdmusic@gmail.com if you’d like your music to be featured on my channel. Tracklist: 0:00 Plàsi -- ‘Now & Then’ https://www.facebook.com/plasimusic/ http://sptfy.com/1ojH Download: http://apple.co/2o5YPPH 2:59 Chase McBride -- ‘Days Move Easy’ https://www.facebook.com/ChaseMcBrideMusic/ http://sptfy.com/1ojI Download: http://apple.co/2ooSHnx 5:27 Willy Poldd -- 'To Just Sail Away’ https://www.facebook.com/WillyPoldd/ http://sptfy.com/YiP Download: http://apple.co/2ozrT6b 8:43 Joel Ansett -- ‘Give Our He...

      published: 16 Apr 2017
    developed with YouTube
    Neovim 0.5 Release - Lua Integration with Folke
    13:16

    Neovim 0.5 Release - Lua Integration with Folke

    • Order:
    • Duration: 13:16
    • Uploaded Date: 09 Jul 2021
    • views: 5279
    Part 2 of 5 from our Neovim 0.5 Release day stream. We find out some more info about Folke, a creator of a lot of great plugins and recent contributor to Neovim core. Folke: https://github.com/folke I hope you enjoy it! Playlist: https://www.youtube.com/playlist?list=PLep05UYkc6wSN7MRsO0nvRz9FzsnE49z9 Stream: https://twitch.tv/teej_dv
    https://wn.com/Neovim_0.5_Release_Lua_Integration_With_Folke
    Best Indie Folk of 2020
    4:03:22

    Best Indie Folk of 2020

    • Order:
    • Duration: 4:03:22
    • Uploaded Date: 27 Dec 2020
    • views: 4360746
    Enjoy the best indie folk songs of the year 2020 now, with lyrics! (Acoustic, Indie, Folk) Also on spotify: https://spoti.fi/2V3CIPU Subscribe: https://goo.gl/58cjHJ We have a Top 100 Indie Folk compilation out: https://youtu.be/5wiykPlwWIo In this 4-hour music video, you'll find the best indie folk songs of 2020, from Tommy Ashby to Ocie Elliott and Ed Patrick to Stu Larsen. Lyrics are included! 🔔 Subscribe and turn on the bell to be the first to enjoy our music! ❤️ Follow us: https://ffm.bio/indiefolkcentral 🔗 Spotify Playlists: https://spoti.fi/2V3CIPU ☕ Support us: https://indiefolkcentral.com/patreon 🎶 Spotify, Apple Music, Amazon Music & more. | Playlist: https://ffm.to/indiefolk2020 | Album: https://ffm.bio/indiefolk20 | & more: https://ffm.bio/indiefolkcentral ❤️ Subscribe: https://goo.gl/58cjHJ As the best source for indie folk music, we provide our fans with new songs on a monthly basis through our channels. Sharing music with you is what we live for. Please feel free to contact us here on YouTube or through social media! More contact information can be found below! | Mail: rufus@indiefolkcentral.com | Song submissions: www.submithub.com/blog/indiefolkcentral You can also support our work by joining our Patreon page. Whenever we upload a new video, you'll be able to download new music. That's pretty cool, isn't it? | Support: https://www.patreon.com/indiefolkcentral Spotify: New Indie Folk (2022) ✨ https://spoti.fi/3isX4d1 Spotify: New Acoustic Indie Folk (2022) 🪕 https://spoti.fi/35TpgRh ©️ Copyrights: We have full permission (with a signed copyright approval) from all the master rights holders (artist, label, management and / or publisher) for every song that is uploaded to our YouTube channel. 🎶 Tracklist: 0:00 Indie Folk Central - Discover the best new indie folk! 0:10 Tommy Ashby - Blood Wolf Moon 3:08 Jesper Hasnaoui - Lake 6:18 Lullanas - Bloom 9:08 N. Kerbin - A Boy and a Man and a Satellite 13:32 Matt Hartke - London´s Song 16:28 Marti West - Runaway 20:03 Racoon Racoon - Birds and Daisies 23:31 Jordy Maxwell - As You Go 26:29 Aisha Badru - Forest Green 30:07 Beta Radio - Destined to Pretend 33:17 Canyon City - Ferris Wheel 37:07 Simon Alexander - In The Rust 40:46 OSKA - Love You Lost 44:25 David Nevory - Head Tied Up 47:40 Cole Scheifele, Joel Ansett - Thinking of Me 50:47 Hollow Coves - Evermore 54:28 Femke - I'm Still Here 57:46 Handsome Ghost - Weeds 1:02:00 Harry Pane, Maia Frankowski - Time 1:05:38 Ocie Elliott - Back Door Run 1:09:08 Aaron Espe - Take You Home 1:13:07 Thomas LaVine - Rivers 1:17:01 Tom Speight - Good Times 1:20:27 Days of August - Homeplace 1:24:39 Ed Patrick - Shoulder 1:27:41 Axel Flóvent - Sea Creatures 1:31:57 Unknown Neighbour - Home 1:35:07 Last Year's Man - Wild, Wild Heart 1:38:57 Stu Larsen - Phone Call from My Lover 1:43:50 Jordan Hart - I Don't Want to Let You Go 1:47:23 The Sweeplings - Deep & Wild 1:50:59 Simen Mitlid - Weeks feat. Tuvaband 1:54:39 Matu - The Days Don't Come Back 1:57:39 Hollow Coves - Beauty In The Light - Acoustic 2:01:49 Ben Greenberg - Northern Pines 2:05:19 Tommy Ashby - One Word 2:08:22 Frank Rensen - Closer To The Sun 2:12:07 Mia Myself & I - Come Clean 2:16:24 Zes - Seahaven 2:19:06 Companion - Carried Away 2:22:15 Canyon City - Catch Fire 2:26:03 The Paper Kites - For All You Give (feat. Lucy Rose) 2:29:11 N. Kerbin - Everything Hurts 2:32:55 Tyler Edwards - Delta 2:36:31 Tyler Brown Williams - Never Stop 2:40:40 Ian Randal Thornton - It Feels Like The Other Day 2:44:56 Lawson Hull - College Town 2:48:12 Ocie Elliott - Take Me Home 2:51:14 Jessie Reid - I've Got You 2:53:50 Titus Haug - Thinking Of You 2:57:23 Fretland - Must've Been Wild 3:01:30 Simon Alexander - Heading Nowhere 3:06:03 The Sea The Sea - A Thousand Years 3:09:48 Freyr - Neighbour Boy 3:12:50 Garrett Kato - Breathe It In (feat. Julia Stone) 3:16:05 Barry Carroll - Hand in Hand 3:19:23 Black Match - See Through 3:22:32 Jarle Skavhellen - Northern Lights 3:25:27 We Are All Fossils - Mountains 3:28:15 Luke Sital-Singh - Almost Home 3:31:31 Old Sea Brigade - Caroline 3:35:33 RedFox - Hey Mister 3:39:19 Jesse Taylor - Where I Belong 3:42:15 Voyageur - Civilized 3:45:41 The Satellite Station - Come Home 3:49:10 Vaiteani - Signs 3:52:32 Hollan - I've Been Alone 3:56:04 Nick Kingswell - I Didn't Try 3:59:55 Henry Hanson - Another Ending 📽️ Enjoy some more of our music videos: Best Indie Folk of 2019: ╎ https://youtu.be/9-cPonXJd_c Best Indie Folk of 2018: ╎ https://youtu.be/V4lBq_d5THM Best Indie Folk of 2017: ╎ https://youtu.be/v9zHUeq9PqI Best Indie Folk of 2016: ╎ https://youtu.be/RVeE3j7b1qg ✌️ Much love from The Netherlands! #indiefolk #folk #bestof2020 #indie #indiefolkcentral❤️
    https://wn.com/Best_Indie_Folk_Of_2020
    70s Folk Rock & Country Music
    1:05:13

    70s Folk Rock & Country Music

    • Order:
    • Duration: 1:05:13
    • Uploaded Date: 19 Jul 2020
    • views: 8431178
    #Folksongs #Countrymusic #Folkrockcountrymusic #LourdesTiwiAlbay Selection songs from 70s folk, rock, & country music
    https://wn.com/70S_Folk_Rock_Country_Music
    Cozy Coffeehouse ☕ - An Indie/Folk/Acoustic Playlist | Vol. 1
    1:10:35

    Cozy Coffeehouse ☕ - An Indie/Folk/Acoustic Playlist | Vol. 1

    • Order:
    • Duration: 1:10:35
    • Uploaded Date: 07 Sep 2018
    • views: 8339241
    Relax with a hot drink and listen to these beautiful acoustic songs! Tracklist & Spotify link below… 👇 LISTEN ON SPOTIFY: https://spoti.fi/2MXKGFy » Subscribe to be the first to hear the best new independent music! http://bit.ly/145fFnx ✉ Please contact alexrainbirdmusic@gmail.com if you’d like your music to be featured on our channel. 💿 Tracklist: 0:00 Plàsi -- ‘Vienna’ https://spoti.fi/2NfTaHo https://www.facebook.com/plasimusic/ Download: https://apple.co/2NbwOa7 4:13 The Boy and His Dog -- ‘I’d Be a Fool https://spoti.fi/2NOIsVr https://www.facebook.com/TheBoyandHisDogOfficial/ Download: https://apple.co/2NOIvk5 7:42 Kane Miller -- 'All We Need’ https://spoti.fi/2Cnb0nL https://www.facebook.com/KMillerMusic/ Download: https://apple.co/2Q61NTp 10:48 Marcus Alexander -- ‘Journey’ https://spoti.fi/2wJJM5g https://www.facebook.com/marcusalx/ Download: https://apple.co/2NRrSnE 14:12 Scott Orr -- ‘Seasons’ https://spoti.fi/2PEmiWb https://www.facebook.com/scottorrmusic/ Download: https://apple.co/2NjluIR 17:28 Cameron Jericho -- 'Anchor’ https://spoti.fi/2oH4i23 https://www.facebook.com/CameronJericho/ Download: https://apple.co/2NRX85V 19:48 Twin Tacoma -- ‘Perfect Life’ https://spoti.fi/2PB5PlN https://www.facebook.com/twintacoma/ Download: https://apple.co/2NhFgVi 22:10 Alexander Wren -- ‘Emily’ https://spoti.fi/2oJ6ZA0 https://www.facebook.com/Alexander-Wren-334054999969018/ Download: https://apple.co/2oHWRri 25:46 Jon and Roy -- ‘Take Me By Surprise’ https://spoti.fi/2Q48zcl https://www.facebook.com/jonandroy/ Download: https://apple.co/2wKbsXB 28:43 Baswod -- ‘Sundays’ https://spoti.fi/2CjvYnu https://www.facebook.com/baswod/ Download: https://apple.co/2Q7miPO 31:59 Michael Barrow & The Tourists -- ‘All I’ll See Is You’ https://spoti.fi/2wM3gGy https://www.facebook.com/michaelbarrowmusic/ Download: https://apple.co/2M207Ho 36:08 Joe Hicks -- ‘Sign’ https://spoti.fi/2ssG0wL https://www.facebook.com/joehicksmusic/ Download: https://apple.co/2wMGJct 41:21 Elisha David -- ‘The Sounding Joy’ https://open.spotify.com/artist/5L0bBIAjOrYCQIDSWYESV1 https://soundcloud.com/elisha-zepeda Download: https://apple.co/2NOSjdT 43:45 Misty Boyce – ‘Spinning Plates’ https://spoti.fi/2M1o5SW https://www.facebook.com/Misty-Boyce-79940408788/ Download: https://apple.co/2PFLWd5 46:23 Tom Francis -- ’10,000 feet’ https://spoti.fi/2PB7nMz https://www.facebook.com/TomFrancisMusician/ Download: https://apple.co/2wFP6py 50:24 Evan Crommett -- ‘Puzzle Pieces’ https://spoti.fi/2QbnjX4 https://www.facebook.com/evancrommett/ Download: https://apple.co/2NMO02w 53:04 John Secondino -- ‘Petrified’ https://spoti.fi/2MScdby https://soundcloud.com/johnsecondino Download: https://apple.co/2NhSbXi 56:53 Richard Readey -- ‘You’re Not Home’ https://soundcloud.com/richardreadey https://www.facebook.com/RickReadey/ Download: N/A 1:01:17 We Are All Fossils -- ‘The West’ https://spoti.fi/2PyDkF6 https://www.facebook.com/WAAFossils/ Download: https://apple.co/2NN8V5D 1:03:59 Tim the Lion Tamer -- ‘Dancer’ https://spoti.fi/2PFSRD5 https://www.facebook.com/timtheliontamer/ Download: https://apple.co/2NQduMB 1:07:16 Plàsi -- ‘Too Far’ https://spoti.fi/2NfTaHo https://www.facebook.com/plasimusic/ Download: https://apple.co/2wRJp8f 🌧️ 🐦 Find alexrainbirdMusic on: Official website: http://www.alexrainbirdmusic.com/ Spotify: https://open.spotify.com/user/alxrnbrdmusic/playlist/2gCHaXDsqqmjpec20FN5Lc Facebook: https://www.facebook.com/alexrainbirdMusic Patreon (to raise money for a music festival!): https://www.patreon.com/alexrainbirdMusic Twitter: https://twitter.com/alxrnbdMusic Soundcloud: https://soundcloud.com/alexrainbirdmusic Instagram: https://instagram.com/alexrainbirdmusic/ 👕 Official merchandise: https://www.teepublic.com/user/alexrainbirdmusic ❓ About alexrainbirdMusic: Since 2011, Alex Rainbird has been hunting down and showcasing the very best in independent music. Joined by his girlfriend Beth as of 2017, the couple feature over 70 new artists a month, and hope to provide a platform for underrated musicians to be heard and for viewers to find their new favourite band. Join their +460,000 subscribers today to be the first to hear the finest independent music!
    https://wn.com/Cozy_Coffeehouse_☕_An_Indie_Folk_Acoustic_Playlist_|_Vol._1
    Acoustic Chill • A Soft Indie Folk Playlist (50 tracks/3 hours) Calm & Soothing
    3:00:11

    Acoustic Chill • A Soft Indie Folk Playlist (50 tracks/3 hours) Calm & Soothing

    • Order:
    • Duration: 3:00:11
    • Uploaded Date: 21 Mar 2023
    • views: 964618
    If you're looking for some soothing, calm, mellow, and acoustic songs to unwind to, we've put together a playlist of 50 Soft Indie Folk songs that might just hit the spot. Whether you're an introvert seeking some introspective sounds or simply in need of a peaceful soundtrack, we've curated this list with care, collecting a mix of fresh releases and hidden gems that we hope will delight your ears. Take a breather and let yourself be carried away by this selection of beautiful acoustic indie folk songs. Added to this youtube playlist https://youtube.com/playlist?list=PLJH9QWrouDvTIqgnrB1XtwOkw4ZgQjaZq & available on Spotify https://spoti.fi/3LWk1Gz A Soft Indie Folk playlist; enjoy 3 hours of calming, soothing, and serene acoustic melodies. The perfect playlist for study, work, relaxing, or as background music • Acoustic Chill • Discover mesmerizing songs by Lucas Laufen, Lexie Carroll, Luca Fogale & many more! 🔔 Subscribe for more music just like this https://www.youtube.com/indiefolkcentral?sub_confirmation=1 + turn on the bell to receive notifications 🎶 Soft, Calm & Soothing | Acoustic Indie Folk Playlist: https://youtube.com/playlist?list=PLJH9QWrouDvTIqgnrB1XtwOkw4ZgQjaZq If you enjoy this video, you'll love these: https://youtu.be/U5NdL3RokJc https://youtu.be/Z59yPYwB3Ao 🔥 More of our Best Indie Folk: 2022: https://youtu.be/-EKMv4Rb_A8 2021: https://youtu.be/NYWBSmB1zyc 2020: https://youtu.be/yLZMeesKbJo Top 100 Indie Folk 💯 Part 1: https://youtu.be/5wiykPlwWIo Part 2: https://youtu.be/wXMwrJw8I3Y 🎧 Enjoy our playlists on Spotify: https://spoti.fi/2V3CIPU 🎶 This playlist on Spotify: https://spoti.fi/3LWk1Gz ❤️ Follow Indie Folk Central: | https://facebook.com/indiefolkcentral | https://www.instagram.com/indiefolkcentral ✨ Tracklist & artist info: 0:00 Indie Folk Central, discover the best new indie folk! ☕ Support us: https://www.patreon.com/indiefolkcentral + get free music downloads! 💡 Want to go to the next song? Windows: Ctrl + → Mac: ⌥ opt + → YouTube mobile app: Double-tap on the right side of the video 0:10 Memorial - Latchkey 2:59 Old Sea Brigade, Paris Jackson - Stayed Up Late (Sunrise Version) 6:25 Lucas Laufen - Weathering 10:33 Lexie Carroll - the sky looked nice today 13:50 Luca Fogale - Youth (Acoustic) 17:34 Meadowlark - What's It Like To Love Me 21:24 Lowland Hum - This Will Be Our Year 23:35 Amistat - ready now - acoustic 26:24 Reed Pittman - Stay Lost With Me 29:19 Jess Josie Lee, Heath Lancaster - Undertones 32:52 Tom Francis - Where I Stand 37:37 Aaron Percy - Seventy 40:40 néomí - I could never leave 43:29 The Ballroom Thieves - Pour Down - Undone 47:37 Joshua Radin - Fewer Ghosts 51:15 Lucy Farrell - Paperthin 54:42 Castle Theater - The Same Names 57:03 Twin Tacoma - Tightropes 59:27 Luna Keller - Wanderer 1:02:06 Kelsey Berrington - Build a Home 1:05:45 Simen Mitlid, Benedikt - Channels 1:08:59 Brooke Annibale - What if You - Acoustic 1:12:38 Ezra Glatt, Sammy Copley - Dust 1:15:27 Lowland Hum - On Snow 1:20:10 Max Subar - Green and Blue 1:23:43 Jules Atlas - You 1:28:08 Luke De-Sciscio - Rise Up Waking Dreamers 1:33:53 Joe Vann - The Bells 1:38:02 Maggie Pope - Ballad of Anna Lee 1:41:00 Tom Francis - Seven Valleys 1:44:10 ella ruby - arbors 1:48:36 Brooke Annibale - Samson 1:52:19 Collin Bartley - Satellite 1:55:40 Rachael Marie - Friend 2:01:46 Rapt - The Nest 2:04:59 Racoon Racoon - The Dodo's Nest 2:08:08 Josh Geffin - Best We Could 2:11:58 Shoshanna Bohlen - Now I See It 2:15:07 Noa Zimmerman - Portland 2:18:30 Zan Fiskum - momma 2:22:42 Cactus Tree - Sunstone 2:26:26 Antony Hurley - Shallow Lakes 2:29:47 Hayley Savage - All Along the Railings 2:33:49 Ben Robinson - Whispers of the Wind 2:37:33 Ricky Vasan - Things Always Change 2:42:50 Maggie Pope - Rare & Wild 2:45:37 Nathan Clarkson - Walls 2:49:05 Mollie Rainwater - Song For The Travelers 2:52:06 Alba James - Wake Up In Your Eyes 2:56:12 elkvilla - Proof 📻 24/7 Live Indie Folk Radio https://youtu.be/nif7-fGMSAs Are you an indie folk artist? Feel free to submit your music on SubmitHub! https://sbmt.to/indiefolkcentral ❤️ You can support our work by joining our Patreon page Support: https://www.patreon.com/indiefolkcentral ©️ Copyrights: This video has been created in close collaboration with the artists and we have full permission from all the master rights holders, which means that we have signed copyright approvals for all the tracks. #indiefolk #indiefolkcentral #acoustic #indie #introvert
    https://wn.com/Acoustic_Chill_•_A_Soft_Indie_Folk_Playlist_(50_Tracks_3_Hours)_Calm_Soothing
    Classic Folk Rock - Jim Croce, John Denver, Don Mclean, Cat Stevens
    1:05:48

    Classic Folk Rock - Jim Croce, John Denver, Don Mclean, Cat Stevens

    • Order:
    • Duration: 1:05:48
    • Uploaded Date: 20 May 2022
    • views: 1208016
    Classic Folk Rock - Jim Croce, John Denver, Don Mclean, Cat Stevens 😍HAVE A GOOD TIME😍 👉 Thanks for watching this video and don't forget to LIKE, COMMENT, SUBSCRIBE and SHARE my channel if you enjoy it. 👉 If there are any copyright infringement, Please send e-mail to us or comment on this video!!! 👉 Thank You for Everything!! Email : contact@crown-media.vn #Folkrock , #Country Tag : country music, classic country songs, folk and country music, folk country, folk, country music playlist, country music playlist 2020, country music 2020, folk music, americana, country rock, folk rock, folk rock and country music, folk rock and country music 70s, folk rock and country, folk country 80s, country folk music, country folk music 90s, country folk love songs, folk rock and country love songs, folk rock and country 70s, folk country 70s, Folk Songs 80's
    https://wn.com/Classic_Folk_Rock_Jim_Croce,_John_Denver,_Don_Mclean,_Cat_Stevens
    Instrumental Indie-Folk | Vol. 1 🪕 - An Acoustic/Chill Playlist for study, relax and focus
    3:12:01

    Instrumental Indie-Folk | Vol. 1 🪕 - An Acoustic/Chill Playlist for study, relax and focus

    • Order:
    • Duration: 3:12:01
    • Uploaded Date: 11 Feb 2022
    • views: 4144005
    No vocals? No problem! Introducing the best instrumental indie-folk! Tracklist below… 👇 LISTEN ON SPOTIFY: https://spoti.fi/3oGnbBF APPLE MUSIC, DEEZER, AMAZON & MORE: https://fanlink.to/InstrumentalIF Subscribe to be the first to hear the finest new independent music! http://bit.ly/arbMsubscribe 📩 SUBMIT YOUR MUSIC: https://www.submithub.com/blog/alexrainbirdmusic or https://submissions.alexrainbirdmusic.com/ ✉ Email for all other enquiries: alexrainbirdmusic@gmail.com 💿 Tracklist: 0:00 Kevin Bean - ‘Kindred’ https://spoti.fi/3B5zDQp 3:01 The Satellite Station - ‘Satellites’ https://spoti.fi/3IBBgb3 6:28 Days of August - ‘Bones’ https://spoti.fi/3rw0nq1 9:34 Children of Indigo - ‘Ripple’ https://spoti.fi/3JbkwYr 13:19 Jaguar Sun & Jesse Maranger - ‘Autumn Fire’ https://spoti.fi/3JdWHPG https://spoti.fi/3sJiXKX 17:42 Rasmus Trinderup - ‘Annelise’ https://spoti.fi/3uA7Xlm 19:24 Galaxy Family - ‘To Be Alone (Acoustic)’ https://spoti.fi/3ssTZiu 24:09 John Lingard - ‘We’re Almost Home’ https://spoti.fi/3soHwML 27:38 Rich Jacques - ‘Clear Blue Skies’ https://spoti.fi/3uB7Ki4 31:01 The Hollow Men - ‘Coming Down’ https://spoti.fi/3stqb5g 35:02 Drew Elliott - ‘From Bonfires’ https://spoti.fi/3uzoG8l 37:32 Reed Pittman - ‘Closer Than You Think’ https://spoti.fi/3J77awc 40:53 Michael Lane - ‘Moon & Sun’ https://spoti.fi/3HRBGu9 44:52 Saintway - ‘Far Away’ https://spoti.fi/3B6h5zk 48:48 Wax Owls - ‘Sacrifice’ https://spoti.fi/3Lje0ks 52:25 David Grumel - ‘A Starry Night’ https://spoti.fi/3GAO3ZO 55:16 Iso - ‘Safe and Sound’ https://spoti.fi/3B4sIHj 59:14 Barry Carroll - ‘Hand in Hand’ https://spoti.fi/3HEfD9V 1:02:30 Paxton Pennington - ’Open Sea, Pt. 1’ https://spoti.fi/34rsOwv 1:03:18 Coopertheband - ‘Home’ https://spoti.fi/3GHPqWY 1:07:26 Arms Akimbo - ‘Rearrange’ https://spoti.fi/3oACkoa 1:11:47 The Ateliers - ‘Eyes Up’ https://spoti.fi/3B4Kh9W 1:16:56 Djakarta - ‘Any Open Door (Acoustic)’ https://spoti.fi/3uzqi1T 1:19:26 Joe Hicks - ‘Cold (Acoustic)’ https://spoti.fi/3ssWMrY 1:23:32 Michael Bernard Fitzgerald - ‘Harley Davidson’ https://spoti.fi/3uBd5ps 1:26:48 Michael Barrow & The Tourists - ‘Time Rolls On’ https://spoti.fi/3GEv8NM 1:30:20 Francis Moon & The Hollow Men - ‘Thousand Stars (Acoustic)’ https://spoti.fi/3GuGsMs 1:33:22 Sara Davis Regan - ‘Mansfield’ https://spoti.fi/3B4ICRY 1:35:12 Kevin Bean - ‘After the End’ 1:38:43 Cory Breth - ‘Mourning Dove’ https://spoti.fi/3sn6Ra8 1:43:10 Simon Alexander - ‘Someday’ https://spoti.fi/3oxOxK4 1:47:03 Sunflower Thieves - ‘Sirens’ https://spoti.fi/3LhCx9s 1:51:17 Michael Baker - ‘Big Moon’ https://spoti.fi/3guRx5t 1:54:54 ANAE - ‘Atlas Mountains’ https://spoti.fi/3gtcpdA 2:00:02 Thomas LaVine - ‘Saltwater Lover’ https://spoti.fi/3Je1JM4 2:03:14 James Chelliah & Cam May & Grace Joyram - ‘turning forward’ https://spoti.fi/3JaPJLf https://spoti.fi/35M6UV5 https://spoti.fi/3oz9R1Y 2:04:45 The Satellite Station - ‘Growing Old 2:09:03 The Hollow Men - ‘White Lies’ 2:12:06 S.T. Manville - ‘Walls https://spoti.fi/3Lf0Ogt 2:15:17 Reed Pittman - ‘Right Beside You’ 2:18:52 Michael Barrow & The Tourists - ‘Momma Said’ 2:22:15 Vaiteani - ‘My Life’ https://spoti.fi/3GNUBVn 2:25:33 The Hollow Men - ‘Silence’ 2:29:01 Ash & Eric - ‘River’ https://spoti.fi/3LvVzcm 2:32:33 Saintway - ‘Waterfalls’ 2:36:08 Children of Indigo - ‘After All’ 2:38:45 Djakarta - ‘Looking for Attention (Acoustic)’ 2:41:37 Lexie Carroll - ‘We’re Not Lonely Anymore’ https://spoti.fi/3stCyyh 2:45:14 Chris Ellys - ‘Feel the Words’ https://spoti.fi/3HH3Yr8 2:51:31 The Satellite Station - ‘Let You Go’ 2:55:46 Pat Tierney - ‘The Light of Day’ https://spoti.fi/3uBSYr2 2:58:55 AGE of the BEAR - ‘Creeks’ https://spoti.fi/3svlV5g 3:01:00 Dhruv Visvanath - ‘Humble Bee’ https://spoti.fi/3owJ0mX 3:07:59 Michael Barrow & The Tourists - ‘What Is It For? (Piano Version)’ 3:10:22 Eauclaire - ‘Grow’ https://spoti.fi/3GBfjHS 🌧️ 🐦 Find alexrainbirdMusic on Official website: http://www.alexrainbirdmusic.com/ Spotify: http://spoti.fi/350QXar Instagram: https://instagram.com/alexrainbirdmusic/ Podcast: https://pod.link/IndieMusicPodcast Discord: https://discord.gg/nQxwjC25YX Patreon: https://www.patreon.com/alexrainbirdMusic Everywhere else: https://www.alexrainbirdmusic.com/discover ❓ About alexrainbirdMusic: Since 2011, Alex Rainbird has been finding and sharing the finest independent music. Joined by Beth Paterson as of 2017, our goal is to provide the best platform for underrated musicians to be heard, and for viewers to find amazing new music. We feature over 100 new songs every month - join our 1 million subscribers to be the first to hear them! #Instrumental #IndieFolk #IndiePlaylist
    https://wn.com/Instrumental_Indie_Folk_|_Vol._1_🪕_An_Acoustic_Chill_Playlist_For_Study,_Relax_And_Focus
    Relaxing Sunday Mornings ☕ - An Indie/Folk/Pop Playlist | Vol. 1
    1:03:22

    Relaxing Sunday Mornings ☕ - An Indie/Folk/Pop Playlist | Vol. 1

    • Order:
    • Duration: 1:03:22
    • Uploaded Date: 16 Apr 2017
    • views: 17677698
    Make every day a Sunday with an hour of chilled indie music and laidback folk tracks. More info on my website: http://www.alexrainbirdmusic.com/relaxing-sunday-morning/ » Subscribe to be the first to hear the best new independent music! http://bit.ly/145fFnx ✉ Please contact alexrainbirdmusic@gmail.com if you’d like your music to be featured on my channel. Tracklist: 0:00 Plàsi -- ‘Now & Then’ https://www.facebook.com/plasimusic/ http://sptfy.com/1ojH Download: http://apple.co/2o5YPPH 2:59 Chase McBride -- ‘Days Move Easy’ https://www.facebook.com/ChaseMcBrideMusic/ http://sptfy.com/1ojI Download: http://apple.co/2ooSHnx 5:27 Willy Poldd -- 'To Just Sail Away’ https://www.facebook.com/WillyPoldd/ http://sptfy.com/YiP Download: http://apple.co/2ozrT6b 8:43 Joel Ansett -- ‘Give Our Hearts Some Weight’ https://www.facebook.com/JoelAnsettMusic/ http://sptfy.com/YiQ Download: http://apple.co/2o65eKA 12:24 Chloe Jane -- 'Photographs' https://www.facebook.com/chloejanemusic http://sptfy.com/1ojL Download: http://apple.co/2o63Sja 15:57 August and After -- 'Halley’ https://www.facebook.com/augustandaftermusic/ http://sptfy.com/1ojM Download: http://apple.co/2p6xvFn 19:58 MaJLo -- ‘Worry’ https://www.facebook.com/MaJLomusic/ http://sptfy.com/YiV Download: http://apple.co/2oYec1D 24:36 Land Of Trees -- ‘Don’t Be A Fool’ https://www.facebook.com/LandOfTreesMusic/ http://sptfy.com/yi2 Download: http://apple.co/2oth7hf 27:10 Long For The Coast -- ‘Restless’ https://www.facebook.com/longforthecoast/ http://sptfy.com/yi3 Download: http://apple.co/2ptUIOj 29:53 East Love -- ‘Left My Love’ https://www.facebook.com/eastloveband/ http://sptfy.com/1ojS Download: http://apple.co/2p8WyoL 33:34 Toledo -- ‘King Of Spain’ https://www.facebook.com/toledomusicofficial https://soundcloud.com/toledo_music Download: N/A 37:00 Daniel Trakell -- ‘Paradise’ https://www.facebook.com/daniel.trakell/ http://sptfy.com/Yj2 Download: http://apple.co/2o6vqoj 40:59 Water Color Weekend -- 'Crescent' https://www.facebook.com/WaterColorWeekendOfficial/ http://sptfy.com/Yj7 Download: http://apple.co/2nFmMly 44:00 Marcus Alexander -- 'Goodbye' https://www.facebook.com/marcusalx/ https://soundcloud.com/mar_alx Download: https://itunes.apple.com/us/album/bedroom-poetry-feat.-paulina/id1141309829 47:04 Ben Zaidi -- 'Ivory.' https://www.facebook.com/benzaidimusic/ http://sptfy.com/Yj8 Download: http://apple.co/2puHxNd 50:06 Scott Orr -- 'Always Everything' https://www.facebook.com/scottorrmusic/ http://sptfy.com/Yj9 Download: http://apple.co/2nFxwAu 53:05 Land Of Trees -- 'Patient And Quiet' https://www.facebook.com/LandOfTreesMusic/ http://sptfy.com/yi2 Download: http://apple.co/2oth7hf 56:04 James Forest -- ‘Hummingbirds’ https://www.facebook.com/JamesForestmusic/ http://sptfy.com/Yja Download: http://apple.co/2p9nPHp 1:00:24 Randy Rhymes -- 'For Tonight' https://www.facebook.com/rhymsofficial http://sptfy.com/1P2o Download: N/A 1:03:51 Sandtimer -- ‘Get On Your Skates’ https://www.facebook.com/sandtimermusic/ http://sptfy.com/Yjm Download: http://apple.co/2o7dL0O Find alexrainbirdMusic on: Official website: http://www.alexrainbirdmusic.com/ Facebook: https://www.facebook.com/alexrainbirdMusic Twitter: https://twitter.com/alxrnbdMusic Spotify: https://open.spotify.com/user/alxrnbrdmusic/playlist/3fXgOc95i2oevn5jdK0JAY Soundcloud: https://soundcloud.com/alexrainbirdmusic Instagram: https://instagram.com/alexrainbirdmusic/ Snapchat: alx_rnbrd Patreon (to raise money for a music festival!): https://www.patreon.com/alexrainbirdMusic Vlog channel: https://www.youtube.com/channel/UCEJul3P9FgGr4LQ9mhG9mJg Official merchandise: https://www.teepublic.com/user/alexrainbirdmusic About alexrainbirdMusic: Since 2011, Alex Rainbird has been hunting down and showcasing the very best in independent music. Featuring over 50 new artists a month, Alex hopes to provide a platform for underrated musicians to be heard and for viewers to find their new favourite band. Join Alex's +200,000 subscribers today to be the first to hear the finest independent music!
    https://wn.com/Relaxing_Sunday_Mornings_☕_An_Indie_Folk_Pop_Playlist_|_Vol._1
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Neovim 0.5 Release - Lua Integration with Folke
      13:16
      Neovim 0.5 Release - Lua Integration with Folkeremove from playlist
    • Best Indie Folk of 2020
      4:03:22
      Best Indie Folk of 2020remove from playlist
    • 70s Folk Rock & Country Music
      1:05:13
      70s Folk Rock & Country Musicremove from playlist
    • Cozy Coffeehouse ☕ - An Indie/Folk/Acoustic Playlist | Vol. 1
      1:10:35
      Cozy Coffeehouse ☕ - An Indie/Folk/Acoustic Playlist | Vol. 1remove from playlist
    • Acoustic Chill • A Soft Indie Folk Playlist (50 tracks/3 hours) Calm & Soothing
      3:00:11
      Acoustic Chill • A Soft Indie Folk Playlist (50 tracks/3 hours) Calm & Soothingremove from playlist
    • Classic Folk Rock - Jim Croce, John Denver, Don Mclean, Cat Stevens
      1:05:48
      Classic Folk Rock - Jim Croce, John Denver, Don Mclean, Cat Stevensremove from playlist
    • Instrumental Indie-Folk | Vol. 1 🪕 - An Acoustic/Chill Playlist for study, relax and focus
      3:12:01
      Instrumental Indie-Folk | Vol. 1 🪕 - An Acoustic/Chill Playlist for study, relax and focusremove from playlist
    • Relaxing Sunday Mornings ☕ - An Indie/Folk/Pop Playlist | Vol. 1
      1:03:22
      Relaxing Sunday Mornings ☕ - An Indie/Folk/Pop Playlist | Vol. 1remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Neovim 0.5 Release - Lua Integration with Folke

    Part 2 of 5 from our Neovim 0.5 Release day stream. We find out some more info about Folke, a creator of a lot of great plugins and recent contributor to Neovim core. Folke: https://github.com/folke I hope you enjoy it! Playlist: https://www.youtube.com/playlist?list=PLep05UYkc6wSN7MRsO0nvRz9FzsnE49z9 Stream: https://twitch.tv/teej_dv
    13:16
    Neovim 0.5 Release - Lua Integration with Folke
    Part 2 of 5 from our Neovim 0.5 Release day stream. We find out some more info about Folke...
    published: 09 Jul 2021
    Play in Full Screen
    4:03:22
    Best Indie Folk of 2020
    Enjoy the best indie folk songs of the year 2020 now, with lyrics! (Acoustic, Indie, Folk)...
    published: 27 Dec 2020
    Play in Full Screen
    1:05:13
    70s Folk Rock & Country Music
    #Folksongs #Countrymusic #Folkrockcountrymusic #LourdesTiwiAlbay Selection songs from 70s ...
    published: 19 Jul 2020
    Play in Full Screen
    1:10:35
    Cozy Coffeehouse ☕ - An Indie/Folk/Acoustic Playlist | Vol. 1
    Relax with a hot drink and listen to these beautiful acoustic songs! Tracklist & Spotify l...
    published: 07 Sep 2018
    Play in Full Screen
    3:00:11
    Acoustic Chill • A Soft Indie Folk Playlist (50 tracks/3 hours) Calm & Soothing
    If you're looking for some soothing, calm, mellow, and acoustic songs to unwind to, we've ...
    published: 21 Mar 2023
    Play in Full Screen
    1:05:48
    Classic Folk Rock - Jim Croce, John Denver, Don Mclean, Cat Stevens
    Classic Folk Rock - Jim Croce, John Denver, Don Mclean, Cat Stevens 😍HAVE A GOOD TIME😍 ...
    published: 20 May 2022
    Play in Full Screen
    3:12:01
    Instrumental Indie-Folk | Vol. 1 🪕 - An Acoustic/Chill Playlist for study, relax and focus
    No vocals? No problem! Introducing the best instrumental indie-folk! Tracklist below… 👇 LI...
    published: 11 Feb 2022
    Play in Full Screen
    1:03:22
    Relaxing Sunday Mornings ☕ - An Indie/Folk/Pop Playlist | Vol. 1
    Make every day a Sunday with an hour of chilled indie music and laidback folk tracks. More...
    published: 16 Apr 2017
    Play in Full Screen

    Philemon Arthur and the Dung

    Philemon Arthur and the Dung is a mysterious music group from Scania, Sweden, consisting of two members known only by their pseudonyms Philemon Arthur and the Dung. The band formed in the early 1960s under the name The Popbeams, which they changed before the release of their first album. The duo's true identities are most likely known only to a few individuals at Silence Records, the record label that the band has worked with since 1971. Philemon Arthur and the Dung do not want their identities to be known, lest those who live in their small village find out who they are.

    The band's music is recorded on reel-to-reel tape decks with crackling microphones and is played on untuned guitars, drums, and accordions, with the occasional accompaniment of household objects such as saucepans, chairs, and radiators. The lyrics vary from utter nonsense, such as profoundly whimsical observations about everyday life, to satire concerning social phenomena such as homelessness, pollution, and hunting.

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