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

The Flower Kings

The Flower Kings are a Swedish progressive rock group. Formed on August 1994 by veteran guitarist Roine Stolt, as a touring band to support his solo album The Flower King, the band stayed together after the tour and have gone on to become one of the most prolific studio recording units in rock music of their era. In thirteen years they released nearly 18 hours of music spread over 11 albums. Their music is similar to early symphonic progressive rock groups such as Yes, marked by sharp dynamic changes, polyrhythmics, heavy bass, vocal harmonies, abstract and occasionally nonsensical lyrics, and extended song lengths.

History and Band Notes

The Flower Kings have been through frequent personnel changes. The original line-up for Stolt's solo album consisted of Stolt (vocals, electric guitar, bass, and keyboards), Jaime Salazar (drums), and Hasse Fröberg (vocals). They later added Michael Stolt on bass and Tomas Bodin on keyboards for the supporting tour. Michael Stolt was replaced by Jonas Reingold in 2000, and Jaime Salazar by Zoltan Csörsz in 2002. Daniel Gildenlöw of Pain of Salvation joined the band the same year as a multi-instrumentalist and vocalist.

The flower

The flower may refer to:

  • Guy Lafleur (born 1951), a Canadian icehockey player
  • Oroxylum indicum, a flowering tree in several languages
  • The Flower by John Light and Lisa Evans, a Hampshire Illustrated Book Awarded work
  • See also

  • Lafleur (disambiguation), the French equivalent
  • Podcasts:

    The Flower Kings

    ALBUMS

    • THE FLOWER KINGS – Beginner's Eyes (OFFICIAL VIDEO)

      Taken from the album “Look At You Now”, out September 8th, 2023 Order/Stream now: https://TheFlowerKings.lnk.to/LookAtYouNow Mix & Master by Roine Stolt Written by Roine Stolt Video Produced by 12InchMedia Follow The Flower Kings: Spotify: https://open.spotify.com/artist/0BI5vXwUl4lZMtARfXQ0No?si=GgCgLad0TJeGUrdiZ4VdOg Instagram: https://www.instagram.com/roinestolt8112/ Facebook: http://www.facebook.com/ TheFlowerKings Website: https://www.roinestolt.com/ Twitter: https://twitter.com/roinestolt ► “Beginner's Eyes” Lyrics: Hold on - We are all here for good reasons You got to slow down sometimes and pick up the pieces You've got to hold on No time to roll on recklessly Now that you're homebound Looking for hometown synergy Roll on - wheels of a different melody You got to slow dow...

      published: 07 Jul 2023
    • Meet the Flower Kings - Disc 1 (HD)

      Meet the Flower Kings is the second live album by the progressive rock artists The Flower Kings.. It was released in 2003 as a double-CD, and also as a two-disc DVD concert video.. The show was recorded at the Stadsteater, Uppsala, Sweden on 10 February 2003. 1. ""The Truth Will Set You Free"" (Stolt) I. "Lonely Road" II. "Primal Instincts" III. "From The Source" IV. "Uphill" V. "The Sun The Stars The Moon") 2. ""Garden Of Dreams" Part 1" (Bodin, Stolt) I. "Dawn" II. "Simple Song" III. "Business Vamp" IV. "All You Can Save" V. "Mr. Hope Goes To Wall Street" VI. "Attack of the Monster Briefcase" VII. "Did I Tell You") 3. ""Garden Of Dreams" Part 2" (Bodin, Stolt) VIII. "Garden of Dreams" IX. "Don't Let The D'Evil In" X. "L...

      published: 10 Jan 2015
    • The Flower Kings - The Dream (Official Video)

      Taken from the album “Look At You Now”, out September 8th, 2023 Order/Stream now: https://TheFlowerKings.lnk.to/LookAtYouNow Mix & Master by Roine Stolt Written by Roine Stolt Video Produced by 12InchMedia Follow The Flower Kings: Spotify: https://open.spotify.com/artist/0BI5vXwUl4lZMtARfXQ0No?si=GgCgLad0TJeGUrdiZ4VdOg Instagram: https://www.instagram.com/roinestolt8112/ Facebook: http://www.facebook.com/TheFlowerKings Website: https://www.roinestolt.com/ Twitter: https://twitter.com/roinestolt ► “The Dream” Lyrics: This dream - it won't go away It will lift your heart - a big smile Sometimes it hurts - sometimes you break It's another big ending that you cannot fake The light goes off but you still do shine They may try to break you But you're back in line In the fields of darknes...

      published: 10 Aug 2023
    • THE FLOWER KINGS - Black Swan (OFFICIAL VIDEO)

      Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Essentials Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Essentials Playlist: https//open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc si=eH1XC3i5RBSXD4hUjiLcNA

      published: 12 Jan 2021
    • THE FLOWER KINGS - A Million Stars (OFFICIAL VIDEO)

      THE FLOWER KINGS - A Million Stars (OFFICIAL VIDEO) Taken from the album 'By Royal Decree' out on March 4th, 2022. Available here: https://theflowerkings.lnk.to/ByRoyalDecreeID Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA

      published: 18 Jan 2022
    • THE FLOWER KINGS - Revolution (OFFICIAL VIDEO)

      THE FLOWER KINGS - Revolution (OFFICIAL VIDEO) Taken from the album 'By Royal Decree' out on March 4th, 2022. Available here: https://theflowerkings.lnk.to/ByRoyalDecreeID Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA

      published: 17 Feb 2022
    • The Flower Kings - Stardust We Are

      I do not own the rights for this song, just sharing for the world to see. The Flower Kings Song: Stardust We Are Album: Stardust We Are (1997) -- Stardust We Are Lyrics-- "Part I Look for no tears in my eyes Sing me no sweet lullaby I made myself a heart out of stone, that I can call my own Remember the days of the shoreline The sun made the surfers go blind Once, painfully trapped between childhood and fame Now that's my name Someone please tear down the walls of this room Don't leave me deaf-dumb in this silent cocoon I gave my soul freely for a place in the sun I know that I'm not the only one Shadow flies, dead end of fame Them neon lights spelling my name Fear the day when light goes out What's it all about? The dust that once came to my eyes, suddenly left me unwise Painfully...

      published: 16 Nov 2013
    • THE FLOWER KINGS - All I Need Is Love (OFFICIAL VIDEO)

      THE FLOWER KINGS - All I Need Is Love (OFFICIAL VIDEO) --- Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Essentials Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Essentials Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA

      published: 18 Feb 2021
    • TRANSATLANTIC Performs SMPT:e / BRIDGE ACROSS FOREVER Medley to Close Unbelievable Set on CTTE 2022

      Transatlantic, the Progressive Rock supergroup playing for the second to last time (the last was May 5, 2022 , the Absolute Universe concert) close out their amazing set going back in time to their first two albums (SMPT:e and Bridge Across Forever) and performing a medley of four epic songs (a total of six tracks) with all the members taking solos, on Cruise to the Edge 2022 (abbreviated to CTTE in title line) in the Royal Theater on the Royal Caribbean cruiseship Mariner of the Seas on May 2, 2022. The first two movements of Duel With the Devil, Motherless Children and Walk Away were written by Neal Morse, Mike Portnoy, Roine Stolt and Pete Trewavas and were the the first and second tracks on Bridge Across Forever, Transatlantic's second studio album released in October 2001. My New W...

      published: 19 Jan 2025
    • THE FLOWER KINGS - The Great Pretender (OFFICIAL AUDIO)

      THE FLOWER KINGS - The Great Pretender (OFFICIAL AUDIO) Taken from the album 'By Royal Decree' out 4th March 2022 Order now here: https://theflowerkings.lnk.to/ByRoyalDecreeID Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA

      published: 07 Jan 2022
    THE FLOWER KINGS – Beginner's Eyes (OFFICIAL VIDEO)
    4:31

    THE FLOWER KINGS – Beginner's Eyes (OFFICIAL VIDEO)

    • Order:
    • Duration: 4:31
    • Uploaded Date: 07 Jul 2023
    • views: 107893
    Taken from the album “Look At You Now”, out September 8th, 2023 Order/Stream now: https://TheFlowerKings.lnk.to/LookAtYouNow Mix & Master by Roine Stolt Written by Roine Stolt Video Produced by 12InchMedia Follow The Flower Kings: Spotify: https://open.spotify.com/artist/0BI5vXwUl4lZMtARfXQ0No?si=GgCgLad0TJeGUrdiZ4VdOg Instagram: https://www.instagram.com/roinestolt8112/ Facebook: http://www.facebook.com/ TheFlowerKings Website: https://www.roinestolt.com/ Twitter: https://twitter.com/roinestolt ► “Beginner's Eyes” Lyrics: Hold on - We are all here for good reasons You got to slow down sometimes and pick up the pieces You've got to hold on No time to roll on recklessly Now that you're homebound Looking for hometown synergy Roll on - wheels of a different melody You got to slow down - sink into blue-infinity You've got to hold on - building this strong community Sunrise to sundown Better be living for love and the love that you give We better make it up as we go Finding out - we know more than we've ever known As long as you know the time - you know that this time is mine It's just the same old you - but brand-new ways to shine Get rid of red tape - end of lies You've lived to see beyond those nights The wisdom of a child is always right You lift their eyes beyond the stars A future hidden, in your heart With beginner’s eyes You've got to hold on - no time to roll on recklessly Looking for hometown synergy Looking for hometown synergy ► Remember to catch The Flower Kings on their upcoming EU Autumn Tour: 13.07.2023 NO-Brönnöysund – Rootsfestival 16.09.2023 SWE-Uppsala – TFK Fan Day & Release Party 17.09.2023 SWE-Uppsala – TFK Fan Day & Release Party 04.10.2023 DK-Kopenhagen – Beta 05.10.2023 DE-Berlin – Frannz-Club 06.10.2023 PL- Poznań – 2Progi 07.10.2023 PL-Rzgów – GOK 08.10.2023 PL-Piekary Śląskie – OK Andaluzja 10.10.2023 CZ-Olomouc – Bounty Rock Café 11.10.2023 HU-Budapest – Analog Music Hall 12.10.2023 SLK-Bratislava – Majestic Music Club 14.10.2023 IT-Borgomanero – Teatro Rosmini 15.10.2023 DE-Regensburg – Evenhalle Airport 16.10.2023 DE-Augsburg – Spectrum 17.10.2023 CH-Pratteln – Z7 19.10.2023 UK-Southhampton – The 1865 20.10.2023 UK-London – Powerhaus 23.10.2023 BE-Verviers – Spirit Of 66 24.10.2023 DE-Aschaffenburg – Colos-Saal 25.10.2023 DE-Köln – Yard Club 26.10.2023 DE-Übach-Palenberg – Rockfabrik 27.10.2023 NL-Uden – De Pul 28.10.2023 NL-Zoetermeer – Boerderij 29.10.2023 DE-Hamburg – Logo Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA #theflowerkings #flower #kings #roinestolt #vintage #70’s #progrock #analog
    https://wn.com/The_Flower_Kings_–_Beginner's_Eyes_(Official_Video)
    Meet the Flower Kings - Disc 1 (HD)
    1:17:05

    Meet the Flower Kings - Disc 1 (HD)

    • Order:
    • Duration: 1:17:05
    • Uploaded Date: 10 Jan 2015
    • views: 84744
    Meet the Flower Kings is the second live album by the progressive rock artists The Flower Kings.. It was released in 2003 as a double-CD, and also as a two-disc DVD concert video.. The show was recorded at the Stadsteater, Uppsala, Sweden on 10 February 2003. 1. ""The Truth Will Set You Free"" (Stolt) I. "Lonely Road" II. "Primal Instincts" III. "From The Source" IV. "Uphill" V. "The Sun The Stars The Moon") 2. ""Garden Of Dreams" Part 1" (Bodin, Stolt) I. "Dawn" II. "Simple Song" III. "Business Vamp" IV. "All You Can Save" V. "Mr. Hope Goes To Wall Street" VI. "Attack of the Monster Briefcase" VII. "Did I Tell You") 3. ""Garden Of Dreams" Part 2" (Bodin, Stolt) VIII. "Garden of Dreams" IX. "Don't Let The D'Evil In" X. "Love Is The Word" XI. "Gardens Revisited" XII. "Shadowland" XIII. "The Final Deal")
    https://wn.com/Meet_The_Flower_Kings_Disc_1_(Hd)
    The Flower Kings - The Dream (Official Video)
    3:30

    The Flower Kings - The Dream (Official Video)

    • Order:
    • Duration: 3:30
    • Uploaded Date: 10 Aug 2023
    • views: 71893
    Taken from the album “Look At You Now”, out September 8th, 2023 Order/Stream now: https://TheFlowerKings.lnk.to/LookAtYouNow Mix & Master by Roine Stolt Written by Roine Stolt Video Produced by 12InchMedia Follow The Flower Kings: Spotify: https://open.spotify.com/artist/0BI5vXwUl4lZMtARfXQ0No?si=GgCgLad0TJeGUrdiZ4VdOg Instagram: https://www.instagram.com/roinestolt8112/ Facebook: http://www.facebook.com/TheFlowerKings Website: https://www.roinestolt.com/ Twitter: https://twitter.com/roinestolt ► “The Dream” Lyrics: This dream - it won't go away It will lift your heart - a big smile Sometimes it hurts - sometimes you break It's another big ending that you cannot fake The light goes off but you still do shine They may try to break you But you're back in line In the fields of darkness A beacon of light You leave but no one - no one behind Another smokestack - upon horizons Where you are bound - there is no hiding About one truth - shine bright and strong The great divider - between right and wrong It will take some time to figure out But once you see it - you just wanna shout At the foot of this mountain - we had this vision Of ONE love - and consolidation It will take some time to figure out But once you see it - you just wanna shout At the foot of this mountain - we had this vision Of ONE love and consolidation Hold on - We are all here for good reasons You got to slow down sometimes and pick up the pieces You've got to hold on No time to roll on recklessly Now that you're homebound Looking for hometown synergy Roll on - wheels of a different melody You got to slow down - sink into blue-infinity You've got to hold on - building this strong community Sunrise to sundown Better be living for love and the love that you give We better make it up as we go Finding out - we know more than we've ever known As long as you know the time - you know that this time is mine It's just the same old you - but brand-new ways to shine Get rid of red tape - end of lies You've lived to see beyond those nights The wisdom of a child is always right You lift their eyes beyond the stars A future hidden, in your heart With beginner’s eyes You've got to hold on - no time to roll on recklessly Looking for hometown synergy Looking for hometown synergy Remember to catch The Flower Kings on their upcoming EU Autumn Tour: 16.09.2023 SWE-Uppsala – TFK Fan Day & Release Party 17.09.2023 SWE-Uppsala – TFK Fan Day & Release Party 04.10.2023 DK-Kopenhagen – Beta 05.10.2023 DE-Berlin – Frannz-Club 06.10.2023 PL- Poznań – 2Progi 07.10.2023 PL-Rzgów – GOK 08.10.2023 PL-Piekary Śląskie – OK Andaluzja 10.10.2023 CZ-Olomouc – Bounty Rock Café 11.10.2023 HU-Budapest – Analog Music Hall 12.10.2023 SLK-Bratislava – Majestic Music Club 14.10.2023 IT-Borgomanero – Teatro Rosmini 15.10.2023 DE-Regensburg – Evenhalle Airport 16.10.2023 DE-Augsburg – Spectrum 17.10.2023 CH-Pratteln – Z7 19.10.2023 UK-Southhampton – The 1865 20.10.2023 UK-London – Powerhaus 23.10.2023 BE-Verviers – Spirit Of 66 24.10.2023 DE-Aschaffenburg – Colos-Saal 25.10.2023 DE-Köln – Yard Club 26.10.2023 DE-Übach-Palenberg – Rockfabrik 27.10.2023 NL-Uden – De Pul 28.10.2023 NL-Zoetermeer – Boerderij 29.10.2023 DE-Hamburg – Logo Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA #theflowerkings #flower #kings #roinestolt #vintage #70’s #progrock #analog #dream
    https://wn.com/The_Flower_Kings_The_Dream_(Official_Video)
    THE FLOWER KINGS - Black Swan (OFFICIAL VIDEO)
    6:06

    THE FLOWER KINGS - Black Swan (OFFICIAL VIDEO)

    • Order:
    • Duration: 6:06
    • Uploaded Date: 12 Jan 2021
    • views: 87095
    Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Essentials Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Essentials Playlist: https//open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc si=eH1XC3i5RBSXD4hUjiLcNA
    https://wn.com/The_Flower_Kings_Black_Swan_(Official_Video)
    THE FLOWER KINGS - A Million Stars (OFFICIAL VIDEO)
    7:20

    THE FLOWER KINGS - A Million Stars (OFFICIAL VIDEO)

    • Order:
    • Duration: 7:20
    • Uploaded Date: 18 Jan 2022
    • views: 165478
    THE FLOWER KINGS - A Million Stars (OFFICIAL VIDEO) Taken from the album 'By Royal Decree' out on March 4th, 2022. Available here: https://theflowerkings.lnk.to/ByRoyalDecreeID Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA
    https://wn.com/The_Flower_Kings_A_Million_Stars_(Official_Video)
    THE FLOWER KINGS - Revolution (OFFICIAL VIDEO)
    6:04

    THE FLOWER KINGS - Revolution (OFFICIAL VIDEO)

    • Order:
    • Duration: 6:04
    • Uploaded Date: 17 Feb 2022
    • views: 100889
    THE FLOWER KINGS - Revolution (OFFICIAL VIDEO) Taken from the album 'By Royal Decree' out on March 4th, 2022. Available here: https://theflowerkings.lnk.to/ByRoyalDecreeID Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA
    https://wn.com/The_Flower_Kings_Revolution_(Official_Video)
    The Flower Kings - Stardust We Are
    25:11

    The Flower Kings - Stardust We Are

    • Order:
    • Duration: 25:11
    • Uploaded Date: 16 Nov 2013
    • views: 99900
    I do not own the rights for this song, just sharing for the world to see. The Flower Kings Song: Stardust We Are Album: Stardust We Are (1997) -- Stardust We Are Lyrics-- "Part I Look for no tears in my eyes Sing me no sweet lullaby I made myself a heart out of stone, that I can call my own Remember the days of the shoreline The sun made the surfers go blind Once, painfully trapped between childhood and fame Now that's my name Someone please tear down the walls of this room Don't leave me deaf-dumb in this silent cocoon I gave my soul freely for a place in the sun I know that I'm not the only one Shadow flies, dead end of fame Them neon lights spelling my name Fear the day when light goes out What's it all about? The dust that once came to my eyes, suddenly left me unwise Painfully trapped between childhood and fame Now, it's a shame Astray like a leaf in the rapids of time Once touch the stars, then back to the grind Back to the level where humans thread mploded back into the head..... Someone please tear down the walls of this room Don't leave me deaf-dumb in this silent cocoon I gave my soul freely for a moment of truth Like a servant and knight to boot .....see me, touch me, feel me, will I live forever? Hold me, teach me, thrill me, in your love forever Part II Let me guide you to a world unknown Kiss the frog and kiss the lizards throne See them crawling out of dusty holes Ghosts of yesterday, now twice as bold Set the wheels in motion once again Flames they change, the empires remain Dare I dream of better days to come Have I precious statements still undone Will you follow me to stars unknown, or will I end up traveling alone? Let me guide you to a world unknown Kiss the frog and kiss the lizards throne Teach me, tell me, will I live forever......? Part III Now see how we fly to heavenly high Swimming the ocean and spin' the stars And so the great net will fall apart So don't forget the human touch, The word of mouth This roundabout, we love so much, Now see how our thoughts are running free Run for leader and semi God And once again we pay in blood So don't forget the human trial, The cry of love, the spark of life, dance thru the fire Stardust we are Close to divine Stardust we are See how we shine"
    https://wn.com/The_Flower_Kings_Stardust_We_Are
    THE FLOWER KINGS - All I Need Is Love (OFFICIAL VIDEO)
    5:55

    THE FLOWER KINGS - All I Need Is Love (OFFICIAL VIDEO)

    • Order:
    • Duration: 5:55
    • Uploaded Date: 18 Feb 2021
    • views: 31684
    THE FLOWER KINGS - All I Need Is Love (OFFICIAL VIDEO) --- Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Essentials Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Essentials Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA
    https://wn.com/The_Flower_Kings_All_I_Need_Is_Love_(Official_Video)
    TRANSATLANTIC Performs SMPT:e / BRIDGE ACROSS FOREVER Medley to Close Unbelievable Set on CTTE 2022
    27:23

    TRANSATLANTIC Performs SMPT:e / BRIDGE ACROSS FOREVER Medley to Close Unbelievable Set on CTTE 2022

    • Order:
    • Duration: 27:23
    • Uploaded Date: 19 Jan 2025
    • views: 45
    Transatlantic, the Progressive Rock supergroup playing for the second to last time (the last was May 5, 2022 , the Absolute Universe concert) close out their amazing set going back in time to their first two albums (SMPT:e and Bridge Across Forever) and performing a medley of four epic songs (a total of six tracks) with all the members taking solos, on Cruise to the Edge 2022 (abbreviated to CTTE in title line) in the Royal Theater on the Royal Caribbean cruiseship Mariner of the Seas on May 2, 2022. The first two movements of Duel With the Devil, Motherless Children and Walk Away were written by Neal Morse, Mike Portnoy, Roine Stolt and Pete Trewavas and were the the first and second tracks on Bridge Across Forever, Transatlantic's second studio album released in October 2001. My New World was written by Neal Morse, Mike Portnoy, Roine Stolt and Pete Trewavas and was the fourth track on SMPT:e, Transatlantic's debut studio album released in March 2000. Full Moon Rising, the first movement of All of the Above was written by Neal Morse, Mike Portnoy, Roine Stolt and Pete Trewavas and was the opening track on SMPT:e. Two movements of Stranger in Your Soul, Sleeping Wide Awake and Stranger in Your Soul were written Neal Morse, Mike Portnoy, Roine Stolt and Pete Trewavas and were the first and six movements on the fourth track of Bridge Across Forever, Transatlantic's second studio album. We ran out of superlatives to describe this jaw dropping, incredible performance by Transatlantic. We hope we will have the good fortune to see them again sometime in the future. Transatlantic Neal Morse (NMB, Spock's Beard, Flying Colors) Keyboards, Guitar & Vocals Roine Stolt (The Flower Kings) - Guitar & Vocals Pete Trewavas (Marillion) - Bass Guitar & Vocals Mike Portnoy (Dream Theater, Flying Colors) - Drums & Vocals Ted Leonard (Enchant) - Guitar, Keyboards, Percussion & Backing Vocals @transatlanticofficial
    https://wn.com/Transatlantic_Performs_Smpt_E_Bridge_Across_Forever_Medley_To_Close_Unbelievable_Set_On_Ctte_2022
    THE FLOWER KINGS - The Great Pretender (OFFICIAL AUDIO)
    6:59

    THE FLOWER KINGS - The Great Pretender (OFFICIAL AUDIO)

    • Order:
    • Duration: 6:59
    • Uploaded Date: 07 Jan 2022
    • views: 26705
    THE FLOWER KINGS - The Great Pretender (OFFICIAL AUDIO) Taken from the album 'By Royal Decree' out 4th March 2022 Order now here: https://theflowerkings.lnk.to/ByRoyalDecreeID Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA
    https://wn.com/The_Flower_Kings_The_Great_Pretender_(Official_Audio)
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • THE FLOWER KINGS – Beginner's Eyes (OFFICIAL VIDEO)
      4:31
      THE FLOWER KINGS – Beginner's Eyes (OFFICIAL VIDEO)remove from playlist
    • Meet the Flower Kings - Disc 1 (HD)
      1:17:05
      Meet the Flower Kings - Disc 1 (HD)remove from playlist
    • The Flower Kings - The Dream (Official Video)
      3:30
      The Flower Kings - The Dream (Official Video)remove from playlist
    • THE FLOWER KINGS - Black Swan (OFFICIAL VIDEO)
      6:06
      THE FLOWER KINGS - Black Swan (OFFICIAL VIDEO)remove from playlist
    • THE FLOWER KINGS - A Million Stars (OFFICIAL VIDEO)
      7:20
      THE FLOWER KINGS - A Million Stars (OFFICIAL VIDEO)remove from playlist
    • THE FLOWER KINGS - Revolution (OFFICIAL VIDEO)
      6:04
      THE FLOWER KINGS - Revolution (OFFICIAL VIDEO)remove from playlist
    • The Flower Kings - Stardust We Are
      25:11
      The Flower Kings - Stardust We Areremove from playlist
    • THE FLOWER KINGS - All I Need Is Love (OFFICIAL VIDEO)
      5:55
      THE FLOWER KINGS - All I Need Is Love (OFFICIAL VIDEO)remove from playlist
    • TRANSATLANTIC Performs SMPT:e / BRIDGE ACROSS FOREVER Medley to Close Unbelievable Set on CTTE 2022
      27:23
      TRANSATLANTIC Performs SMPT:e / BRIDGE ACROSS FOREVER Medley to Close Unbelievable Set on CTTE 2022remove from playlist
    • THE FLOWER KINGS - The Great Pretender (OFFICIAL AUDIO)
      6:59
      THE FLOWER KINGS - The Great Pretender (OFFICIAL AUDIO)remove from playlist
    PLAYLIST TIME: 0:00 / 2:50:04

    THE FLOWER KINGS – Beginner's Eyes (OFFICIAL VIDEO)

    Taken from the album “Look At You Now”, out September 8th, 2023 Order/Stream now: https://TheFlowerKings.lnk.to/LookAtYouNow Mix & Master by Roine Stolt Written by Roine Stolt Video Produced by 12InchMedia Follow The Flower Kings: Spotify: https://open.spotify.com/artist/0BI5vXwUl4lZMtARfXQ0No?si=GgCgLad0TJeGUrdiZ4VdOg Instagram: https://www.instagram.com/roinestolt8112/ Facebook: http://www.facebook.com/ TheFlowerKings Website: https://www.roinestolt.com/ Twitter: https://twitter.com/roinestolt ► “Beginner's Eyes” Lyrics: Hold on - We are all here for good reasons You got to slow down sometimes and pick up the pieces You've got to hold on No time to roll on recklessly Now that you're homebound Looking for hometown synergy Roll on - wheels of a different melody You got to slow down - sink into blue-infinity You've got to hold on - building this strong community Sunrise to sundown Better be living for love and the love that you give We better make it up as we go Finding out - we know more than we've ever known As long as you know the time - you know that this time is mine It's just the same old you - but brand-new ways to shine Get rid of red tape - end of lies You've lived to see beyond those nights The wisdom of a child is always right You lift their eyes beyond the stars A future hidden, in your heart With beginner’s eyes You've got to hold on - no time to roll on recklessly Looking for hometown synergy Looking for hometown synergy ► Remember to catch The Flower Kings on their upcoming EU Autumn Tour: 13.07.2023 NO-Brönnöysund – Rootsfestival 16.09.2023 SWE-Uppsala – TFK Fan Day & Release Party 17.09.2023 SWE-Uppsala – TFK Fan Day & Release Party 04.10.2023 DK-Kopenhagen – Beta 05.10.2023 DE-Berlin – Frannz-Club 06.10.2023 PL- Poznań – 2Progi 07.10.2023 PL-Rzgów – GOK 08.10.2023 PL-Piekary Śląskie – OK Andaluzja 10.10.2023 CZ-Olomouc – Bounty Rock Café 11.10.2023 HU-Budapest – Analog Music Hall 12.10.2023 SLK-Bratislava – Majestic Music Club 14.10.2023 IT-Borgomanero – Teatro Rosmini 15.10.2023 DE-Regensburg – Evenhalle Airport 16.10.2023 DE-Augsburg – Spectrum 17.10.2023 CH-Pratteln – Z7 19.10.2023 UK-Southhampton – The 1865 20.10.2023 UK-London – Powerhaus 23.10.2023 BE-Verviers – Spirit Of 66 24.10.2023 DE-Aschaffenburg – Colos-Saal 25.10.2023 DE-Köln – Yard Club 26.10.2023 DE-Übach-Palenberg – Rockfabrik 27.10.2023 NL-Uden – De Pul 28.10.2023 NL-Zoetermeer – Boerderij 29.10.2023 DE-Hamburg – Logo Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/InsideOutMusic Shop: EU: https://www.insideoutshop.de/ US: https://www.insideoutmusic.store Twitter: EU: https://twitter.com/insideouteu US: https://www.twitter.com/InsideOutUSA Spotify Prog Rock Playlist: https://open.spotify.com/playlist/4whzMXikOGzFVekQmAzMdo?si=-gS9TdR_Suy293cEmVpsJQ Spotify Prog Metal Playlist: https://open.spotify.com/playlist/62sl2B97a8xD7B99pNdJwc?si=eH1XC3i5RBSXD4hUjiLcNA #theflowerkings #flower #kings #roinestolt #vintage #70’s #progrock #analog
    4:31
    THE FLOWER KINGS – Beginner's Eyes (OFFICIAL VIDEO)
    Taken from the album “Look At You Now”, out September 8th, 2023 Order/Stream now: https://...
    published: 07 Jul 2023
    Play in Full Screen
    1:17:05
    Meet the Flower Kings - Disc 1 (HD)
    Meet the Flower Kings is the second live album by the progressive rock artists The Flower ...
    published: 10 Jan 2015
    Play in Full Screen
    3:30
    The Flower Kings - The Dream (Official Video)
    Taken from the album “Look At You Now”, out September 8th, 2023 Order/Stream now: https://...
    published: 10 Aug 2023
    Play in Full Screen
    6:06
    THE FLOWER KINGS - Black Swan (OFFICIAL VIDEO)
    Follow InsideOutMusic here: https://www.insideoutmusic.com https://www.facebook.com/Inside...
    published: 12 Jan 2021
    Play in Full Screen
    7:20
    THE FLOWER KINGS - A Million Stars (OFFICIAL VIDEO)
    THE FLOWER KINGS - A Million Stars (OFFICIAL VIDEO) Taken from the album 'By Royal Decree'...
    published: 18 Jan 2022
    Play in Full Screen
    6:04
    THE FLOWER KINGS - Revolution (OFFICIAL VIDEO)
    THE FLOWER KINGS - Revolution (OFFICIAL VIDEO) Taken from the album 'By Royal Decree' out ...
    published: 17 Feb 2022
    Play in Full Screen
    25:11
    The Flower Kings - Stardust We Are
    I do not own the rights for this song, just sharing for the world to see. The Flower King...
    published: 16 Nov 2013
    Play in Full Screen
    5:55
    THE FLOWER KINGS - All I Need Is Love (OFFICIAL VIDEO)
    THE FLOWER KINGS - All I Need Is Love (OFFICIAL VIDEO) --- Follow InsideOutMusic here: ht...
    published: 18 Feb 2021
    Play in Full Screen
    27:23
    TRANSATLANTIC Performs SMPT:e / BRIDGE ACROSS FOREVER Medley to Close Unbelievable Set on CTTE 2022
    Transatlantic, the Progressive Rock supergroup playing for the second to last time (the la...
    published: 19 Jan 2025
    Play in Full Screen
    6:59
    THE FLOWER KINGS - The Great Pretender (OFFICIAL AUDIO)
    THE FLOWER KINGS - The Great Pretender (OFFICIAL AUDIO) Taken from the album 'By Royal Dec...
    published: 07 Jan 2022
    Play in Full Screen

    The Flower Kings

    The Flower Kings are a Swedish progressive rock group. Formed on August 1994 by veteran guitarist Roine Stolt, as a touring band to support his solo album The Flower King, the band stayed together after the tour and have gone on to become one of the most prolific studio recording units in rock music of their era. In thirteen years they released nearly 18 hours of music spread over 11 albums. Their music is similar to early symphonic progressive rock groups such as Yes, marked by sharp dynamic changes, polyrhythmics, heavy bass, vocal harmonies, abstract and occasionally nonsensical lyrics, and extended song lengths.

    History and Band Notes

    The Flower Kings have been through frequent personnel changes. The original line-up for Stolt's solo album consisted of Stolt (vocals, electric guitar, bass, and keyboards), Jaime Salazar (drums), and Hasse Fröberg (vocals). They later added Michael Stolt on bass and Tomas Bodin on keyboards for the supporting tour. Michael Stolt was replaced by Jonas Reingold in 2000, and Jaime Salazar by Zoltan Csörsz in 2002. Daniel Gildenlöw of Pain of Salvation joined the band the same year as a multi-instrumentalist and vocalist.

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