CINXE.COM

BBC - Wales Music

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><title>BBC - Wales Music</title><style type="text/css"> #archive-mothballed-message a:hover span { text-decoration:underline; } #blq-container #archived-mothball-message a { padding-left:250px; padding-top:17px; background-position: 180px 10px; } #ttd-masthead #archived-mothball-message a { padding-left:250px; padding-top:17px; background-position: 180px 10px; } #k-masthead-container #archived-mothball-message a { padding-left:250px; padding-top:17px; background-position: 180px 10px; } #archived-mothball-message a { display:block; height:56px; background:url(/globalresources/mothball-images/i.gif) 100px 10px no-repeat; color:#666; text-decoration:none; padding-left:160px; padding-top:12px; font-size:20px; font-family: verdana,helvetica,arial,sans-serif; font-weight: normal; } </style><meta name="description" content="A guide to music in Wales: blogging on festivals, gigs, news, radio sessions, bands, singers, choirs and more."><meta name="keywords" content="bbc, wales, welsh, whales, welch, english, cymru, music, blog, blogging, blogger, writer, writing, news, bethan elfyn, adam walton, updates, rss, tom jones, bullet for my valentine, lostprophets, shirley bassey, katherine jenkins, bryn terfel, charlotte church, bands, musicians, events, things to do, festivals, concerts, gigs, cardiff, newport, swansea, wrexham, north wales, south wales, mid wales, what's on, children"><meta name="DCTERMS.created" content="2009-01-27T12:00:00Z"><meta name="DCTERMS.modified" content="2012-04-02T11:27+0:00"><!-- Turn on Identity --><!-- Glow cachebust: --><!-- Barlesque 2.72.5 --><link rel="schema.dcterms" href="https://purl.org/dc/terms/"><link rel="index" href="https://www.bbc.co.uk/a-z/" title="A to Z"><link rel="copyright" href="https://www.bbc.co.uk/terms/" title="Terms of Use"><link rel="icon" href="https://www.bbc.co.uk/favicon.ico" type="image/x-icon"><meta name="viewport" content="width = 974"><link rel="stylesheet" type="text/css" href="/staticarchive/c808749ad4d537416e40591def8e05c130d72722.css"><script type="text/javascript">/*<![CDATA[*/ (function(undefined){if(!window.bbc){window.bbc={}}var ROLLING_PERIOD_DAYS=30;window.bbc.Mandolin=function(id,segments,opts){var now=new Date().getTime(),storedItem,DEFAULT_START=now,DEFAULT_RATE=1,COOKIE_NAME="ckpf_mandolin";opts=opts||{};this._id=id;this._segmentSet=segments;this._store=new window.window.bbc.Mandolin.Storage(COOKIE_NAME);this._opts=opts;this._rate=(opts.rate!==undefined)?+opts.rate:DEFAULT_RATE;this._startTs=(opts.start!==undefined)?new Date(opts.start).getTime():new Date(DEFAULT_START).getTime();this._endTs=(opts.end!==undefined)?new Date(opts.end).getTime():daysFromNow(ROLLING_PERIOD_DAYS);this._signupEndTs=(opts.signupEnd!==undefined)?new Date(opts.signupEnd).getTime():this._endTs;this._segment=null;if(typeof id!=="string"){throw new Error("Invalid Argument: id must be defined and be a string")}if(Object.prototype.toString.call(segments)!=="[object Array]"){throw new Error("Invalid Argument: Segments are required.")}if(opts.rate!==undefined&&(opts.rate<0||opts.rate>1)){throw new Error("Invalid Argument: Rate must be between 0 and 1.")}if(this._startTs>this._endTs){throw new Error("Invalid Argument: end date must occur after start date.")}if(!(this._startTs<this._signupEndTs&&this._signupEndTs<=this._endTs)){throw new Error("Invalid Argument: SignupEnd must be between start and end date")}removeExpired.call(this,now);var overrides=window.bbccookies.get().match(/ckns_mandolin_setSegments=([^;]+)/);if(overrides!==null){eval("overrides = "+decodeURIComponent(RegExp.$1)+";");if(overrides[this._id]&&this._segmentSet.indexOf(overrides[this._id])==-1){throw new Error("Invalid Override: overridden segment should exist in segments array")}}if(overrides!==null&&overrides[this._id]){this._segment=overrides[this._id]}else{if((storedItem=this._store.getItem(this._id))){this._segment=storedItem.segment}else{if(this._startTs<=now&&now<this._signupEndTs&&now<=this._endTs&&this._store.isEnabled()===true){this._segment=pick(segments,this._rate);if(opts.end===undefined){this._store.setItem(this._id,{segment:this._segment})}else{this._store.setItem(this._id,{segment:this._segment,end:this._endTs})}log.call(this,"mandolin_segment")}}}log.call(this,"mandolin_view")};window.bbc.Mandolin.prototype.getSegment=function(){return this._segment};function log(actionType,params){var that=this;require(["istats-1"],function(istats){istats.log(actionType,that._id+":"+that._segment,params?params:{})})}function removeExpired(expires){var items=this._store.getItems(),expiresInt=+expires;for(var key in items){if(items[key].end!==undefined&&+items[key].end<expiresInt){this._store.removeItem(key)}}}function getLastExpirationDate(data){var winner=0,rollingExpire=daysFromNow(ROLLING_PERIOD_DAYS);for(var key in data){if(data[key].end===undefined&&rollingExpire>winner){winner=rollingExpire}else{if(+data[key].end>winner){winner=+data[key].end}}}return(winner)?new Date(winner):new Date(rollingExpire)}window.bbc.Mandolin.prototype.log=function(params){log.call(this,"mandolin_log",params)};window.bbc.Mandolin.prototype.convert=function(params){log.call(this,"mandolin_convert",params);this.convert=function(){}};function daysFromNow(n){var endDate;endDate=new Date().getTime()+(n*60*60*24)*1000;return endDate}function pick(segments,rate){var picked,min=0,max=segments.length-1;if(typeof rate==="number"&&Math.random()>rate){return null}do{picked=Math.floor(Math.random()*(max-min+1))+min}while(picked>max);return segments[picked]}window.bbc.Mandolin.Storage=function(name){validateCookieName(name);this._cookieName=name;this._isEnabled=(bbccookies.isAllowed(this._cookieName)===true&&bbccookies.cookiesEnabled()===true)};window.bbc.Mandolin.Storage.prototype.setItem=function(key,value){var storeData=this.getItems();storeData[key]=value;this.save(storeData);return value};window.bbc.Mandolin.Storage.prototype.isEnabled=function(){return this._isEnabled};window.bbc.Mandolin.Storage.prototype.getItem=function(key){var storeData=this.getItems();return storeData[key]};window.bbc.Mandolin.Storage.prototype.removeItem=function(key){var storeData=this.getItems();delete storeData[key];this.save(storeData)};window.bbc.Mandolin.Storage.prototype.getItems=function(){return deserialise(this.readCookie(this._cookieName)||"")};window.bbc.Mandolin.Storage.prototype.save=function(data){window.bbccookies.set(this._cookieName+"="+encodeURIComponent(serialise(data))+"; expires="+getLastExpirationDate(data).toUTCString()+";")};window.bbc.Mandolin.Storage.prototype.readCookie=function(name){var nameEq=name+"=",ca=window.bbccookies.get().split("; "),i,c;validateCookieName(name);for(i=0;i<ca.length;i++){c=ca[i];if(c.indexOf(nameEq)===0){return decodeURIComponent(c.substring(nameEq.length,c.length))}}return null};function serialise(o){var str="";for(var p in o){if(o.hasOwnProperty(p)){str+='"'+p+'"'+":"+(typeof o[p]==="object"?(o[p]===null?"null":"{"+serialise(o[p])+"}"):'"'+o[p].toString()+'"')+","}}return str.replace(/,\}/g,"}").replace(/,$/g,"")}function deserialise(str){var o;str="{"+str+"}";if(!validateSerialisation(str)){throw"Invalid input provided for deserialisation."}eval("o = "+str);return o}var validateSerialisation=(function(){var OBJECT_TOKEN="<Object>",ESCAPED_CHAR='"\\n\\r\\u2028\\u2029\\u000A\\u000D\\u005C',ALLOWED_CHAR="([^"+ESCAPED_CHAR+"]|\\\\["+ESCAPED_CHAR+"])",KEY='"'+ALLOWED_CHAR+'+"',VALUE='(null|"'+ALLOWED_CHAR+'*"|'+OBJECT_TOKEN+")",KEY_VALUE=KEY+":"+VALUE,KEY_VALUE_SEQUENCE="("+KEY_VALUE+",)*"+KEY_VALUE,OBJECT_LITERAL="({}|{"+KEY_VALUE_SEQUENCE+"})",objectPattern=new RegExp(OBJECT_LITERAL,"g");return function(str){if(str.indexOf(OBJECT_TOKEN)!==-1){return false}while(str.match(objectPattern)){str=str.replace(objectPattern,OBJECT_TOKEN)}return str===OBJECT_TOKEN}})();function validateCookieName(name){if(name.match(/ ,;/)){throw"Illegal name provided, must be valid in browser cookie."}}})(); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (typeof bbccookies_flag === 'undefined') { bbccookies_flag = 'ON'; } showCTA_flag = true; cta_enabled = (showCTA_flag && (bbccookies_flag === 'ON') ); (function(){var e="ckns_policy",m="Thu, 01 Jan 1970 00:00:00 GMT",k={ads:true,personalisation:true,performance:true,necessary:true};function f(p){if(f.cache[p]){return f.cache[p]}var o=p.split("/"),q=[""];do{q.unshift((o.join("/")||"/"));o.pop()}while(q[0]!=="/");f.cache[p]=q;return q}f.cache={};function a(p){if(a.cache[p]){return a.cache[p]}var q=p.split("."),o=[];while(q.length&&"|co.uk|com|".indexOf("|"+q.join(".")+"|")===-1){if(q.length){o.push(q.join("."))}q.shift()}f.cache[p]=o;return o}a.cache={};function i(o,t,p){var z=[""].concat(a(window.location.hostname)),w=f(window.location.pathname),y="",r,x;for(var s=0,v=z.length;s<v;s++){r=z[s];for(var q=0,u=w.length;q<u;q++){x=w[q];y=o+"="+t+";"+(r?"domain="+r+";":"")+(x?"path="+x+";":"")+(p?"expires="+p+";":"");bbccookies.set(y,true)}}}window.bbccookies={_setEverywhere:i,cookiesEnabled:function(){var o="ckns_testcookie"+Math.floor(Math.random()*100000);this.set(o+"=1");if(this.get().indexOf(o)>-1){g(o);return true}return false},set:function(o){return document.cookie=o},get:function(){return document.cookie},_setPolicy:function(o){return h.apply(this,arguments)},readPolicy:function(o){return b.apply(this,arguments)},_deletePolicy:function(){i(e,"",m)},isAllowed:function(){return true},_isConfirmed:function(){return c()!==null},_acceptsAll:function(){var o=b();return o&&!(j(o).indexOf("0")>-1)},_getCookieName:function(){return d.apply(this,arguments)},_showPrompt:function(){var o=(!this._isConfirmed()&&window.cta_enabled&&this.cookiesEnabled()&&!window.bbccookies_disable);return(window.orb&&window.orb.fig)?o&&(window.orb.fig("no")||window.orb.fig("ck")):o}};bbccookies._getPolicy=bbccookies.readPolicy;function d(p){var o=(""+p).match(/^([^=]+)(?==)/);return(o&&o.length?o[0]:"")}function j(o){return""+(o.ads?1:0)+(o.personalisation?1:0)+(o.performance?1:0)}function h(r){if(typeof r==="undefined"){r=k}if(typeof arguments[0]==="string"){var o=arguments[0],q=arguments[1];if(o==="necessary"){q=true}r=b();r[o]=q}else{if(typeof arguments[0]==="object"){r.necessary=true}}var p=new Date();p.setYear(p.getFullYear()+1);p=p.toUTCString();bbccookies.set(e+"="+j(r)+";domain=bbc.co.uk;path=/;expires="+p+";");bbccookies.set(e+"="+j(r)+";domain=bbc.com;path=/;expires="+p+";");return r}function l(o){if(o===null){return null}var p=o.split("");return{ads:!!+p[0],personalisation:!!+p[1],performance:!!+p[2],necessary:true}}function c(){var o=new RegExp("(?:^|; ?)"+e+"=(\\d\\d\\d)($|;)"),p=document.cookie.match(o);if(!p){return null}return p[1]}function b(o){var p=l(c());if(!p){p=k}if(o){return p[o]}else{return p}}function g(o){return document.cookie=o+"=;expires="+m+";"}function n(){var o='<script type="text/javascript" src="https://static.bbci.co.uk/frameworks/bbccookies/0.6.6/script/bbccookies.js"><\/script>';if(window.bbccookies_flag==="ON"&&!bbccookies._acceptsAll()&&!window.bbccookies_disable){document.write(o)}}n()})(); /*]]>*/</script><script type="text/javascript"> if (! window.gloader) { window.gloader = [ "glow", {map: "https://node1.bbcimg.co.uk/glow/glow/map.1.7.7.js"}]; } </script><script type="text/javascript" src="https://node1.bbcimg.co.uk/glow/gloader.0.1.6.js"></script><script type="text/javascript" src="/staticarchive/21f604032d29edfa0a166f89bd41c95004718ed2.js"></script><script type="text/javascript"> bbcRequireMap = {"jquery-1":"/staticarchive/6cabfa9be6f12b6fec5ddf61c2dca1dde868555e", "jquery-1.4":"/staticarchive/cce0a0919c693f9473535d6941613bad16a4b40f", "jquery-1.9":"/staticarchive/14a082a42c1074b40bedae2666d3204e142899f5", "swfobject-2":"/staticarchive/b02e05aa3b12cfe8510390c7eccecd0af315b0a6", "demi-1":"/staticarchive/a916559c328a465dafcc30056734651ac8fdbb4b", "gelui-1":"/staticarchive/0159feca9179b145c659298e302b55dc76dfa15d", "cssp!gelui-1/overlay":"/staticarchive/fee6b4a3b22c51a59dd3ddebfb1b765049c683f6.css", "istats-1":"/staticarchive/b2d7be33eb67fa4b938cfa94238f8af9e929e4ae", "relay-1":"/staticarchive/ab39b61cf0980994246594bebe70fe460df87a42", "clock-1":"/staticarchive/7b8bb05c3fa19067c2c4c99144d21702cc15704f", "canvas-clock-1":"/staticarchive/703fd8b8a1b4ecf9cf624195bfb9691c648d3919", "cssp!clock-1":"/staticarchive/85ca997ae2f6bd2990765422dcc5b1c386c9d0cb.css", "jssignals-1":"/staticarchive/238f1d675d1626860f85815b7ab638cd41811a06", "jcarousel-1":"/staticarchive/3b38690b91f14468826c5f05f6e3da9beb55f4b1", "bump-3":"//emp.bbci.co.uk/emp/bump-3/bump-3.js", "gelui-1/widget": "/staticarchive/fcf01fd866ac629bad5a92592c208c3b04184cd3", "gelui-1/carousel": "/staticarchive/562f83c33cfe04062d95de8024ba03636cd0af4c", "gelui-1/core": "/staticarchive/d69cc93987af4e17f910996164dc15516614353e", "gelui-1/overlay": "/staticarchive/84bd061f5e14f0728caa8c933fe6d758b54fec5a", "gelui-1/autosuggest": "/staticarchive/ca81d8400ee443b0c31a47f1eea1c6872091dd48"}; require({ baseUrl: 'https://'+location.host+'/', 'dynamicServer': 'https://id.bbc.co.uk', 'secureServer': 'https://id.bbc.co.uk', 'assetVersion': '3.27.2', 'assetPath': 'https://static.bbci.co.uk/modules/identity/statusbar/3.27.2/' }; </script><script type="text/javascript" src="/staticarchive/1333b9944bd6388f9645c37cab1e3a1d9ac83b90.js"></script><script type="text/javascript" src="/staticarchive/fbe86a6c073f48f146a72f3e858ac837debcd84a.js"></script><!-- ISTATS --><script type="text/javascript"> /* <![CDATA[ */ define('id-statusbar-config', { 'translation_signedout': "Sign in", 'translation_signedin': "Your account", 'use_overlay' : false, 'signin_url' : "https://ssl.bbc.co.uk/id/signin", 'locale' : "en-GB", 'policyname' : "", 'ptrt' : "https://www.bbc.co.uk/" }); /* ]]> */ </script><script type="text/javascript"> (function () { if (! window.require) { throw new Error('idcta: could not find require'); } var map = {}; map['idapp-1'] = 'https://static.bbci.co.uk/idapp/0.63.23/modules/idapp/idapp-1'; map['idcta/idcta-1'] = 'https://static.bbci.co.uk/id/0.23.4/modules/idcta/idcta-1'; require({paths: map}); define('id-config', {"idapp":{"version":"0.63.23","hostname":"ssl.bbc.co.uk","insecurehostname":"www.bbc.co.uk","tld":"bbc.co.uk"},"idtranslations":{"version":"0.29.1"},"identity":{"baseUrl":"https:\/\/talkback.live.bbc.co.uk\/identity"},"pathway":{"name":null,"staticAssetUrl":"http:\/\/static.bbci.co.uk\/idapp\/0.63.23\/modules\/idapp\/idapp-1\/View.css"}}); })(); </script><link rel="alternate" type="application/atom+xml" title="Atom" href="https://www.bbc.co.uk/blogs/walesmusic/atom.xml"><link rel="alternate" type="application/rss+xml" title="RSS" href="https://www.bbc.co.uk/blogs/walesmusic/rss.xml"><!-- Comments Module Static Assets --><link rel="stylesheet" rev="stylesheet" href="/staticarchive/b171f6295dafa594e000486294caf5ef2e356648.css"><script src="/staticarchive/9fded8c38030f7e4fa43d9cc9c0033b2315234ef.js" type="text/javascript"></script><!--[if lte IE 7]> <link rel="stylesheet" rev="stylesheet" href="https://static.bbci.co.uk/modules/comments/2.6.19/css/comments-ie6-7.css"/> <![endif]--><style type="text/css"> @import '/staticarchive/6e19cb98ed19c044c78020031b13199c99fa7633.css'; </style><!--[if lte IE 7]> <style type="text/css"> @import '/guidance/style/pg_external_ie.css?r895178'; </style> <![endif]--><!--[if IE 6]> <style type="text/css"> @import '/guidance/style/pg_external_ie6.css?r895178'; </style> <![endif]--><script type="text/javascript" src="https://www.bbc.co.uk/guidance/script/js/pg-gb.js?r1112733"></script><script type="text/javascript" src="/staticarchive/296b7e9b01b56142aec1bfa4760e2eb86073b802.js"></script><script type="text/javascript" src="/staticarchive/880927e055ea2d75cc32254b7274b0e4a04822c2.js"></script><link rel="stylesheet" href="/staticarchive/3c2b27e8596edca82a396f84e4c6a991b49acc9e.css" type="text/css"><link rel="stylesheet" href="/staticarchive/3f22e626d9c302da131c20df3cd9b6fe5bc59b92.css" type="text/css"><script type="text/javascript" src="https://www.bbc.co.uk/dnaimages/components/commentbox/gloader/commentbox.js"></script><script type="text/javascript" src="https://www.bbc.co.uk/glow/gloader.js"></script><script type="text/javascript"> gloader.load( ["glow", "1", "glow.net"], { async: true, onLoad: function(glow) { if (window.dna) { glow.ready(function(){ dna.lang.register(glow); }) } if (typeof identity !== 'undefined') { glow.events.addListener(identity,'login',function(){ window.location.reload(); }); } } } ); </script><style type="text/css"> #dna_commentbox_holder{display: block;} #dna_commentbox_holder_error{display: none;} </style><!-- DNA Comments --><link rel="stylesheet" media="screen" href="/staticarchive/8db1272f67d2a84959a2f118e59c89632f24e33f.css" type="text/css"><!-- /DNA Comments --><link rel="stylesheet" href="/staticarchive/b0b1cd1fc6a94a39ee22f82b09a738cf246ec8f1.css" type="text/css"><link rel="prev" href="https://www.bbc.co.uk/blogs/walesmusic/2012/02/" title="February 2012"><link rel="next" href="https://www.bbc.co.uk/blogs/walesmusic/2012/04/" title="April 2012"><!-- If Opt Out code --><!-- End If Opt Out code --><script type="text/javascript" src="/staticarchive/83f5bedfaaaae12a1220a872db0629fb6b14a507.js"></script></head><body class="grey blogs wales-music"> <script type="text/javascript">/*<![CDATA[*/ bbcFlagpoles_istats = 'ON'; istatsTrackingUrl = '//sa.bbc.co.uk/bbc/bbc/s?name=SET-COUNTER&app_type=web&ml_name=SSI&ml_version=0.23.0&language=en-GB'; /*]]>*/</script><script type="text/javascript" src="https://static.bbci.co.uk/archive_stats/modules/stats-1.0.0.js"></script> <div id="blq-container" class="blq-lang-en-GB blq-gvl-2-8 blq-id-identitystatusbar"> <div id="blq-pre-mast" lang="en-GB"> <!-- Pre mast --> </div> <script type="text/html" id="blq-bbccookies-tmpl"><![CDATA[ <div id="bbccookies-prompt" class="bbccookies-d"> <h2> Cookies on the BBC website </h2> <p> We use cookies to ensure that we give you the best experience on our website.<span class="bbccookies-international-message"> We also use cookies to ensure we show you advertising that is relevant to you.</span> If you continue without changing your settings, we'll assume that you are happy to receive all cookies on the BBC website. However, if you would like to, you can <a href="/privacy/cookies/managing/cookie-settings.html">change your cookie settings</a> at any time. </p> <ul> <li id="bbccookies-continue"> <button type="button" id="bbccookies-continue-button">Continue</button> </li> <li id="bbccookies-more"><a href="/privacy/cookies/bbc">Find out more</a></li></ul> </div> ]]></script><script type="text/javascript">/*<![CDATA[*/ (function(){if(bbccookies._showPrompt()){var i=document,b=i.getElementById("blq-pre-mast"),f=i.getElementById("blq-global"),h=i.getElementById("blq-container"),c=i.getElementById("blq-bbccookies-tmpl"),a,g,e;if(b&&i.createElement){a=i.createElement("div");a.id="bbccookies";e=c.innerHTML;e=e.replace("<"+"![CDATA[","").replace("]]"+">","");a.innerHTML=e;if(f){f.insertBefore(a,b)}else{h.insertBefore(a,b)}g=i.getElementById("bbccookies-continue-button");g.onclick=function(){a.parentNode.removeChild(a);return false};bbccookies._setPolicy()}}})(); /*]]>*/</script><span id="blq-mast-background"></span> <div id="blq-container-inner" lang="en-GB"> <div id="blq-acc" class="blq-rst"> <p id="blq-mast-home" class="blq-no-images"><a href="/" hreflang="en-GB"> <span id="blq-blocks-wrapper"> <span class="blq-home">British Broadcasting Corporation</span><img src="/staticarchive/2e00d1d53e9c3bd91993196aa19a1d88589969f0.png" alt="BBC" id="blq-blocks" width="84" height="24"><span class="blq-span">Home</span> </span> </a></p> <p class="blq-hide"><strong><a id="page-top">Accessibility links</a></strong></p> <ul id="blq-acc-links"><li><a href="#blq-content">Skip to content</a></li> <li><a href="#blq-local-nav">Skip to local navigation</a></li> <li><a href="#blq-nav-main">Skip to bbc.co.uk navigation</a></li> <li><a href="#blq-search">Skip to bbc.co.uk search</a></li> <li><a href="/accessibility/">Accessibility Help</a></li> </ul></div> <div id="blq-main" class="blq-clearfix"> <div id="archived-mothball-message" style=" background:url(/globalresources/mothball-images/bg.jpg) 0 0 repeat-x #fbfbfb; "> <a href="/globalresources/mothballing" style=" "> This page has been archived and is no longer updated. <span style=" display:block; font-size:0.5em; padding:10px 0 0 70px; font-weight:bold; "> <span style=" color:#1A75BB; margin-left:100px; ">Find out more about page archiving.</span> </span> </a> </div><div id="blq-content"> <div id="banner"><h1><a href="/wales/music" title="Wales Music "><img height="68" width="230" alt="" src="https://www.bbc.co.uk/wales/music/images/furniture/walesmusic-banner.jpg"></a></h1> <div class="rhsimg"><a href="/wales/" title="Wales Music "><img width="130" height="56" alt="BBC Cymru Wales" src="https://www.bbc.co.uk/wales/images_redesign/furniture/wales_block.gif"></a></div> <div style="clear:both;"></div><!-- local navigation --> <div id="local-navigation"><ul id="navigation-list"><li class="navigation-button-first"><a href="/wales/music/">Music home</a></li> <li class="navigation-button"><a href="/wales/music/sites/genres-artists/">Genres and artists</a></li> <li class="navigation-button"><a href="/wales/music/sites/festivals-events/">Festivals and events</a></li> <li class="navigation-button"><a href="/wales/music/sites/how-to/">How to...</a></li> <li class="navigation-button"><a href="/wales/music/sites/history/">History</a></li> <li class="navigation-button-last selected"><a href="/blogs/walesmusic/">Blog</a></li></ul></div><!-- end local navigation --> </div> <!--main content starts here--> <div id="content"> <div class="main content"> <!--contents starts here--> <div class="content-left"> <div class="navigation"><a href="https://www.bbc.co.uk/blogs/walesmusic/">» Main</a></div> <h1>Archives for <em>March 2012</em></h1> <div class="post" id="entry-305511"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-is-welsh-music-the-best-in-the-world.shtml" rel="bookmark">Radio Wales Music Day: Is Welsh music the best in the world?</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-is-welsh-music-the-best-in-the-world.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fradio-wales-music-day-is-welsh-music-the-best-in-the-world.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/" rel="tag" title="">Wales Music Day</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T15:09:27+00:00">15:09 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>The Radio Wales phone-in this morning brought together promoter John Rostron, musician Cheryl Beer and film-maker Dan Harris to debate the issue with presenter Jason Monhammad.</p> <p>Listen to the full debate here:</p> <script type="text/javascript"> gloader.load(["glow", "1"], { async: true, onLoad: function (glow) { glow.ready(function () { var emp = new embeddedMedia.Player(); emp.setWidth("512"); emp.setHeight("288"); emp.setDomId("emp30g"); emp.setPlaylist("https://"+location.host+"/iplayer/playlist/p00qn8f7"); emp.write(); }); } }); </script><div id="emp30g" class="player"> <p>In order to see this content you need to have both <a href="https://www.bbc.co.uk/webwise/askbruce/articles/browse/java_1.shtml" title="BBC Webwise article about enabling javascript">Javascript</a> enabled and <a href="https://www.bbc.co.uk/webwise/askbruce/articles/download/howdoidownloadflashplayer_1.shtml" title="BBC Webwise article about downloading">Flash</a> installed. Visit <a href="https://www.bbc.co.uk/webwise/">BBC Webwise</a> for full instructions</p> </div> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305549"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/musical-theatre.shtml" rel="bookmark">I want a smoke machine, a wind machine and a pair of ruby slippers...</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/musical-theatre.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fmusical-theatre.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/bbc-national-orchestra-of-wale/" rel="tag" title="">BBC National Orchestra of Wales</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/"> <img class="author_pic" src="/staticarchive/d1957b60a13c8a66ea5041c258fc1a2fd76434b3.png" width="50" alt="Laura Sinnerton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/">Laura Sinnerton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T15:04:00+00:00">15:04 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>When I was young I loved music theatre. Mother bought me a monthly publication called The Magic Of The Musicals and I would eagerly await its arrival. I would put the CD on, read the synopsis of the plot, carefully slip the sleeve notes out of the CD cover and listen again whilst following the lyrics.</p> <p>Then I would listen again whilst singing along. My poor parents - there I would be, headphones on, belting out some number from Cats - and everyone knows singing with headphones on often has interesting consequences for one's intonation, so it probably sounded like the said Cats were being strangled!</p> <p>When I saw a call for auditions for a children's choir to appear in a production of Joseph and The Amazing Technicolour Dreamcoat at Belfast's Lyric Theatre, I pestered my mother until I was allowed to audition. There followed for her an entire summer season of driving up and down the motorway, waiting at rehearsal halls and outside the theatre. I was having a ball, loving being on stage and bouncing around like a lunatic. I even still remember the vocal warmups we learnt as the vocal coach attempted to persuade some annunciation into our broad Northern Ireland accents.</p> <p>I think in the classical world we sometimes have a tendency to look down on the world of musical theatre, as though our genre were the only legitimate form of music making. In other words, I think we can be a bit snobby at times. To do this is to ignore, or discount the very real connection that songs from the shows make with their audience; I'm pretty sure a greater proportion of the general population could sing with great love and affection a few strains of Climb Every Mountain from The Sound Of Music, than could recognise Haydn's 'Joke' Quartet.</p> <p>Songs from the shows take us back to a more innocent time and allow us to suspend reality for a little while. The recent resurgence of the musical (take Hairspray, Legally Blonde and, of course, Wicked, for example) would suggest that this is still a relevant medium for our times.</p> <p>On Friday and Saturday, we are joined by welsh singer Sophie Evans in a concert of tunes from the shows and, to the great excitement of a number of colleagues, Disney tunes. Many of you will remember Sophie as the runner up in the TV reality show Somewhere Over The Rainbow, and indeed, she has recently taken over the role of Dorothy full time in London's West End.</p> <p>This is a great fun concert for the whole family, though Sophie should watch her back. I want to sing! My section have been indulging my fantasy this week and it has now grown to monstrous proportions that involve me being lifted on wires from my seat in the viola section as I sing Somewhere Over The Rainbow, before being gently and elegantly lowered into a pair of ruby slippers!</p> <p><em>The BBC National Orchestra of Wales performs music by Bernstein, Coates, Strauss and songs from The Sound of Music and The Wizard of Oz and many more tonight, Friday 30 March at 7pm, at Theatr Brycheiniog, Brecon and tomorrow, Saturday 31 March, 7pm at St David's Hall, Cardiff. Tickets are available from the venues - Theatr Brycheiniog 01874 611622/St David's Hall 02920 878444.The concert will be recorded for future broadcast on BBC Radio Wales.</em></p> </div> </div> <div class="post" id="entry-305508"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-cuba-cuba-live-video.shtml" rel="bookmark">Radio Wales Music Day: Cuba Cuba live </a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-cuba-cuba-live-video.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fradio-wales-music-day-cuba-cuba-live-video.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/" rel="tag" title="">Wales Music Day</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T14:44:15+00:00">14:44 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Cuba Cuba perform their song 50 A Night live on the Jamie and Louise show, kicking off Radio Wales Music Day 2012 on 30 March.</p> <iframe width="512" height="288" src="https://www.youtube.com/embed/KCjB8kBA9Jk" frameborder="0" allowfullscreen></iframe> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305507"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/joy-formidable-tour-diary-day-four.shtml" rel="bookmark">Joy Formidable tour diary - day four</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/joy-formidable-tour-diary-day-four.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjoy-formidable-tour-diary-day-four.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/"> <img class="author_pic" src="/staticarchive/3bde69c6c515d965a6ce9d0da7125103634ad6b8.png" width="50" alt="Adam Walton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/">Adam Walton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T14:32:39+00:00">14:32 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Today has been - against my best intentions - probably a de facto touring band experience... i.e. calling into a city (Philadelphia) but not having the energy, or time (despite having little better to do than sit down and watch Full Metal Jousting on TV [seriously!], to go and check the city itself out.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="The Joy Formidable" src="/staticarchive/fe442bd3af8eab7561c451b726c9a046309b73c8.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">The Joy Formidable </p></div> <p>To be fair, due to situations outlined in the last blog, I only had an hour - two, at a push - sleep. Fuzzy, fuzzy, fuzzy. For the majority of the day I have felt like I was trying to traverse the deck of a ship in a wild storm. And I wasn't even hungover.</p> <p>Well, not much.</p> <p><a href="/wales/music/sites/joy-formidable/">The Joy Formidable</a> are up against a deadline with their second album. All of the parts are recorded, but as is the case with the modern recording process, there is much to be comped, trimmed, edited and binned before they can begin the all important mixing process.</p> <p>And much of this happens on the tour bus. Serious aside, this band work hard. They're doing nine - maybe 10 - dates in a row. That with the all-encompassing focus on the album has left them running on fumes. As with all great bands, they save the fuel that is left for the show. So, planned interviews have to be postponed. I understand. The last thing I'd want in their situation is me asking probing, red-faced questions. We'll save that joy and delight for tomorrow. I love tomorrow. It's my favourite day for getting stuff done.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="The Joy Formidable" src="/staticarchive/d416fc8103f5fd8ed65a70bc1b680b2767d6f911.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">The Joy Formidable </p></div> <p>So, to the show: the soundcheck is a little more protracted - nothing is for certain, or predictable, in the technology behind rock 'n' roll. Still, the techs and engineers work until things are as right as they can be, even if this means postponing things like band promo and meet 'n' greets. By the time everything has been tweaked, even in the empty, church-like confines of the Union Transfer, the band sound incredible. I keep saying that, keep using words of that magnitude, but it's true.</p> <p>Ah, the meet 'n' greet. Did I mention the meet 'n' greet yesterday? This is a phenomenon I've not experienced before. Understandably... not many would line up to get a photo taken and press flesh with me! But it's become an increasingly important part of the US touring band's responsibilities. I think - in general - that UK bands are a little too cynical or self-regarding to schmooze in this way. That The Joy Formidable manage to leave the 40, or so, fans who've turned up to meet them with smiles on their faces is no mean feat considering they all want to pass out on their feet./p&gt; </p><div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="The Joy Formidable" src="/staticarchive/0d1cb945aaa67fb178a1a905bec59379c7739d1e.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">The Joy Formidable </p></div> <p>I ask a couple of the attendees why they're here:</p> <p>"They're a great band. There's something different about them. I can't explain it."</p> <p>Do you know where they're from?</p> <p>"Wales, right?"</p> <p>Yes, right. Right, right, <em>right</em>!</p> <p>Everyone on the tour bus, bar tour manager Andy and me, goes to catch a few Zs before the show starts. It's no wonder they're knackered. I've started hallucinating, and I've only been living this life for a couple of days.</p> <p>I wonder how the lack of energy will affect the show. This band don't just stand there looking disinterested, exerting all of the effort of a moth at midday. They give it their all.</p> <p>The band who erupt on stage - spurting hot plumes of sound into the Philadelphia night - are unrecognisable from the B-movie zombies who've shambled around wordlessly for most of the day. They sound even better than they did in New York. Perhaps it's because they're having to fight themselves a little. They beat themselves to fantastic effect.</p> <p>The set is perfectly structured, consumately plotted like one of Chekov's short stories. It has a real beginning, middle and end. I've never seen fewer people drift off partway through the set to go to the bar. It's fair to say that Philadelphia is riveted.</p> <p>From A Heavy Abacus through to an epic, destructive, Whirring, that ends with Rhydian violating a massive gong releasing all the pent up frustrations and tirednesses of the day in a few hammering blows, it's another phenomenal show.</p> <p>I'm not using that word lightly.</p> <p>Every aspect is designed to blow minds and give the audience an ultimate experience: the sound is thunderous but clear and pristine; the light-show is the best I've ever seen in a venue this size; the set - complete with lighthouse, nets and lobster traps (I think!) - mysteriously nautical. None of these things come cheaply, but they improve the wow factor exponentially.</p> <p>But at the heart of this show's success is the band and their songs. Strip away all of the theatre and I'd still be mindblown. I understand the lineage of much of what I hear, but tracing The Joy Formidable is a much more difficult task. They breathe new colours into a pensionable palette. A few of their songs nudge you off kilter with strange time signatures - and unpredictable changes - but none of that is arty farty. The Joy Formidable's leftfield still neighbours great, great tunes. We've mentioned those great, great tunes already, haven't we?</p> <p>We haven't really mentioned Ritzy, though. The well worn cliche is that a great performer has the audience eating out of their hand; well, Ritzy could have them eating off a cowshed floor. She is imperious and impish as a performer. One of the reasons the Americans love the Joy Formidable is because they're not too up themselves to put on a show, to invite the audience along for the ride. Songs die and then leap back into life like heroes. It'd take a cynical heart to not be swept up in such drama.</p> <p>Ritzy wheels around the stage - part psychotic marionette, part Siren, part sweary Welsh woman from Mold. She is remarkable. I do hope that word is italicised. Just as I hope Ritzy, and this great band, get idolised the way they deserve to be.</p> <p>All fuzziness has been blown out of my system. I even manage a good night's sleep on the tourbus. Wife and daughter aside, I wish I wasn't going home in a couple of days time. This has been incredible.</p> <p>On to Boston....</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>. </p></div> </div> <div class="post" id="entry-305501"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-greta-isaac-live.shtml" rel="bookmark">Radio Wales Music Day: Greta Isaac live </a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-greta-isaac-live.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fradio-wales-music-day-greta-isaac-live.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/" rel="tag" title="">Wales Music Day</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T14:01:37+00:00">14:01 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Greta Isaac performs her song Don't Go live on the Jamie and Louise show, kicking off Radio Wales Music Day 2012 on 30 March.</p> <iframe width="512" height="288" src="https://www.youtube.com/embed/opkT--6YSPY" frameborder="0" allowfullscreen></iframe> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305500"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-greta-isaac-in-conversation.shtml" rel="bookmark">Radio Wales Music Day: Greta Isaac in conversation</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-greta-isaac-in-conversation.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fradio-wales-music-day-greta-isaac-in-conversation.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/" rel="tag" title="">Wales Music Day</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T13:52:25+00:00">13:52 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Singer-songwriter <a href="https://www.myspace.com/gretaisaacmusic/">Greta Isaac</a> joined Jamie and Louise this morning for BBC Radio Wales Music Day. Just 16 years old, she talks about learning guitar in a year and balancing music and school.</p> <p>Listen to Greta chat with the Radio Wales presenters:</p> <script type="text/javascript"> gloader.load(["glow", "1"], { async: true, onLoad: function (glow) { glow.ready(function () { var emp = new embeddedMedia.Player(); emp.setWidth("512"); emp.setHeight("288"); emp.setDomId("emp30f"); emp.setPlaylist("https://"+location.host+"/iplayer/playlist/p00qn1yn"); emp.write(); }); } }); </script><div id="emp30f" class="player"> <p>In order to see this content you need to have both <a href="https://www.bbc.co.uk/webwise/askbruce/articles/browse/java_1.shtml" title="BBC Webwise article about enabling javascript">Javascript</a> enabled and <a href="https://www.bbc.co.uk/webwise/askbruce/articles/download/howdoidownloadflashplayer_1.shtml" title="BBC Webwise article about downloading">Flash</a> installed. Visit <a href="https://www.bbc.co.uk/webwise/">BBC Webwise</a> for full instructions</p> </div> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305496"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-georgia-ruth-live.shtml" rel="bookmark">Radio Wales Music Day: Georgia Ruth live </a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-georgia-ruth-live.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fradio-wales-music-day-georgia-ruth-live.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/" rel="tag" title="">Wales Music Day</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T13:01:11+00:00">13:01 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Georgia Ruth performs her song Mapping live on the Jamie and Louise show, kicking off Radio Wales Music Day 2012 on 30 March.</p> <iframe width="512" height="288" src="https://www.youtube.com/embed/LvQZ1eOys0I" frameborder="0" allowfullscreen></iframe> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305488"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-the-dirty-youth-korn.shtml" rel="bookmark">Radio Wales Music Day: The Dirty Youth talk Korn </a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-the-dirty-youth-korn.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fradio-wales-music-day-the-dirty-youth-korn.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/" rel="tag" title="">Wales Music Day</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T11:41:53+00:00">11:41 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p><a href="https://www.thedirtyyouth.co.uk/">The Dirty Youth</a> joined Jamie and Louise this morning for BBC Radio Wales Music Day, talking all about their time touring with American superstars Korn.</p> <p>Listen to Danni Monroe and Matt Bond's chat with the Radio Wales presenters:</p> <script type="text/javascript"> gloader.load(["glow", "1"], { async: true, onLoad: function (glow) { glow.ready(function () { var emp = new embeddedMedia.Player(); emp.setWidth("512"); emp.setHeight("288"); emp.setDomId("emp30e"); emp.setPlaylist("https://"+location.host+"/iplayer/playlist/p00qmvhs"); emp.write(); }); } }); </script><div id="emp30e" class="player"> <p>In order to see this content you need to have both <a href="https://www.bbc.co.uk/webwise/askbruce/articles/browse/java_1.shtml" title="BBC Webwise article about enabling javascript">Javascript</a> enabled and <a href="https://www.bbc.co.uk/webwise/askbruce/articles/download/howdoidownloadflashplayer_1.shtml" title="BBC Webwise article about downloading">Flash</a> installed. Visit <a href="https://www.bbc.co.uk/webwise/">BBC Webwise</a> for full instructions</p> </div> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305485"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-the-boy-royals-live-video.shtml" rel="bookmark">Radio Wales Music Day: The Boy Royals live </a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-the-boy-royals-live-video.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fradio-wales-music-day-the-boy-royals-live-video.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/" rel="tag" title="">Wales Music Day</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T11:07:48+00:00">11:07 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>The Boy Royals (formerly Town) perform their song Voice Of The Future live on the Jamie and Louise show, kicking off Radio Wales Music Day 2012 on 30 March.</p> <iframe width="512" height="288" src="https://www.youtube.com/embed/hxl4VuSCl3U" frameborder="0" allowfullscreen></iframe> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305484"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-joshua-caole-in-conversation.shtml" rel="bookmark">Radio Wales Music Day: Joshua Caole in conversation</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-joshua-caole-in-conversation.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fradio-wales-music-day-joshua-caole-in-conversation.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T10:56:29+00:00">10:56 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Singer-songwriter <a href="https://www.facebook.com/joshuacaoleuk">Joshua Caole</a> joined Jamie and Louise this morning for BBC Radio Wales Music Day.</p> <p>Listen to his chat with the Radio Wales presenters here:</p> <script type="text/javascript"> gloader.load(["glow", "1"], { async: true, onLoad: function (glow) { glow.ready(function () { var emp = new embeddedMedia.Player(); emp.setWidth("512"); emp.setHeight("288"); emp.setDomId("emp30d"); emp.setPlaylist("https://"+location.host+"/iplayer/playlist/p00qmsb8"); emp.write(); }); } }); </script><div id="emp30d" class="player"> <p>In order to see this content you need to have both <a href="https://www.bbc.co.uk/webwise/askbruce/articles/browse/java_1.shtml" title="BBC Webwise article about enabling javascript">Javascript</a> enabled and <a href="https://www.bbc.co.uk/webwise/askbruce/articles/download/howdoidownloadflashplayer_1.shtml" title="BBC Webwise article about downloading">Flash</a> installed. Visit <a href="https://www.bbc.co.uk/webwise/">BBC Webwise</a> for full instructions</p> </div> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305483"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-georgia-ruth-in-conversation.shtml" rel="bookmark">Radio Wales Music Day: Georgia Ruth in conversation</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-georgia-ruth-in-conversation.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fradio-wales-music-day-georgia-ruth-in-conversation.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/" rel="tag" title="">Wales Music Day</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T10:13:26+00:00">10:13 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p><a href="https://soundcloud.com/georgiaruth">Georgia Ruth</a> joined Jamie and Louise this morning for BBC Radio Wales Music Day.</p> <p>Listen to her chat with the Radio Wales presenters:</p> <script type="text/javascript"> gloader.load(["glow", "1"], { async: true, onLoad: function (glow) { glow.ready(function () { var emp = new embeddedMedia.Player(); emp.setWidth("512"); emp.setHeight("288"); emp.setDomId("emp30c"); emp.setPlaylist("https://"+location.host+"/iplayer/playlist/p00qmrkw"); emp.write(); }); } }); </script><div id="emp30c" class="player"> <p>In order to see this content you need to have both <a href="https://www.bbc.co.uk/webwise/askbruce/articles/browse/java_1.shtml" title="BBC Webwise article about enabling javascript">Javascript</a> enabled and <a href="https://www.bbc.co.uk/webwise/askbruce/articles/download/howdoidownloadflashplayer_1.shtml" title="BBC Webwise article about downloading">Flash</a> installed. Visit <a href="https://www.bbc.co.uk/webwise/">BBC Webwise</a> for full instructions</p> </div> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305479"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-the-boy-royals-in-conversation.shtml" rel="bookmark">Radio Wales Music Day: The Boy Royals in conversation</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/radio-wales-music-day-the-boy-royals-in-conversation.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fradio-wales-music-day-the-boy-royals-in-conversation.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/" rel="tag" title="">Wales Music Day</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T09:16:14+00:00">09:16 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Alex and Hamish of <a href="https://www.theboyroyals.com/">The Boy Royals</a> joined Jamie and Louise this morning for BBC Radio Wales Music Day.</p> <p>Listen to their chat with the Radio Wales presenters, covering name-changing, support from radio legends and local heroes:</p> <script type="text/javascript"> gloader.load(["glow", "1"], { async: true, onLoad: function (glow) { glow.ready(function () { var emp = new embeddedMedia.Player(); emp.setWidth("512"); emp.setHeight("288"); emp.setDomId("emp30b"); emp.setPlaylist("https://"+location.host+"/iplayer/playlist/p00qmpv7"); emp.write(); }); } }); </script><div id="emp30b" class="player"> <p>In order to see this content you need to have both <a href="https://www.bbc.co.uk/webwise/askbruce/articles/browse/java_1.shtml" title="BBC Webwise article about enabling javascript">Javascript</a> enabled and <a href="https://www.bbc.co.uk/webwise/askbruce/articles/download/howdoidownloadflashplayer_1.shtml" title="BBC Webwise article about downloading">Flash</a> installed. Visit <a href="https://www.bbc.co.uk/webwise/">BBC Webwise</a> for full instructions</p> </div> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305477"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/bbc-radio-wales-music-day-tight-times-for-musicians.shtml" rel="bookmark">Radio Wales Music Day: Tight times for musicians?</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/bbc-radio-wales-music-day-tight-times-for-musicians.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fbbc-radio-wales-music-day-tight-times-for-musicians.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/" rel="tag" title="">Wales Music Day</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T09:03:23+00:00">09:03 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>As part of BBC Radio Wales Music Day, musicians and composers explain how they have been coping with tight economic times and a cut in royalty payments:</p> <script type="text/javascript"> gloader.load(["glow", "1"], { async: true, onLoad: function (glow) { glow.ready(function () { var emp = new embeddedMedia.Player(); emp.setWidth("446"); emp.setHeight("106"); emp.setDomId("emp30a"); emp.setPlaylist("https://"+location.host+"/news/uk-wales-17552609A/playlist.sxml"); emp.write(); }); } }); </script><div id="emp30a" class="player"> <p>In order to see this content you need to have both <a href="https://www.bbc.co.uk/webwise/askbruce/articles/browse/java_1.shtml" title="BBC Webwise article about enabling javascript">Javascript</a> enabled and <a href="https://www.bbc.co.uk/webwise/askbruce/articles/download/howdoidownloadflashplayer_1.shtml" title="BBC Webwise article about downloading">Flash</a> installed. Visit <a href="https://www.bbc.co.uk/webwise/">BBC Webwise</a> for full instructions</p> </div> <p>Among the speakers are musician <a href="https://www.gaitoms.com/">Gai Toms</a> and Lisa Matthews from the <a href="https://www.welshmusicfoundation.com/">Welsh Music Foundation</a>. </p><p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305475"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/its-radio-wales-music-day.shtml" rel="bookmark">It's Radio Wales Music Day!</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/its-radio-wales-music-day.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fits-radio-wales-music-day.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/" rel="tag" title="">Wales Music Day</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T07:23:19+00:00">07:23 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Today we embark on the third annual <a href="/blogs/walesmusic/2012/03/getting-ready-for-wales-music-day-2012.shtml">Radio Wales Music Day</a>.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="Georgia Ruth" src="/staticarchive/b298365fa889e3ba70c71f96240d414d8267fb89.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">Georgia Ruth </p></div> <p>From 9am right through to the late evening, Radio Wales are talking to some of Wales' movers and shakers, playing live sessions from some of the country's great new acts, and spinning some Welsh classics.</p> <p><strong><a href="https://www.bbc.co.uk/iplayer/radio/bbc_radio_wales/listenlive">Listen live to BBC Radio Wales</a></strong></p> <p>From different venues across Wales, the shows will be getting to the nub of current issues and celebrating Wales' talent, and as ever, we want you to be part of it.</p> <p>You can comment on today's blogs, or engage via Twitter. Make sure you follow us at <a href="https://www.twitter.com/bbcwalesmusic">@bbcwalesmusic</a> and BBC Radio Wales at <a href="https://www.twitter.com/bbcradiowales">@bbcradiowales</a>. Use the hashtag #rwmd too!</p> <p>Keep checking back on the BBC Wales Music Blog as we add highlights of the day.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305476"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/joy-formidable-tour-diary-day-three.shtml" rel="bookmark">Joy Formidable tour diary - day three</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/joy-formidable-tour-diary-day-three.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjoy-formidable-tour-diary-day-three.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/"> <img class="author_pic" src="/staticarchive/3bde69c6c515d965a6ce9d0da7125103634ad6b8.png" width="50" alt="Adam Walton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/">Adam Walton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-30T07:00:00+00:00">07:00 UK time, Friday, 30 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Today was my last day in New York, so I tumbled into it sadly. Today would also be my first day sleeping on the tour bus, so I crawled into it with a certain amount of terror. I'm a man who likes his personal space. And a bathroom. A tour bus has neither.</p> <p>My hosts, <a href="/wales/music/sites/joy-formidable/">The Joy Formidable</a>, are finishing off their second album from the confines of the tour bus. They're due to start mixing it in a couple of weeks time - but there's a lot of housework that needs to be done on the reams that they've recorded before they start that task: favourite takes to be identified and 'topped and tailed', superfluous bits and pieces dumped so that they don't confuse the issue, that kind of thing.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="The Joy Formidable on stage" src="/staticarchive/a3e97b62e724afbd4c63f6841b950bdc2e3b2ec4.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">The Joy Formidable on stage </p></div> <p>What this means is that the band are incredibly busy during the day. So, an afternoon we'd scheduled to begin our session of interviews with each other gets postponed. That's no problem, I get to wander New York, picking up some cheap Levis and a gargantuan pizza.</p> <p>Tonight's gig is at Terminal 5. It's an excellent mid-size venue; probably holds in the region of a couple of thousand people. <a href="/programmes/b0081dq5">Huw Stephens</a> came here the day he got engaged, I learn later that day.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="The Joy Formidable crowd" src="/staticarchive/d1c3f155940a4b39d0de8b713592fe0b8ef61b45.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">The Joy Formidable crowd </p></div> <p>My engagement is with a camcorder. My official task for the band is to film them for their tour DVD. I haven't filmed anything, ever. They seem to think that this will give my footage an original angle. If original is a euphemism for 'unusable' and 'out of focus', I'd tend to agree with them.</p> <p>So, I spend a couple of hours fighting with a Panasonic manual and a camera that seems to be the size of my little finger. It's somewhat intimidating. Everyone else on this tour is so, so professional I feel compelled to raise my game. But there is only so high game can realistically be raised.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="Ritzy of The Joy Formidable" src="/staticarchive/30b9b65e00c7e8601a8e4839a83d904c2abde2db.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">Ritzy of The Joy Formidable </p></div> <p>The band do a meet and greet with part of their audience. Apparently you pay a little extra on the price of your ticket for this. The fans - and the band, who are good natured and affable - really enjoy this. It forges a stronger connection between them and the people who pay to come and see them: no bad thing, at all.</p> <p>I wish someone had arranged a meet and greet with this flipping camcorder before the day I'm destined to use it for the first time. I'm quite high maintenance, you may have noticed.</p> <p>Sound gets checked; meals get eaten (but not by me, still wrestling the Panasonic!); then the doors open and people - lots of people - begin to file in.</p> <p>I'm aware that The Joy Formidable aren't the first Welsh band to tour the States - that a good few have come before them and entertained audiences in the thousands, but the size and fervour of Joy Formidable's audience is impressive. They've played 120+ shows in 60+ cities in the States in the last two years. That's some serious legwork, and it's paying off. A band who can pull near two thousand people in their own right in New York, who rarely get in the local papers at home... </p> <p>Their set is an avalanche of awesome. I'm allowed to use that word, in that context, while I'm in the States. Consider it my first Joss Stone-ism, bless her. I'm drawn up in the undertow of sound, it's a thrilling set: massive tunes, but with a real leftfield sensibility, strange washes of shoegaze ambience infiltrate the songs and make them sound stranger, more intriguing than if they were bare bones.</p> <p>Some of the details are lost to me because I'm fighting the camcorder. And the venue's security. You have to pay a sizeable fee if you want to license footage shot in this venue for official use. Hilarious, in retrospect, if they'd seen any of the shaky handed, fuzzy as hell footage I shot. But I got some good photos, I think.</p> <p>The band play a few new songs - including something very different, very excellent, and very acoustic in the encore. It's a fascinating glimpse of what they've been up to on the back of the bus.</p> <p>Ah, the bus... my first night on the bus didn't go so well. I ended up in the 'junk bunk' minus a 'comforter'. There was mental-ness going on in the front that may scar me for eternity... actually, it was all good natured valve releasing, and much-deserved, when you consider how hard these people work. Ritzy and Rhydian retire to the back of the bus - despite it being Rhydian's birthday - to get themselves ready for another day of hard, album preparation. That's dedication for you. It's what you need, so they say. And Joy Formidable have it, in abundance.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305384"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/i-might-have-conquered-prokofiev.shtml" rel="bookmark">I might have conquered Prokofiev! </a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/i-might-have-conquered-prokofiev.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fi-might-have-conquered-prokofiev.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/bbc-national-orchestra-of-wale/" rel="tag" title="">BBC National Orchestra of Wales</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/"> <img class="author_pic" src="/staticarchive/d1957b60a13c8a66ea5041c258fc1a2fd76434b3.png" width="50" alt="Laura Sinnerton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/">Laura Sinnerton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-29T16:00:00+00:00">16:00 UK time, Thursday, 29 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Sunday dawned another beautiful day. The concert venue (Venue Cymru Theatre) was within walking distance of our cottage, so we could take full advantage of the glorious morning (Gwen even went for a second run along the sea front).</p> <p>I was secretly dreading this concert. The venue has a very, very dry acoustic and to make the Prokofiev and Haydn in particular sound in any way beautiful, you have to work ever so hard.</p> <p>Rehearsal was really only for topping and tailing, and after enjoying my prawn and edamame bean salad, I got ready quite early to have a good, long warm up.</p> <p>I thought Vilde's Tchaikovsky was especially good in this concert. The audience obviously agreed, breaking into spontaneous applause after her blistering first movement (sod all convention, I felt like clapping after the first movement).</p> <p>I really quite enjoyed the Prokofiev, but I wish there had been one more concert in which to play it. I think there are some pieces that are always like that - it becomes more comfortable, and consequently, more enjoyable every time you play it.</p> <p>I enjoyed the pairing of the Prokofiev with Haydn's London Symphony, even if it did mean that the second half of the concert felt like an absolute marathon. However, I think it really demonstrated just how well constructed the Prokofiev's Classical Symphony is and I am a bit of a closet Haydn fan.</p> <p>Alas, the final bars of Haydn did not signal the end of this Spring North Wales tour for the majority of the Orchestra. After a dinner break (in which Andy, Mark and their team had to pack up the Theatre and move everything to the Arena for the next rehearsal), we were into a technical rehearsal for two education concerts in Llandudno on Monday with conductor, Grant Llewellyn and animateur/facilitator/genius, Andy Pidcock.</p> <p>On Monday, we played to over 1500 schoolchildren from both special education units and main stream education schools. The sight of associate leader, Nick Whiting, dressed as Nicolette the Hungarian Gypsy fiddler is an image that may be ingrained in my memory for a long while yet to come!</p> <p>With that, we were off on the long journey home. The next few months hold some very exciting projects and repertoire for the Orchestra. The beginning of April will see the return of Associate Guest Conductor, the irrepressible François Xavier Roth for a programme that will bring the wind and strings individually into the limelight, as well as featuring young British pianist, Benjamin Grosvenor. Then, after a highly anticipated week of annual leave, we will be joined by Lisa Milne for Mahler's Fourth Symphony (I am already very excited). However, first, later this week, we have our Family Favourites concert to look forward to, featuring which promises to be an all singing, all dancing affair. And that's just in the Second Violins.</p> </div> </div> <div class="post" id="entry-305418"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/sonisphere-cancelled-blackout-skindred.shtml" rel="bookmark">Sonisphere cancelled</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/sonisphere-cancelled-blackout-skindred.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fsonisphere-cancelled-blackout-skindred.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/live/" rel="tag" title="">Live</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-29T09:05:45+00:00">09:05 UK time, Thursday, 29 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Hertfordshire rock festival <a href="https://sonisphere.co.uk/">Sonisphere</a> has been cancelled, organisers have confirmed this morning.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="Skindred" src="/staticarchive/9a2244bf501980afc6276b583874c573d8fd6845.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">Skindred </p></div> <p>The Knebworth event was meant to have taken place on 6-8 July, featuring Welsh bands <a href="/wales/music/sites/blackout/">The Blackout</a> and <a href="/wales/music/sites/skindred/">Skindred</a> alongside the likes of Kiss, Faith No More and Queen.</p> <p>It was the Queen website which yesterday fuelled rumours of the featival's demise, with a message posted: "It is with very heavy hearts and much regret that we announce the cancellation of Sonisphere Knebworth 2012".</p> <p>As 'Sonisphere' began trending worldwide on Twitter, the message was swiftly withdrawn but today Sonisphere's own website carried this statement:</p> <p></p><blockquote><p>It is with very heavy hearts and much regret that we announce the cancellation of Sonisphere Knebworth 2012.</p> <p>Putting the festival together in what is proving to be a very challenging year was more difficult than we anticipated and we have spent the last few months fighting hard to keep Sonisphere in the calendar. Unfortunately circumstances have dictated that we would be unable to run the festival to a standard that both the artists and that Sonisphere's audience would rightly expect.</p> <p>We want to express our deepest regrets to the artists and to thank all the staff, suppliers and contractors who worked so hard with us to try and pull off what has proven to be an impossible task and we know how much they share in our disappointment. We also want to send a huge thanks to the Sonisphere fans who stuck by us and we are so sorry that we can't fulfil what we set out to do.</p> <p>Ticket holders will automatically receive a full refund direct from their ticket agents.</p> <p>Team Sonisphere.</p></blockquote> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305383"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/gourmet-dining-takeaway-more-like.shtml" rel="bookmark">Gourmet dining? Takeaway and eating in the car more like! </a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/gourmet-dining-takeaway-more-like.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fgourmet-dining-takeaway-more-like.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/bbc-national-orchestra-of-wale/" rel="tag" title="">BBC National Orchestra of Wales</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/"> <img class="author_pic" src="/staticarchive/d1957b60a13c8a66ea5041c258fc1a2fd76434b3.png" width="50" alt="Laura Sinnerton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/">Laura Sinnerton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-29T09:00:00+00:00">09:00 UK time, Thursday, 29 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>On Friday, we were off to the Pritchard-Jones Hall, Bangor for the turn of our Tchaikovsky/Bruch/Dvořák programme.</p> <p>Rehearsal was a bit stop/start, as these things sometimes have a tendency to be. For starters, there was a small issue with the heating, meaning that the hall was sweltering. I believe in looking on the bright side of life however, and perhaps it was good training for the climate on the prchestra's forthcoming China tour! Additionally, the hall had the most reverberant acoustic of the tour and it was necessary to spend quite some time rebalancing the sound of the orchestra.</p> <p>There is always such a good and responsive audience in Bangor. Sometimes, even if you're not happy about the angle at which you are facing your stand, or the height of your chair, or the amount of space you have to bow in, a good audience can help you forget these little niggles.</p> <p>I'm not entirely sure what I think of Tchaikovsky's Hamlet overture. It has some horribly tricky passage work which always occurs when the brass are all blaring forth (perhaps that is a mercy!), so it sometimes feels like you are working incredibly hard but with not a terrible amount of return. I do like the end of it though - it's quite reminiscent of the end of the Pathetique Symphony.</p> <p>Vilde's Bruch concerto was beautiful; it is lovely to hear a young soloist who isn't just a technical wizzkid, but plays with such soul. I genuinely would love someone to get in touch and let me know what her encore was! The Dvořák was a suitably rip-roaring affair and post-concert Tweets would suggest the audience really did love it!</p> <p>Next day in Wrexham's William Aston Hall, rehearsal was relatively short as we were repeating the previous night's programme and so, it was only necessary to fit the music to the much drier acoustic. There was a little bit of a lighting issue that halted proceedings briefly - a third of the orchestra were being blinded by some overhead lights, the horns were in relative darkness and a few members were being toasted by lights quite close to their heads. This was all dealt with quickly by stage manager, Andy, with his usual humour and efficiency.</p> <p>Rehearsal done, we headed back to the car park to enjoy that most glamourous of domestic tour activities - a packed dinner in the car. Claire had secured a parking space right by the exit, so we were confident of a swift get away post concert ( so would be in time to pick up a Chinese take away en route). Who said this life was all pretty dresses and post concert receptions!</p> <p>The concert ran smoothly. I still find Hamlet a little bit uncomfortable; it's not that it is difficult, it's just a little awkward in places. Vilde's Bruch was warmly received by the audience and with that it was time for a quick breath of fresh air and on to the Dvořák!</p> </div> </div> <div class="post" id="entry-305396"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/joy-formidable-tour-diary-day-two.shtml" rel="bookmark">Joy Formidable tour diary - day two</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/joy-formidable-tour-diary-day-two.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjoy-formidable-tour-diary-day-two.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/"> <img class="author_pic" src="/staticarchive/3bde69c6c515d965a6ce9d0da7125103634ad6b8.png" width="50" alt="Adam Walton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/">Adam Walton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-28T15:37:26+00:00">15:37 UK time, Wednesday, 28 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Day two started off with a breakfast that would kill an elephant at Carnegie Deli. That particular destination was recommended by Bern from MusicBox studios in Cardiff. He wasn't wrong, but my arteries and waistband would like to have a word with him.</p> <p>Today is the day that I get to meet <a href="/wales/music/sites/joy-formidable/">The Joy Formidable</a>. Of course, I've met them many times before - but this feels different. I'm working for them this time round. So I make sure I arrive early so as not to disappoint them.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="The Joy Formidable" src="/staticarchive/e40d4d8b527ae5f84425d0a4d3897814fda279b4.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">The Joy Formidable </p></div> <p>Unbeknownst to me, I arrive three hours early - having traipsed half way across the city. I don't do cabs, see: 1) They're expensive and 2) If I only have two days in New York, I'm going to see as much of it as is humanly possible.</p> <p>I walk from my hotel off Times Square most of the way down 8th Avenue. <em>This</em> is the New York I was expecting. Busy, vibrant, a little seedy in places (Gotham), grand (Madison Square Garden) and alive with a multitude of aromas I can't identify. It's a thrilling, exhausting and surreal traipse, but one of the best traipses I ever did have.</p> <p>I stand outside a slab of a building at the end of my journey and wait. And wait. And wait a bit more. The security aren't keen to let me in:</p> <p>"I'm here with The Joy Formidable. They're doing a session for YouTube."</p> <p>"Do you have a contact name?"</p> <p>"Er, no."</p> <p>"Then we can't let you in sir."</p> <p>I feel like a very old, very disappointing (from the band's point of view) groupie.</p> <p>So I stand outside in the sun. It's freezing but I manage to get sunburn.</p> <p>Long story cut short, the band eventually arrive. Seeing Ritzy, Rhydian and Matt over here is almost more than my brain can cope with. Fortunately, they're seasoned travellers and their calmness and professionalism - and friendliness - carry me through.</p> <p>They may only be a three-piece, but their tour retinue is sizeable. Seems like a massive family has descended on New York: an array of techs, tour managers, engineers... their dedication and expertise is clear the moment the band start to soundcheck. It sounds pristine and powerful: like being hit in the ears by one of the 'proper' limousines that sails down Broadway. (No hen nights in there, for sure.)</p> <p>They're due to do a live session for YouTube in front of millions at 5pm EST. The soundcheck is finicky, but it's understandable. And the band's attention to detail - making sure everything is right for them - is impressive and laudable. They're not throwing this together, not by any means.</p> <p>Soundcheck finished, there is some hanging round. And introduction (for me) to the type of humour I can expect on the tour bus from Matt (drummer) and his creative ways with a whiteboard and marker. Let's put it this way, it's unlikely that Google will adopt his design as their logo. More's the pity!</p> <p>The band don't seem nervous at all, considering what they're about to do. They fall into a routine of limbering vocal chords and playing fingers up. Pizza is ignored in case they end up vomiting on stage. So, I eat the pizza.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="The Joy Formidable on stage" src="/staticarchive/b701802ef6d38228e867163b1e54c582157f46c9.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">The Joy Formidable on stage </p></div> <p>And they're on stage. They begin with a sinuous and massive sounding The Greatest Light Is The Greatest Shade and it sounds phenomenal. A sizeable and appreciative audience of Google employees and staff from the band's US record label nod their heads, whoop and holler: "We love you Ritzy!"</p> <p>And, they do! Not bad for a lass from Rhydymwyn. I feel so, so proud. I can't explain it.</p> <p>I shan't describe every element of the set. We'll have plenty of time for such post-mortems over the next few nights. Suffice to say, the band are great and occasionally sweary.</p> <p>It strikes me how much this band are rated over here. I think it's a lot to do with their openness and desire to give people a "bloody good time". Ritzy doesn't use the word "bloody". She does like the odd, strategically-placed f-word!</p> <p>They come back for a Q&amp;A from the stage. I learn that Ritzy was an <em>au pair</em> in Washington. Not a very good one, by all accounts: "well, do I look bloody maternal?"... again, she doesn't use the word "bloody".</p> <p>They go gather themselves in the green room - it's a Google conference room and it has the longest table in it you have ever seen. Matt rides round it on a Google scooter. We're taken out for sushi in a fancy restaurant. I'm wearing walking boots and three day old jeans. It's the most amazing meal I've ever eaten.</p> <p>I get to bed with the band's songs echoing around my head and make a mental note that their success is as simple as that. No need to over intellectualise it. They write good tunes an increasing amount of Americans want to listen to. Worlds and oysters are queuing up at their feet.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305381"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/a-bad-pub-joke.shtml" rel="bookmark">So an Englishwoman, a Scotswoman, a Welshwoman and an Irishwoman... </a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/a-bad-pub-joke.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fa-bad-pub-joke.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/bbc-national-orchestra-of-wale/" rel="tag" title="">BBC National Orchestra of Wales</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/"> <img class="author_pic" src="/staticarchive/d1957b60a13c8a66ea5041c258fc1a2fd76434b3.png" width="50" alt="Laura Sinnerton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/">Laura Sinnerton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-28T10:46:03+00:00">10:46 UK time, Wednesday, 28 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>This last week, the orchestra have been on tour in North Wales. Our role as Wales' national orchestra means that we are committed to bringing music to mid and north Wales, not just Cardiff and its surrounding areas.</p> <p>With principal guest conductor, Jac van Steen, and soloist, Vilde Frang, we took two programmes on tour. Our programmes were two very different plays. The Tchaikovsky/Bruch/Dvořák programme, was quite heavy on the arms - a lot of red blooded, forte playing mixed with intense piano.</p> <p>The Schumann/Tchaikovsky/Prokofiev/Haydn programme, on the other hand, required a much more stylised manner of playing. Both have their challenges, there's a bit of passage work in each that could trip you up if you weren't entirely on the ball!</p> <p>As is now our tradition, my friends and I had booked a little cottage in Llandudno and so were driving rather than taking the orchestra coach. On Thursday morning, looking like the line up of a bad Englishwoman (Claire), Scotswoman (Amy), Welshwoman (Gwen), Irishwoman (Me) joke, we got the car packed and headed off.</p> <p>All was going swimmingly until we were about 10 minutes from the venue and hit a terrible traffic jam. We started to panic that the best laid plans regarding being in time for a wee cuppa before rehearsal were descending into being catastrophically late for rehearsal.</p> <p>After what felt like an age we were on our way again. The only other excitement was when the sat-nav took us a slightly funny route and we confronted the biggest incline to be seen outside of Alton Towers. Even Claire's tank of a car balked slightly at being forced up the hill as Amy, Gwen and I unhelpfully squealed in fear that we were going to roll backwards.</p> <p>After a car or coach journey, I always feel the need to have an extra long warm up. I hate that feeling when your fingers feel swollen and unresponsive, and your body feels cramped from having sat in a confined space for a prolonged period of time. As we were playing Prokofiev's Classical Symphony in the first programme, it felt doubly important to me to be well warmed up.</p> <p>Rehearsal started promptly and it was good to get a good play. I had been slightly concerned about this programme. The Prokofiev is brilliant, but a bit scary, and I had never played the Tchaikovsky concerto before - it has a few entries that could really catch you out. Thankfully, the Schumann was straight forward and I think I could almost play the Haydn in my sleep now!</p> <p>There was an enthusiastic audience for the concert and I felt that things went well (especially the Schumann). I felt that I could now relax more in the Prokofiev too. Tired, we began our long drive to Llandudno to check into our lovely little home for the next few days!</p> </div> </div> <div class="post" id="entry-305375"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/getting-ready-for-wales-music-day-2012.shtml" rel="bookmark">Getting ready for Radio Wales Music Day 2012</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/getting-ready-for-wales-music-day-2012.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fgetting-ready-for-wales-music-day-2012.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/" rel="tag" title="">Wales Music Day</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-28T09:21:05+00:00">09:21 UK time, Wednesday, 28 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p><a href="/wales/radiowales/">BBC Radio Wales</a> are gearing up for the third annual <a href="/wales/radiowales/sites/highlights/pages/radiowales_musicday_2012.shtml">Wales Music Day</a> this Friday (30 March).</p> <p>All day we here at BBC Wales Music will be keeping you abreast of the highlights and will be putting up some of the interviews to listen again.</p> <p>Radio Wales editor Steve Austins said: "BBC Radio Wales Music Day has rapidly established itself as a highlight in the musical calendar in Wales, and there's a real buzz surrounding this year's Music Day. We want to showcase Welsh music, across all genres, through the events we're organising and broadcasting."</p> <p><strong>Line-up for the day:</strong></p> <p><strong>9am</strong>: <a href="/wales/radiowales/sites/jamieandlouise/">Jamie and Louise</a><br> From the Barnabas Arts House in Newport, Jamie and Louise kick off Wales Music Day with The Boy Royals (formerly Town), playing and in conversation.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="Georgia Ruth" src="/staticarchive/b298365fa889e3ba70c71f96240d414d8267fb89.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">Georgia Ruth </p></div> <p>Joining them will be <a href="https://soundcloud.com/greta-isaac">Greta Isaac</a>, <a href="https://www.myspace.com/joshuacaole">Joshua Caole</a>, <a href="https://cubacubamusic.co.uk/">Cuba Cuba</a> and <a href="https://www.myspace.com/georgiaruthwilliams">Georgia Ruth</a>.</p> <p><strong>2pm</strong>: <a href="/wales/radiowales/sites/roynoble/">Roy Noble</a><br> From Theatr Brycheiniog in Brecon, Roy has a very special performance from <a href="/now/">BBC National Orchestra of Wales</a> and Rhondda's <a href="https://en.wikipedia.org/wiki/Sophie_Evans_%28performer%29">Sophie Evans</a>.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="Jodie Marie" src="/staticarchive/6516845147ca660248ebcc76051bf8a07fe5d2b0.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">Jodie Marie </p></div> <p>Also performing for Roy will be <a href="https://jodiemarie.co.uk/">Jodie Marie</a>, while <a href="/wales/radiowales/sites/celticheartbeat/">Frank Hennessy</a> will be in conversation.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="Cut Ribbons" src="/staticarchive/3bfeebf114d56801507274b33f7ef89066b8376e.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">Cut Ribbons </p></div> <p><strong>8pm</strong>: <a href="/wales/radiowales/sites/presenters/pages/amywadge.shtml">Amy Wadge</a><br> Coming from The Parrot in Carmarthen, Amy is joined by <a href="https://www.facebook.com/Cutribbons">Cut Ribbons</a>, <a href="https://trwbador.co.uk/">Trwbador</a> and <a href="https://www.thelastrepublic.co.uk/">The Last Republic</a>.</p> <p><strong>10pm</strong>: <a href="/wales/radiowales/sites/presenters/pages/chris_needs.shtml">Chris Needs</a><br> Wrapping up the day, Chris is in Maesteg Town Hall with <a href="https://www.onlymenaloud.com/">Only Men Aloud</a> and Lucie Jones.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305371"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/independent-music-awards-martyn-joseph.shtml" rel="bookmark">Global awards recognise their first ever Welsh artist</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/independent-music-awards-martyn-joseph.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Findependent-music-awards-martyn-joseph.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/artist/" rel="tag" title="">Artists</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-28T07:53:11+00:00">07:53 UK time, Wednesday, 28 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Penarth artist <a href="/wales/music/sites/martyn-joseph/">Martyn Joseph</a> has been nominated in the global <a href="https://www.independentmusicawards.com">Independent Music Awards</a> (IMAs), becoming the first Welsh person in the 11 years of the competition to be recognised.</p> <p><em><strong>Edit (12noon, Thursday 29 March):</strong> We are happy to correct this story. In 2009 the IMAs awarded the prize of <a href="https://www.independentmusicawards.com/ima/artist/various-artists-blodeugerdd-song-of-the-flowers-an-anthology-of-welsh-music-and-song/">Best World Album</a> to Various Artists - Blodeugerdd Song Of The Flowers: An Anthology Of Welsh Music And Song produced by Ceri Rhys Matthews.</em></p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="Martyn Joseph" src="/staticarchive/ec41d58ff6fda6e63ebf07d71a1018d4e25ed5bc.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">Martyn Joseph </p></div> <p>Martyn's song There's Always Maybe, from his current Under Lemonade Skies album, is up for the Best Song in the folk/singer songwriter category. The awards are chosen by a panel of 77 industry personalities and musicians, including Keith Richards, Tom Waits, Suzanne Vega, Tori Amos, Michael Franti and Ozzy Osbourne.</p> <p>The judges' choices will be announced next month.</p> <p>There is also a <a href="https://www.independentmusicawards.com/imanominee/11th/Song/Folk-Singer-Songwriter">public vote</a> in the awards, which closes in July.</p> <p>A spokesperson for the IMAs said: "Celebrating the democracy of creativity and meritocracy of talent, The Independent Music Awards honour exceptional independent artists traditionally ignored by mass media and 'big box' retailers.</p> <p>Winners of The 11th IMAs will receive active promotions, distribution and performance opportunities that will place them in front of nearly 1billion music fans, they say.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305361"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/joy-formidable-tour-diary-day-one.shtml" rel="bookmark">Joy Formidable tour diary - day one</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/joy-formidable-tour-diary-day-one.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjoy-formidable-tour-diary-day-one.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/"> <img class="author_pic" src="/staticarchive/3bde69c6c515d965a6ce9d0da7125103634ad6b8.png" width="50" alt="Adam Walton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/">Adam Walton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-27T15:47:39+00:00">15:47 UK time, Tuesday, 27 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>A couple of months ago, I got into work on a Saturday evening to find the following e-mail in my inbox:</p> <p></p><blockquote>Hey Adam<br> I manage <a href="/wales/music/sites/joy-formidable/">The Joy Formidable</a>. The band will be touring the East Coast of the US at the end of March and would like you to join them to do some work for a tour DVD. <p>This is the intinerary:<br> March<br> 26 Arrive in New York City<br> 27 (day off) spend time with band<br> 28 (T5) NYC show / interview<br> 29 (Philly) show / interview<br> 30 (Boston) Welsh day<br> 31 Leave</p> <p>Would this be agreeable to you?</p></blockquote> <p>Agreeable! AGREEABLE! It's easily the most 'agreeable' correspondence that has ever landed through my letterbox / in my inbox.</p> <p>So, here I am. Sat in a hotel just off Times Square, two hours from going over to meet the band for a YouTube session - more excited than I have been since my daughter was born. That's some exponential level above 'agreeable', is that!</p> <p>The only hiccup was that Radio Wales Music Day was scheduled to happen whilst I was away: an annual event that I'm proud to have (verbally, at least) been the instigator of, and an event that has become so, so important at sharing Welsh music to a broader audience.</p> <p>Fortunately, our editor and senior producers saw the worth in my being over in the United States with one of Wales' finest bands. I don't say that loosely. The Joy Formidable are right up there in my estimation with <a href="/wales/music/sites/super-furry-animals/">Super Furry Animals</a> and <a href="/wales/music/sites/future-of-the-left/">Future Of The Left</a>.</p> <p>My musical love doesn't get any deeper than that. The fact that the Joy Formidable are from my hometown of Mold just makes the whole thing that much sweeter. Mold, a humble market town in Flintshire, exporting a band whose hard work and inspirational music has brought them to the brink of full-on, international success, would have been unimaginable when I started out in a band there in the early 90s.</p> <p>So, over the course of my visit - and to coincide with Radio Wales Music Day - I'm going to bring you backstage, front-of-stage and tour bus access to a Welsh band making a real name for themselves and their music on a much wider stage. I'll do my best to keep a daily diary of events on the road with the band here on the BBC Wales Music blogs. And we'll have interviews and live tracks on BBC Radio Wales as part of Radio Wales Music Day itself.</p> <p>My show on Saturday 31 March will come live from Boston. And not the one in Lincolnshire.</p> <p>It should be something of an inspiration and an education. It will be for me. That is, if the band haven't kicked me off the tourbus after one night of vegetarian(ish) flatulence and occasional, baritone snoring.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="New York" src="/staticarchive/216fb8270f53c0da082c4734367df781cb28a03b.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">New York </p></div> <p>Here's a picture out of my hotel room window just to prove that I'm here and not typing this in from the studios in Wrexham.</p> <p>Watch - and listen - to this space...</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305260"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/hello-north-wales.shtml" rel="bookmark">Hello north Wales!</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/hello-north-wales.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fhello-north-wales.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/bbc-national-orchestra-of-wale/" rel="tag" title="">BBC National Orchestra of Wales</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/"> <img class="author_pic" src="/staticarchive/d1957b60a13c8a66ea5041c258fc1a2fd76434b3.png" width="50" alt="Laura Sinnerton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/">Laura Sinnerton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-23T16:48:22+00:00">16:48 UK time, Friday, 23 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>It is Thursday morning and aside from my toothbrush, which I will need shortly, and my travel tea mug, which I will fill just before I leave, I am packed and ready to go. Today the <a href="/now/">BBC National Orchestra of Wales</a> rolls north for its Spring North Wales Tour 2012!</p> <p>Andy and Mark, our stage and transport managers will already be on the road. Before the orchestra has left, they will have begun the drive to Aberystwth Arts Centre. By the time we arrive for rehearsal, they will have unloaded all the equipment from the Orchestra truck, including a good many instruments, set the stage up, negotiated the stage changes and be ready to ensure everything runs smoothly on stage. When the concert is finished, Andy and Mark will do everything in reverse, ready to drive to the next venue.</p> <p>Under the baton of our Principal Guest Conductor, Jac van Steen, we are taking two programmes on tour this week.</p> <p>Prokofiev's Classical Symphony is exactly what you would imagine it is - a tribute to the Classical era symphony by Prokofiev. We will perform it alongside Haydn's 'London' Symphony so you can hear for yourself what a remarkable job Prokofiev did!</p> <p>Prokofiev's music is fresh, exuberant, elegant and sparkly, and typically contains enough tunes that stick in your head to keep you awake for several nights in a row. It is, however, one of those pieces you could wear your metronome out practicing - it is easy to play under tempo, but not so easy up to speed. You have to keep both the bow and the left hand very organised or the fast passage work becomes muddy, and the slow passages sound flabby. There is one particularly nasty section in the last movement that on occasion can creep up in viola auditions (if the panel is feeling particularly mean). I remember weeping over these four lines in college because I kept panicking and getting my fingers in a muddle!</p> <p>We are also touring Dvořák 7 (I like the Scherzo), and overtures by Tchaikovsky (Hamlet - not very cheerful) and Schumann (Genoveva - quite perky).</p> <p>For me one of the highlights of the week so far has been the return of violinist Vilde Frang to our studio. We first worked with Vilde when she performed the Sibelius Concerto with us and Principal Conductor Designate, Thømas Sondergård. Thømas and Vilde know each other well (he was the conductor for her award winning debut recording for EMI with the WDR Symphonieorchester Köln) and it was a highly memorable performance.</p> <p>This week, Vilde will play the Tchaikovsky and Bruch concertos with us. She is such a beautifully natural musician and with a string of awards under her belt, including the prestigious Credit Suisse Young Artists' Award, this is a fabulous opportunity to see her perform these much loved concerti.</p> <p>I shall report back during the tour and maybe even try to get a few photos of the lovely north Wales scenery. Fingers crossed for good weather!</p> </div> </div> <div class="post" id="entry-305258"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/love-letter-cob-records-bangor-part-one.shtml" rel="bookmark">Love letter to Cob Records, Bangor - part one</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/love-letter-cob-records-bangor-part-one.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Flove-letter-cob-records-bangor-part-one.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/"> <img class="author_pic" src="/staticarchive/3bde69c6c515d965a6ce9d0da7125103634ad6b8.png" width="50" alt="Adam Walton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/">Adam Walton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-23T16:09:05+00:00">16:09 UK time, Friday, 23 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>For the majority of folk, vinyl records are as outmoded as a ZX Spectrum or Penny Farthing. If records are in the house at all, they're in boxes in the attic, fossils of music waiting to be rediscovered when our alien overlords return and - having watched an episode of The Only Way Is Essex - decide to wipe us all out.</p> <p>Hurry up alien overlords!</p> <p>The digital revolution initially meant that the hundreds of millions of LPs and singles that had been sold prior to 1985 had suddenly become obsolete. CDs were a fraction of the size, and men in cardigans would stand in awe listening to the new CD format remarking: "I can hear Knopfler's fingers moving up and down the frets!" in awe.</p> <p>A major step forwards, then, for all concerned.</p> <p>The mp3 then did away with any need for the impracticality of a physical product. All of a sudden, you could store a record shop-ful of music in something the size of a fag packet. And, as we consumerists all know, more is always more. We've turned music into cornflakes. Yay, for us!</p> <p>Alien overlords... come in alien overlords...</p> <p>But records clung on - like men with beards and bottles of absinthe at dissolute house parties.</p> <p>It was much easier for DJs and vinylologists standing atop a pile of records to look smug and superior than on a pile of mp3s. Gawky boys would argue about the merits of which format sounded best, as pointless a discussion as one pondering the best flavour of Monster Munch. It's always vinyl. It's always Pickled Onion. It just is.</p> <p>And records clung on in other ways too. Real, music lovers (and not - definitely not - "real music" lovers) knew that the most interesting sounds weren't to be found piled high, five for £30 in HMV, or on the splash page of the iTunes (or equivalent) store. A tide of obsolete and unloved vinyl flooded out of homes conned into replacing them with CDs or an iPod.</p> <p>That tide washed up in carboot sales across the land, charity shops, and - most pertinent for this love letter to a cultural institution facing a firing squad in the morning, secondhand record shops.</p> <p>I had to begin my treatise on the demise of Cob records in Bangor with a convoluted soliloquy on the main reason I love the place: it's their vast racks of used vinyl.</p> <p>Cob Records is one of north Wales' last collections of affordable secondhand records. Nothing is over-priced (a problem almost everywhere else - where Johnny Come Lately vinyl fashionistas like me are exploited with the ease of a card shark ripping off a toddler). It has been a reef of inspiration to generations of north Walean musicians and music-lovers, too skint or too savvy to fall for the music industry's endless slew of reissues and remasters.</p> <p>This should not be underestimated. If music people can't get the music to inspire them, they shrivel up, can't bloom as fulsomely as they would if well-watered. In fact, by accident, I may - finally - have stumbled across the perfect metaphor for Cob: it is a well of music, and for those of us with an interest in these matters, the knowledge of a post Cob drought is a sobering one indeed.</p> <p>Yes, you can buy records on Amazon, eBay or their digital equivalents, but it's impossible to replicate the browsability you get in a second hand record shop, where you finger stumble into something great - something you fall in love with - by absolute happenchance.</p> <p>Cob has given me Emitt Rhodes, Steve Miller, Georgie Fame, Van Der Graaf Generator, Y Fflaps, 9Bach and Tystion - all records I adore. All for under £15.</p> <p>iTunes recommendations pale sadly and stupidly in comparison.</p> <p>Then add into the equation the brilliant and knowledgeable staff - especially Alan Holmes, acclaimed godfather of the Welsh underground - and you have a unique cultural service that we're about to lose forever.</p> <p>"Well, if it was that valuable a service it'd be a viable business and wouldn't be closing down, Adam."</p> <p>Good point. Well, it's a good point if you measure everything in life in terms of profit and loss. That's what bankers do, isn't it? And haven't they helped build a better and brighter world for us all?</p> <p>Stuffy pen pushers decided a long time ago that galleries and theatres and operas were worthy of subsidy and funding, but rock 'n' roll - even now in its dotage - hardly qualifies for a similar amount of support. And record shops - as commercial enterprises - would find it triply hard to qualify for funding.</p> <p>But that doesn't alter the fact that we're about to lose an incredibly valuable resource.</p> <p>The alien overlords can have the last word. They're over here next to the rack marked 'Vinyl Just In':</p> <p>"Hey, Xrtq, hold back that demolition order... I've just found a copy of Sixto Rodriguez's Cold Fact. Let me have a flick through the rest before we hit the red button..."</p> </div> </div> <div class="post" id="entry-305218"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/james-dean-bradfield-radio-wales-manic-street-preachers.shtml" rel="bookmark">James Dean Bradfield takes the mic on Radio Wales</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/james-dean-bradfield-radio-wales-manic-street-preachers.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjames-dean-bradfield-radio-wales-manic-street-preachers.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/radio/" rel="tag" title="">Radio</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-23T08:13:13+00:00">08:13 UK time, Friday, 23 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p><a href="/wales/music/sites/james-dean-bradfield/">James Dean Bradfield</a> sits in for Bethan Elfyn tomorrow at 7pm, taking the mic on <a href="/programmes/b01dz9pz">the first of two shows</a> on Radio Wales.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="James Dean Bradfield" src="/staticarchive/8d245fcfdf4e96a26f9a0b2312b0b4b3771b6ba7.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">James Dean Bradfield </p></div> <p>The show's producer, Darren Broome, agreed to write a few paragraphs for us about getting the <a href="/wales/music/sites/manic-street-preachers/">Manic Street Preachers</a> frontman in:</p> <blockquote><p>My history with Manic Street Preachers goes back to very nearly the beginning. I started here as a reporter on Rave, along with Alan Thompson and Rob Brydon, back in 1990. Rave was a late night 'youth show' on then BBC Radio 5.</p> <p>One of the very first interviews I did was with <a href="/wales/music/sites/manic-street-preachers/pages/richey.shtml">Richey Edwards</a> in the Marina Nite-spot in Swansea - just about when the band were releasing their <a href="/wales/music/sites/manic-street-preachers/pages/motown-junk-interview.shtml">Motown Junk</a> single in January 1992. I've been lucky and seemed to pop up and interview them as their profile increased and I've ended up sort of befriending them along the way.</p> <p>Every couple of years on from that I'd end up interviewing the band - <a href="/wales/music/sites/manic-street-preachers/pages/nicky.shtml">Nicky</a> and his brother Patrick a couple of times in 1996 and 1999, then I made a Radio 2 doc - A Design For Life - about the band in 2002 which included long interviews with James, Nicky and <a href="/wales/music/sites/manic-street-preachers/pages/sean.shtml">Sean</a>.</p> <p>I've also worked on a couple of music related projects outside of work as a musician and got to know James quite well. We're pretty much the same age and both grew up in the Valleys - I'm from Aberdare, he's Blackwood of course, so we've got a lot of the same or indeed shared cultural and social reference points.</p> <p>It was an absolute honour and joy to spend time with James in the studio listening to the music that we both grew up adoring and being influenced by. It was great fun to hear so many rock and roll stories!</p> <p>James took the role of presenter with total dedication. His love of classic rock comes over so strongly in both programmes, as does the fact he's really knowledgeable with the state of the current music scene. He's a natural presenter, passionate and engaging, and a real treat for anyone who's a fan of music.</p> <p>If you hear the shows you'll get a wonderful insight into the mind of a brilliant songwriter: listening to James' choices of tracks, you can just about start to imagine how he puts together a track, the sounds that trigger his thought processes.</p> <p>It's a diverse, eclectic and really rocking playlist for both shows. James picked west Wales band Trwbador, playing a track in each of this two shows, and also chose a session from Abergavenny art punks Saturday's Kids. To have James stamp his approval on any new Welsh band is something that is bands can only dream of, but for quite a few new Welsh acts the dream has come true.</p> <p>James said to me: "To be able to make a programme where you can play Rush and Orange Juice in the same show is such a privilege." Many of the tracks were chosen to pinpoint a particular time in James' early life in and around Blackwood, Newport and Cardiff.</p> <p>Also keeping it very homegrown, James chose an album each week in the feature 'Albums to Hear before you pop your clogs'. In the first programme he picked Empires And Dance by Simple Minds which was recorded at Rockfield studios in Monmouth.</p> <p>In the second programme (31 March) he chose The Velvet Underground's White Light/White Heat, a record that has a special memory for him as he remembers listing to the track, The Gift - and hearing a Welsh voice narrate the track, whom he later discovered was <a href="/wales/music/sites/john-cale/">John Cale</a>. James describes that as his 'Jim'll Fix It moment' - from that moment on he realised that anything was possible.</p></blockquote> </div> </div> <div class="post" id="entry-305086"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/whale-trail-book-gruff-rhys-penguin-puffin.shtml" rel="bookmark">Penguin picks up Gruff Rhys-soundtracked Whale Trail app</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/whale-trail-book-gruff-rhys-penguin-puffin.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fwhale-trail-book-gruff-rhys-penguin-puffin.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-20T09:28:54+00:00">09:28 UK time, Tuesday, 20 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>The popular iOS and Android game Whale Trail, uniquely launched in conjunction with a song by <a href="/wales/music/sites/gruff-rhys/">Gruff Rhys</a>, has made the jump from mobile app to publishing thanks to Penguin Books.</p> <iframe width="512" height="288" src="https://www.youtube.com/embed/wwr6c2Ws1yI" frameborder="0" allowfullscreen></iframe> <p>Penguin's Puffin imprint has secured the global rights to Whale Trail to publish as an e-book, digital picture book and in traditional format.</p> <p>Launched last year and developed by <a href="https://www.ustwo.co.uk/">ustwo</a>, Whale Trail is a psychedelia-inflected game featuring Willow the Whale - and its music is a song by Rhys, who had previously worked with ustwo's Neil McFarland on <a href="/wales/music/sites/super-furry-animals">Super Furry Animals</a>' Rings Around The World and Phantom Power DVDs.</p> <p>Penguin's Eric Huang said: "I discovered Whale Trail from Gruff Rhys' music video. When I downloaded the app, I was hooked. I wanted to know more about Willow and his world and thought, we should publish a book."</p> <p>Whale Trail is soundtracked by an instrumental version of Rhys' song, while the full version was released as a bonus track on the reissue of his last album, the award-winning Hotel Shampoo.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305041"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/bread-of-heaven-six-nations-grand-slam-paul-child-charts.shtml" rel="bookmark">How many rugby fans does it take to get to Number One?</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/bread-of-heaven-six-nations-grand-slam-paul-child-charts.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fbread-of-heaven-six-nations-grand-slam-paul-child-charts.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/release/" rel="tag" title="">Releases</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-19T11:00:10+00:00">11:00 UK time, Monday, 19 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>With Wales winning the Six Nations Grand Slam last weekend, musical ears and eyes are turning to Sunday's chart rundown, to see if <a href="/blogs/walesmusic/2012/03/wales-millennium-stadium-bread-of-heaven-wru-paul-child.shtml">Cwm Rhondda/Bread Of Heaven</a> can break into the hit parade.</p> <p><a href="/wales/music/sites/paul-child/">Paul Child</a> recorded the Millennium Stadium crowd singing the 1907 John Hughes hymn at half-time. It was rush-released yesterday, credited to Wales.</p> <p>Watch a video as <a href="/wales/music/sites/anthem/">Hen Wlad Fy Nhadau</a> rang round the stadium:</p> <iframe width="512" height="288" src="https://www.youtube.com/embed/I6oaJ7wvGk8" frameborder="0" allowfullscreen></iframe> <p>With a capacity of 74,000, the stadium held enough people to take the song into the top five if everyone bought a copy.</p> <p>Half the audience purchasing the charity single would bring it to the top 10. However, twice the capacity of the stadium would be needed to almost guarantee a chart-topper.</p> <p>Lauren Kreisler of the Official Charts Company said: "We wouldn't speculate as to how the song will do, but it's an interesting story. You'll have to wait till 4pm on Wednesday when we publish our midweek charts to find out how it's doing."</p> <p>Paul Child told the Western Mail: "It's an idea which came about because we wanted to get as many fans involved with the single as possible and Bread Of Heaven is famously sung on the terraces and throughout the stands so what better song to choose as the Grand Slam single.</p> <p>"But ultimately it's a celebration of this year's tournament. It's a way for fans to thank the team, letting them know how grateful we all are and how proud we are to get behind them."</p> <p>Cwm Rhondda/Bread Of Heaven is available in physical form at Tesco stores in Wales and on download sites. All proceeds from the single will be donated to the <a href="https://www.wrct.org.uk/">Welsh Rugby Charitable Trust</a>.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-305032"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/adam-walton-playlist-show-17-march-2012.shtml" rel="bookmark">Adam Walton playlist and show info: Saturday 17 March 2012</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/adam-walton-playlist-show-17-march-2012.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fadam-walton-playlist-show-17-march-2012.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/radio/" rel="tag" title="">Radio</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/"> <img class="author_pic" src="/staticarchive/3bde69c6c515d965a6ce9d0da7125103634ad6b8.png" width="50" alt="Adam Walton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/">Adam Walton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-19T08:47:21+00:00">08:47 UK time, Monday, 19 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>This week's show is now available <a href="https://bbc.co.uk/iplayer/episode/b01dnb79/Adam_Walton_17_03_2012">via the BBC iPlayer</a>. Please visit the link any time between now and the start of the next programme.</p> <p>I shan't blather on, really I shan't.</p> <p>I have a cold that'd stun a Tyrannosaurus Rex. My nose is redder than a drunk strawberry's. My head is full of drunk, green sloths. I don't make the best of patients, in all honesty.</p> <p>But - BUT - I have music. Music that'd clears passages better than owt derived from menthol remedies.</p> <p>There are first-time plays for Lux Lisbon, Isaac Wadsworth, The Strangers, The Knocks and Paint Happy.</p> <p>To join this illustrious band (of bands), throw new releases/demos and correspondence at <a href="mailto:themysterytour@gmail.com">themysterytour@gmail.com</a>.</p> <p>I like high quality mp3s and download links. And if you think that's me being choosy and pedantic, you just wait.</p> <p>Elsewhere on the show, Huw Williams plays some Lo0p, who seem to be fuzzy about the difference between Os and 0s.</p> <p>Lara Catrin translates something beautiful from Race Horses.</p> <p>And Ben Hayes gets a bit haughty about the amount of dust on our stylus, while it skates woollily across something brilliant by Dave Mason.</p> <p>I'm off now. I have to get Dyno-Rod out to clear my sinuses.</p> <p>Have an excellent, music-filled week y'all, Adam Walton.</p> <p><a href="https://thejoyformidable.com">JOY FORMIDABLE, THE</a> - 'Cradle' <br>Mold</p> <p><a href="https://futureoftheleft.net">FUTURE OF THE LEFT</a> - 'Sheena Is A T - Shirt Salesman [ Radio Edit ]' <br>Cardiff</p> <p><a href="https://catelebon.com">CATE LE BON</a> - 'Puts Me To Work' <br>Penboyr</p> <p><a href="https://ricosuave.co.uk">RICO SUAVE</a> - 'Nostalgia' <br>Newport</p> <p><a href="https://soundcloud.com/falconlake">FALCON LAKE</a> - 'All I Want' <br>Newport / Cardiff</p> <p><a href="https://euroschilds.com">COUSINS</a> - 'Baby Baby Baby [ Give Me More ]' <br>Pembrokeshire / Aberystwyth</p> <p>SUICIDE - 'Ghost Rider' <br>New York</p> <p><a href="https://soundcloud.com/soundhog">SOUNDHOG</a> - 'John Barleycorn Must Ramble On [ Traffic Vs. Led Zeppelin ]' <br>Ruthin</p> <p><a href="https://littlearrow.co.uk">LITTLE ARROW</a> - 'Our Taste Is Violence' <br>Cardiff</p> <p>HUW WILLIAMS - 'Spoken Contribution' <br>Swansea</p> <p>LO0P - 'Nerves Of Steel' <br>Swansea</p> <p><a href="https://toyhorsesmusic.com">TOY HORSES</a> - 'Play What You Want' <br>Cardiff</p> <p><a href="https://houdinidax.co.uk">HOUDINI DAX</a> - 'O. L. L.' <br>Cardiff</p> <p><a href="https://facebook.com/cdxlstr">CODEX LEICESTER</a> - 'Strong Like Bull [ E P Version ]' <br>Mold / Leicester</p> <p>UNDERSOUND - 'Meet Me In My Shadow' <br>Caerphilly</p> <p><a href="https://facebook.com/pages/CrashDisco/10150091457360262">CRASH DISCO</a> - 'Alice' <br>Bangor</p> <p><a href="https://soundcloud.com/scriber">SCRIBER</a> - 'Holland House' <br>Cardiff</p> <p><a href="https://luxlisbon.com">LUX LISBON</a> - 'Bullingdon Club' <br>Unknown.</p> <p><a href="https://soundcloud.com/isaacwadsworth">ISAAC WADSWORTH</a> - 'Flowers And Chocolates' <br>Ffestiniog</p> <p><a href="https://facebook.com/ofemimusic">O FEMI</a> - 'Amazing Grace [ So Amazing ]' <br>Camarthen</p> <p><a href="https://soundcloud.com/ed-t">ED!T</a> - 'Come For You' <br>Tenby</p> <p><a href="https://facebook.com/pages/The-Broken-Vinyl-Club/53574162846">BROKEN VINYL CLUB, THE</a> - 'Diamonds In Her Eyes' <br>Cardiff</p> <p><a href="https://myspace.com/thesweetspotsband">SWEET SPOTS, THE</a> - 'Love So Bad' <br>Cardiff</p> <p><a href="https://soundcloud.com/samairey">SAM AIREY</a> - 'The Unlocking' <br>Anglesey</p> <p><a href="https://blackeaglechild.com/">BLACK EAGLE CHILD</a> - 'Phrases Of The Moon' <br>Milwaukee/ Bridgend (label)</p> <p><a href="https://soundcloud.com/plyci">PLYCI</a> - 'Nogg' <br>Rhyl</p> <p>BRECCIA - 'Binocular' <br>?</p> <p><a href="https://tenthousandyen.com">DOC DANEEKA AND ABIGAIL WYLES</a> - 'Toby Jug' <br>Cardiff</p> <p><a href="https://juliemurphymusic.com">JULIE MURPHY</a> - 'Essex Song' <br>Pembrokeshire</p> <p><a href="https://yniwl.com">Y NIWL</a> - 'Dauddegtri' <br>Gwynedd</p> <p>LARA CATRIN - 'Spoken Contribution' <br>Bangor / Cardiff</p> <p><a href="https://racehorsesmusic.com">RACE HORSES</a> - 'Glo Ac Oren' <br>Aberystwyth</p> <p>STRANGERS, THE - 'Emilia Rose' <br>Bala</p> <p><a href="https://soundcloud.com/the-knocks-band">KNOCKS, THE</a> - 'Road Run [ You Do You Do You Don't You Don't ]' <br>Cardiff</p> <p><a href="https://soundcloud.com/paint-happy">PAINT HAPPY</a> - 'Not Saving A World That Ends' <br>Merthyr Tydfil</p> <p><a href="https://soundcloud.com/soundhog">BEN HAYES</a> - 'Spoken Contribution' <br>Ruthin</p> <p><a href="https://en.wikipedia.org/wiki/Dave_Mason">DAVE MASON</a> - 'Only You And I Know' <br>Worcester</p> <p><a href="https://hehfu.bandcamp.com">HEHFU</a> - 'Slow' <br>Caerphilly</p> <p><a href="https://soundcloud.com/shiftysarah">TOYPOP!</a> - 'Yellow Brick Road [album Version]' <br>Newport</p> </div> </div> <div class="post" id="entry-304982"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/julie-murphy-theatr-clwyd-mold-review.shtml" rel="bookmark">Julie Murphy, Theatr Clwyd, Mold - Thursday 15 March 2012</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/julie-murphy-theatr-clwyd-mold-review.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjulie-murphy-theatr-clwyd-mold-review.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/live/" rel="tag" title="">Live</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/"> <img class="author_pic" src="/staticarchive/3bde69c6c515d965a6ce9d0da7125103634ad6b8.png" width="50" alt="Adam Walton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/">Adam Walton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-16T14:23:17+00:00">14:23 UK time, Friday, 16 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>I don't know anything about folk music, not really. I know I'm not much inspired by the folk stereotype: someone lost in the past with a finger in their ear. But using stereotypes to judge music is asinine: you could consign all country and western into a bin marked Billy Ray Cyrus, and all dubstep into a skip with Skrillex's name daubed on the side in a very stupid haircut.</p> <p>Julie Murphy is a folk musician, but that four-letter word - dragging hundreds of years of culture and social history behind it - doesn't cover half of Julie's scope. Given four times the space I have here, I'd be hard pushed to scratch at the surface of the rest. Every one of the songs she sings has a story to it, with roots in her life, and a whole network of roots stretching back into pasts almost forgotten. Importantly, all of those roots link to the song flowering in that moment, on that stage, in front of we, the fortunate audience.</p> <p>So we become part of that song's story, too.</p> <p>It's quite a naturalistic feat. Organically inclusive - and all the more powerful for it.</p> <p>I come to Theatr Clwyd with my own dragnet of memories. I kissed my first love in the corridor next to this room. I played my second ever gig on that stage. We hosted a brilliant Radio Wales Music Day concert here last March. This venue has been part of my life for as long as I can remember. I'm on Proustian overload. If someone started baking a cake with a half-remembered scent, my long-term memory would explode in a cloud of luminous spores.</p> <p>I'm here with my daughter Ava. She's nine. I'm not trying to impose music on her, but I do dearly want her to witness the magic of live, human performance, those distinct from dance routines, pyrotechnics and Auto Tune. I couldn't have brought her to see anyone better.</p> <p>My mum and dad have come along, too. Ava and I got in on the guest list, I let my mum and dad pay; to assuage my freeloader guilt, probably.</p> <p>My first experience of 'folk' music would have been my dad's early Bob Dylan albums. When I started listening to them in the late 70s/early 80s, they didn't sound like historical artefacts. They sounded scary, formidable, alive and prescient. Dylan's please-yourself voice had a mischievous truth to it. I pretended I didn't like it. I complained every time A Hard Rain's Gonna Fall or It's Alright Ma soundtracked Sunday tea (it was never ready in time for lunch). But I soaked it all up with silica gel ears.</p> <p>This isn't much like my usual kind of gig. No one's outside smoking like their life depended on it. The bus passes in inside pockets aren't taking the audience to campuses. The moment Julie walks to the piano a pristine silence cloaks the room. There isn't a single jerk at the bar half spilling a pint of Guinness, while being boorish down a mobile phone. No one - not a single solitary person - watches the ensuing concert on an iPhone screen. Can you imagine that?</p> <p>Julie begins by telling us about Essex Song. She's from Essex originally. Old maps showed her where the fields were, where the farriers and blacksmiths lived; the new maps are anonymous suburban sprawl. Things had been built on and forgotten. Folk music's philosophy is a lot about not forgetting stuff. Julie's art is in taking these things out from behind glass and breathing now and heart into them. The loss of geographical history in Essex Song is a metaphor for that ache of being that permeates every heart. It's sort of what makes us human.</p> <p>Although I don't have proof, I don't think cows get maudlin looking at old maps.</p> <p>It's a beautiful opening. Julie's much lauded voice is lauded for good reason. We hear so many people sing in accents and mannerisms like viruses, it's an awe-inspiring shock to hear someone sing so naturally, with so much truth. Julie Murphy could sing you the News Of The World and you'd believe every word. Murdoch missed a trick, there. Julie wouldn't have been for the buying, though. You could bet your firstborn on that.</p> <p>My firstborn is faring well. She is entranced. Partly this is because Julie is accompanied by Ceri Jones. Ceri is a harpist and trombonist of Canadian and Ukrainian heritage. Ava has been learning the euphonium in school. Her best friend Mimi is learning the trombone.</p> <p>"...But she doesn't sound like that."</p> <p>I bet she doesn't.</p> <p>Ceri's brass and harp are subtle and wonderful embellishments. They help alleviate some of the gravitas of the songs. An unaccompanied piano - regardless of who's playing it, Les Dawson excepted - playing minor chords can get lost in its own profundity. Not here, though.</p> <p>Julie tells us how these songs grew out of a piano hitherto abandoned in a corner of her house. How the notes that became songs filled the gap left by her flown children. How hanging out in the kitchen with music making friends baked her a new album without her having to pay much attention to ingredients and instructions.</p> <p>The next lyric repeats the line: "You are flown from me, but I'm always with you" - an unadorned, heartfelt and moving truth that exemplifies Julie's economic poetry. Quite what she'd make of my blather, I don't want to know...</p> <p>We hear Two Sisters, a traditional song about one sister murdering another, but, Julie proclaims gleefully, "it has a happy ending..."</p> <p>As far as I can tell, that happy ending involves the body of the dead sister being fashioned into a fiddle that then gets taken to the murderous sister's wedding, where it (the fiddle) tells the assembled guests what really happened, a plot that makes EastEnders look like In The Night Garden.</p> <p>Julie finishes the first of her two sets with The Fountain (from her excellent new album A Quiet House). It's a wonderful song - a starkly beautiful Welsh cousin of Joni Mitchell's Carey, all rooted in fraying - but increasingly precious - memories of Padua. Imagine Laurel Canyon under occluded skies and you have it.</p> <p>Better still, invest in a copy of the album. You'll be hard pressed to find anything more moving, plaintive or intuitive, from any era or genre.</p> <p>Ava is way past her bedtime, so - with great reluctance - we drift home during the interval, our hearts filled with Julie's music and a hundred new stories.</p> <p><em>Julie Murphy launches the new album with a webcast from <a href="https://www.juliemurphymusic.com">www.juliemurphymusic.com</a> on Monday 16 April at 8.30pm.</em></p> </div> </div> <div class="post" id="entry-304977"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/harpist-harpsichordist-pianist-walk-into-a-bar.shtml" rel="bookmark">A harpist, a harpsichordist and a pianist walk into a bar... </a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/harpist-harpsichordist-pianist-walk-into-a-bar.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fharpist-harpsichordist-pianist-walk-into-a-bar.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/bbc-national-orchestra-of-wale/" rel="tag" title="">BBC National Orchestra of Wales</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/"> <img class="author_pic" src="/staticarchive/d1957b60a13c8a66ea5041c258fc1a2fd76434b3.png" width="50" alt="Laura Sinnerton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/">Laura Sinnerton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-16T13:22:42+00:00">13:22 UK time, Friday, 16 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>There is always something a little bit quirky, a little bit left of centre in Frank Martin's music. It is seldom avant garde enough harmonically to offend the ear, but there will always be a little curiosity, whether it be in the technique used by the solo instrument, or, more commonly, the collection of instruments used.</p> <p>I mean, seriously, who would consider having a harp, a piano and a harpsichord as their three solo instruments? Martin seemed to have a soft spot for the harpsichord as it features in quite a lot of his output. Not bad going for an instrument that is generally confined to period instrument ensembles and the sound of which the famously acid-tongued conductor Sir Thomas Beecham likened to two skeletons copulating on a tin roof in a thunder storm.</p> <p>The combination of the three solo instruments is certainly an original sound - I quite like it. The work itself is quite a fun play, but it is quite tricky for ensemble; the orchestra is split in two, meaning we are very spread out, exacerbated by the large physical size of the solo instruments and it is quite difficult to hear each other!</p> <p>Sadly, the Martin is the only work I am needed for in this Friday's concert. I'm a bit gutted not to be in the Stravinsky Concerto in D as I haven't played it since the heady days of Irish Youth Orchestra. There is a brief, but brilliant, viola solo in the first movement that to me sounds like some sort of crazy jazz goblin. I think you can still hear echoes of his earlier string work, Apollon Musagète (1928), another true masterpiece of the string orchestra repertory, in this Concerto from the 1940s.</p> <p>I'm actually quite looking forward to listening to the rest of the concert on Friday evening. I've always struggled a bit with Lutosławski's music. I think Gwen (1st Violin) put it well yesterday when she said that you get a sense of achievement from getting from the beginning to the end and knowing you're in the right place, but I've just never really 'clicked' with his music. Friday will be a good opportunity for me to sit down and listen to his Double Concerto for Harp and Oboe (with soloists Catrin Finch, harp, and Lucas Macias Navarro, oboe) - perhaps I will enjoy the music more as a listener than as a player.</p> <p>Of course, the most important note from the studio this week is that I have found a bow! It's all very exciting, a bit like having a new toy, but better. I am now officially poor, but very pleased. It is a Dodd bow from the 1800s and is very elegant and classy. Next on my list of things to buy is a new viola case as my regular case is falling apart and my old-style case weighs a ton. My new bow deserves to travel in style you know!</p> <p><em>The Orchestra performs music by Martin, Lutosławski, Stravinsky and Honegger tonight at 7pm, at BBC Hoddinott Hall, Cardiff Bay. Tickets are available by calling 0800 052 1812. The concert will also be broadcast live on BBC Radio 3.</em></p> </div> </div> <div class="post" id="entry-304879"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/doctor-who-orchestral-performances.shtml" rel="bookmark">'It should sound like a fire in an aviary'</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/doctor-who-orchestral-performances.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fdoctor-who-orchestral-performances.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/bbc-national-orchestra-of-wale/" rel="tag" title="">BBC National Orchestra of Wales</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/"> <img class="author_pic" src="/staticarchive/d1957b60a13c8a66ea5041c258fc1a2fd76434b3.png" width="50" alt="Laura Sinnerton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/">Laura Sinnerton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-14T11:26:20+00:00">11:26 UK time, Wednesday, 14 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>With a direction like this (for the flutes incidentally - violas aren't best known for their birdlike qualities), it could mean only one thing - the <a href="/doctorwho/">Doctor Who</a> team were back in Hoddinott Hall!</p> <p>On Monday evening, along with Doctor Who orchestrator, Ben Foster, the <a href="/now/">BBC National Orchestra of Wales</a> performed two live shows of the 2011 Christmas Special for a studio audience.</p> <p>This was a show unlike any I had been involved in before. For our Doctor Who Prom in 2010, the music was very closely linked with the visuals shown on the big screens dotted around the Royal Albert Hall, but this was our first complete episode live.</p> <p>As I've mentioned before, the efficiency of the Doctor Who team is exceptional, meaning that every minute of a rehearsal is used well. Our pads (the big lump of music that appears on your stand every day) were annotated within an inch of their lives; every change of click was clearly noted, cues clearly marked - these things make the difference between work going smoothly or being the most boring affair with proceedings stopping continually for questions and corrections.</p> <p>Our afternoon rehearsal mainly focused on running the episode with the click track. The close correlation between Murray Gold's score and the action you see on screen means everything has to be lined up to the very millisecond. It was important for the click to be loud enough for us to hear over onscreen action and audience noise without actually deafening us - a surprisingly delicate balance! </p> <p>The studio looked rather atmospheric, lit only by the glow of the screens and stand lights, and it was a tribute to the place that Doctor Who holds in people's imaginations to see the broad demographic of people who attended the shows.</p> <p>At 6pm we were off and running with the first showing. As a Doctor Who fan myself, it was probably good I couldn't see the screens very well, because much concentration was needed - any little slips in entries could have spelt utter disaster!</p> <p>Disaster almost came in the break between shows when news reached us that the entire Welsh Rugby Team were eating dinner in Côte Brasserie just opposite the Wales Millennium Centre. Much persuasion was needed for some female members (and some male members) of the orchestra not to attempt to make it to the restaurant and back in time for the second show! Alas, another missed opportunity for me to tell Leigh Halfpenny how much I admire his kicking prowess...</p> <p>A number of colleagues had friends attending the second show who had never really attended orchestral concerts before and they were blown away by the sound of the orchestra. The audience reaction was very gratifying; the orchestra has worked on Doctor Who for many years now and enjoys a very good relationship with its musical team. Long may it continue!</p> <p>I hope we get to do another project like this, but next time I think there should be prizes for dressing up as your favourite Doctor Who character.</p> </div> </div> <div class="post" id="entry-304840"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/wales-millennium-stadium-bread-of-heaven-wru-paul-child.shtml" rel="bookmark">Wales rugby fans Heaven sent for charity single</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/wales-millennium-stadium-bread-of-heaven-wru-paul-child.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fwales-millennium-stadium-bread-of-heaven-wru-paul-child.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/release/" rel="tag" title="">Releases</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-13T11:23:51+00:00">11:23 UK time, Tuesday, 13 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>This Saturday 75,000 Welsh rugby fans will be recorded for a charity single to be released the very next day.</p> <p>During half time in the Wales v France Six Nations decider Welsh artist Paul Child will lead the crowd in a rendition of Cwm Rhondda (Bread Of Heaven), which will be recorded, mastered and manufactured overnight for distribution across Wales in Tesco stores on Sunday, and online for download.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="Paul Child" src="/staticarchive/194f53c0b0fa3f2ec41694bad995bccd93e8d995.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;"> </p></div> <p>The single, released by Music Wales Studios of Bridgend in conjunction with the Welsh Rugby Union (WRU), will feature 'Wales' as the credited artist: the first time an entire country has been the performer of a work.</p> <p>Child <a href="https://www.walesonline.co.uk/news/need-to-read/2012/03/13/millennium-stadium-crowd-to-record-cwm-rhondda-at-grand-slam-match-91466-30517427/">told The Western Mail</a>: "The aim is to get Bread Of Heaven into the top 20 in charts and played on Radio One. Ultimately it's a celebration of this year's tournament. It's a way for fans to thank the team, letting them know how grateful we all are and how proud we are to get behind them."</p> <p>Profits from the single will be donated by the WRU to the <a href="https://www.wrct.org.uk/">Welsh Rugby Charitable Trust</a>.</p> <p>Craig Maxwell of the WRU said: "To make Wales' 2012 Championship extra special, we're calling on the support of all our fans to get hold of their copy of the official WRU single and get the traditional sound of Welsh rugby at the Millennium Stadium into the music charts for the first time."</p> </div> </div> <div class="post" id="entry-304795"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/grand-slam-blims-six-nations-sporting-songs.shtml" rel="bookmark">Grand Slam for The Blims?</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/grand-slam-blims-six-nations-sporting-songs.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fgrand-slam-blims-six-nations-sporting-songs.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-13T09:00:00+00:00">09:00 UK time, Tuesday, 13 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>This weekend Wales will attempt to secure their third Six Nations Grand Slam in the past eight years. This year, though, they've got some musical support in the form of <a href="https://www.facebook.com/theblims">The Blims</a>' Side Steps And Side Burns.</p> <p>The song, currently in the top five of iTunes' rock chart, is a sunny, acoustic-tinged paean to the joys of supporting Wales and the team's rugby heritage. Watch the video here:</p> <iframe width="512" height="288" src="https://www.youtube.com/embed/r3hFzpUq6w4" frameborder="0" allowfullscreen></iframe> <p>Martin of the band says: "Music to me should stir emotional reactions. Hearing crowds singing Bread Of Heaven has undoubtably been a subconcious influence. I love a song to tell a story, with early Sterophonics songs making me reach for the guitar.</p> <p>"I loved Catatonia and I'm a huge Manics fan but i find it hard to write songs about subjects. We just got lucky with Side Steps And Side Burns. We feel the best songs come easily and flow well. I'm just happy our song has struck a chord. I think it's because it's what everyone truly feels... and if you mean what you sing it always shines through."</p> <p>The Blims appear on Roy Noble's show on Radio Wales this Friday (16 March) from 2om.</p> <p>It got us thinking about sport-related singles that have blessed or cursed our lives in the past. For me, it was football which blighted my teenage years with such tracks as <a href="https://www.youtube.com/watch?v=X9Bl4gLsfMY">Pass And Move (It's The Liverpool Groove)</a> and <a href="https://www.youtube.com/watch?v=WEypRP0r34c">Glory Glory Man United</a>.</p> <p>The tradition originated in the 1970s, when each year teams contesting the later stages of the (then important) FA Cup would release tuneless songs featuring team singalongs involving pronouncing Wembley as Wem-ber-ley.</p> <p>I suppose when the best football-related commercial single was New Order's <a href="https://www.youtube.com/watch?v=Q_YiG7yN7PY">World In Motion</a> from the 1990 World Cup the bar's not set very high.</p> <p>For Wales the likelihood of achieving great football success is lower than the big English teams, so Welsh footy singles are few and far between. In 2008 Cardiff City FC's FA Cup run gave them the excuse to release Bluebirds Flying High by James Fox with an appearance from the team (of course):</p> <iframe width="512" height="288" src="https://www.youtube.com/embed/q2o5FzD6_WU" frameborder="0" allowfullscreen></iframe> <p>Swansea City, although Wales' foremost football team at the moment according to the league structure, has never been successful enough to warrant an official single, but please correct us if we're wrong.</p> <p>Instead, there was a Swansea-related 1998 Christmas single called Nice Swan Cyril, with the titular Cyril being the club's mascot. A swan. Called Cyril.</p> <p>Rugby lends itself less well to singles destined for the bargain bin three months later, but its canon of classic songs more than makes up for it.</p> <p>It would be remiss not to mention Max Boyce at this point:</p> <iframe width="512" height="288" src="https://www.youtube.com/embed/y0RDadPheNQ" frameborder="0" allowfullscreen></iframe> <p>Of course, there's nothing like <a href="https://www.youtube.com/watch?v=JJrqsX8IQd8">a song about a murder</a> to get into the mood for a sporting fixture.</p> <p>Here's Wales' official 2009 Six Nations song, Let The Dragon Roar, by Paul Child:</p> <iframe width="512" height="288" src="https://www.youtube.com/embed/FsEV3JuPB2E" frameborder="0" allowfullscreen></iframe> <p>Then there's <a href="/wales/music/sites/stereophonics/">Stereophonics</a>' <a href="https://www.youtube.com/watch?v=AILI4KEvNgw">As Long As We Beat The English</a>.</p> <p>But Wales has a trump card. If a 75,000-strong rendition of <a href="/wales/music/sites/anthem/">Hen Wlad Fy Nhadau</a> doesn't make the hairs on the back of your neck stand up, there's something wrong:</p> <iframe width="512" height="288" src="https://www.youtube.com/embed/SMI5wpwXTCY" frameborder="0" allowfullscreen></iframe> <p><strong>What are your best and worst Welsh sporting songs? Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-304806"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/miklos-rosza-great-new-find.shtml" rel="bookmark">A great new find</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/miklos-rosza-great-new-find.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fmiklos-rosza-great-new-find.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/bbc-national-orchestra-of-wale/" rel="tag" title="">BBC National Orchestra of Wales</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/"> <img class="author_pic" src="/staticarchive/d1957b60a13c8a66ea5041c258fc1a2fd76434b3.png" width="50" alt="Laura Sinnerton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/">Laura Sinnerton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-12T15:38:31+00:00">15:38 UK time, Monday, 12 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Saturday evening's concert in Swansea held a great new find for me. I like it when that happens, when a piece of music you've never heard before, by a composer whose name rings only the faintest of bells, really grabs your imagination.</p> <p>Miklós Rósza's Three Hungarian Sketches was the first work on our programme (under the baton of conductor Roberto Minczuk). I don't know what it was, but it made me want to smile, to tap my feet, to really get carried away with it. It wasn't a work of great symbolic meaning, or a work that attempted to plumb the depths of the human experience, or anything like that. It was simply, in my opinion, a good piece of music.</p> <p>The work begins with a brisk capriccio movement, followed by a pastorale and a final frenzy of a danza. If Hungarian music were to be scored for the big screen, this is how it would sound. The viola section features quite prominently throughout; every good work should have at least one big viola moment and this had several.</p> <p>I don't think you need to be able to give an exact analytical answer as to why a work impresses itself upon you. It doesn't have to be some academically sophisticated work; I find myself every bit as engaged by beautiful folk music as I do by something like Berg's Violin Concerto (incidentally, one of my favourites, just in case you wanted to know). Perhaps that is the great power of music - the power to without reason be able to create a connection on some wordless level with the listener/performer. I think that is the difference between music that will stand the test of time and that which falls by the wayside.</p> <p>My father loves old films. The big biblical epics of the 1950s and 1960s like King Of Kings and Ben-Hur are right up his street. He can't read music, but loves it and has always commented on how great the scores in these old epics are. It turns out that Miklós Rósza was the composer of these scores, among many, many others.</p> <p>Rósza's music seems to be having a bit of a renaissance at the moment, with a new generation rediscovering not just his film scores, but also his other works. British violist Lawrence Power recorded Rósza's Viola Concerto in 2010 for the Hyperion label and his string quartets and trio have been creeping up on recital programmes with growing frequency over the last few years too. I for one will definitely be investigating further.</p> <p>This week the <a href="/now/">BBC National Orchestra of Wales</a> will perform music from Doctor Who in two very special concerts. On Friday, our Sacher Series collaboration with Cardiff University continues. The programme for Friday's concert is really exciting. Music by Martin, Lutosławski, Stravinsky and Honegger may be a little outside of your comfort zones, but come along - you never know which work could surprise you.</p> <p><em>For tickets to Friday's Sacher Perspectives concert, at BBC Hoddinott Hall, Cardiff, call the orchestra's Audience Line on 0800 052 1812.</em></p> </div> </div> <div class="post" id="entry-304798"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/adam-walton-playlist-show-10-march-2012.shtml" rel="bookmark">Adam Walton playlist and show info: Saturday 10 March 2012</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/adam-walton-playlist-show-10-march-2012.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fadam-walton-playlist-show-10-march-2012.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/radio/" rel="tag" title="">Radio</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/"> <img class="author_pic" src="/staticarchive/3bde69c6c515d965a6ce9d0da7125103634ad6b8.png" width="50" alt="Adam Walton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/">Adam Walton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-12T12:48:01+00:00">12:48 UK time, Monday, 12 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>This week's show is now available <a href="/iplayer/episode/b01d98cj/Adam_Walton_10_03_2012/">via the BBC iPlayer</a>. Please visit the link any time between now and the start of the next programme.</p> <p>This show - a no-holds-barred celebration of Welsh music in all its multifold shapes and forms - is a democratic affair. Maybe 'benevolent dictatorship' would be more accurate. What I'm trying to say is this: there are no headliners or scene stealers, each and every one of the 40-ish pieces of music exists in its own temporal zone of wonder. Man.</p> <p>In other words, we don't necessarily have an exclusive session or probing in depth interview with a 'star' to trumpet here, so I'll pretend that that is down to a philosophical stance rather than a lack of pull or forward planning.</p> <p>What you'll hear - should you click that iPlayer link - is three hours of ace, mostly Welsh music. There are wonderful new tracks from Future Of The Left, Doc Daneeka &amp; Abigail Wyles and The School (I'm throwing a street party to celebrate their return later this afternoon, should you wish to come over... bring pop - obviously - and cupcakes) - and we have debut plays for Cousins, Magpie Instinct, Tender Prey, Televisor, Shrunken Heads, Dementio 13, Seconds From Ruin, Simon Love's Cock &amp; Balls, Brother Cubs and Rachel Rimmer.</p> <p>And that's what fires me, the search for fascinating new Welsh artists, people whose creative visions I have never encountered hitherto. Man. It's the credo of the show for 2012: to not rest on its substantial laurels, relying on the ace that we already know about, but to seek new ace to interweave amongst the old ace.</p> <p> To that end, if you have any ace/new releases/demos/recommendations/observations/new similes, please address them to <a href="mailto:themysterytour@gmail.com">themysterytour@gmail.com</a>.</p> <p>I prefer to receive demo submissions directly, as a high quality mp3 or download link, please.</p> <p>Elsewhere in this week's show, Alan Holmes reminds us of the gnarly smarts of APV, and Ben Hayes shares a track off a Patto album that'd cost you £200 in't' shops.</p> <p>TWO HUNDRED POUNDS! (no pence).</p> <p>Have an excellent, groove-filled, good vibe attuned week.</p> <p>Man.</p> <p><a href="https://juliemurphymusic.com">JULIE MURPHY</a> - 'Piano Abstract' <br>Pembrokeshire</p> <p><a href="https://juliemurphymusic.com">JULIE MURPHY</a> - 'The Fountain' <br>Pembrokeshire</p> <p><a href="https://seemonkeydomonkey.com/artists/method">METHOD, THE</a> - 'Art Gallery' <br>Cardiff</p> <p><a href="https://en.wikipedia.org/wiki/60ft_Dolls">60FT DOLLS</a> - 'Yellow Candles' <br>Newport</p> <p><a href="https://skindred.net">SKINDRED</a> - 'Cut Dem' <br>Newport</p> <p><a href="https://futureoftheleft.net">FUTURE OF THE LEFT</a> - 'Camp Cappuccino ( Radio Edit )' <br>Cardiff</p> <p><a href="https://goldenfable.com">GOLDEN FABLE</a> - 'Motorcycle Emptiness' <br>Ewloe</p> <p><a href="https://myspace.com/cutribbons">CUT RIBBONS</a> - 'Walking On Wires' <br>Llanelli</p> <p><a href="https://soundcloud.com/georgiaruth">GEORGIA RUTH</a> - 'Bones ( Mastered Ep Version )' <br>Aberystwyth / Cardiff</p> <p><a href="https://shyandthefight.net">SHY AND THE FIGHT</a> - 'Breaks' <br>Chester / Llangollen</p> <p><a href="https://theschoolband.co.uk">SCHOOL, THE</a> - 'Never Thought I'd See The Day' <br>Cardiff</p> <p><a href="https://centralslate.omnia.co.uk">ALAN HOLMES</a> - 'Spoken Contribution' <br>Bangor</p> <p>A. P. V. - 'Could You Care' <br>Anglesey</p> <p><a href="https://euroschilds.com">COUSINS</a> - 'Walk With The Dark' <br>Pembrokeshire / Aberystwyth</p> <p><a href="https://soundcloud.com/samairey">SAM AIREY</a> - 'To All The Pieces Of The Puzzle' <br>Anglesey</p> <p><a href="https://soundcloud.com/quicksails">QUICKSAILS</a> - 'Empty And Full' <br>Chicago, Welsh Label</p> <p><a href="https://soundcloud.com/falconlake">FALCON LAKE</a> - 'Shores' <br>Newport / Cardiff</p> <p><a href="https://soundcloud.com/the-revolutionary-spirit">REVOLUTIONARY SPIRIT, THE</a> - 'Last Memories' <br>Wrexham</p> <p><a href="https://magpieinstinct.bandcamp.com">MAGPIE INSTINCT</a> - 'Goalposts' <br>Cardiff</p> <p><a href="https://mrhuw.com">MR HUW</a> - 'Y Ferch Dryloyw' <br>Caernarfon</p> <p><a href="https://facebook.com/fallsband">FALLS</a> - 'Naughty Strawberry' <br>Deeside</p> <p>TENDER PREY - 'Bug Blood' <br>Cardiff</p> <p>SUE DENIM - 'Brewster Mccloud' <br>Bangor</p> <p><a href="https://associatedminds.com">METABEATS</a> - 'Eyeseeyou ( Featuring Dubbledge )' <br>Cardiff</p> <p><a href="https://tenthousandyen.com">DOC DANEEKA AND ABIGAIL WYLES</a> - 'Toby Jug' <br>Cardiff</p> <p><a href="https://soundcloud.com/castormusic">CASTOR</a> - 'Through Light' <br>Prestatyn</p> <p><a href="https://soundcloud.com/televisormusic">TELEVISOR</a> - 'Stand Up' <br>Holyhead</p> <p><a href="https://soundcloud.com/shrunken-head">SHRUNKEN HEADS</a> - 'Through The Roof' <br>Chepstow</p> <p><a href="https://dementio13.com">DEMENTIO 13</a> - 'Crash Street' <br>Cardiff</p> <p><a href="https://agroupcalledknickers.tumblr.com">KNICKERS</a> - 'Darling' <br>London / Cardiff Distribution</p> <p><a href="https://littlearrow.co.uk">LITTLE ARROW</a> - 'Our Taste Is Violence' <br>Cardiff</p> <p>SECONDS FROM RUIN - 'Distant Light' <br>Valleys</p> <p>SIMON LOVE'S COCK &amp; BALLS - 'It Seemed Like A Good Idea At The Time' <br>Cardiff / London</p> <p><a href="https://facebook.com/BrotherCubs">BROTHER CUBS</a> - 'Best Times' <br>Llantwit Major</p> <p><a href="https://bearbeatsband.com">BEAR BEATS BAND, THE</a> - 'Sunrise' <br>Ruthin</p> <p><a href="https://soundcloud.com/soundhog">BEN HAYES</a> - 'Spoken Contribution' <br>Ruthin</p> <p><a href="https://en.wikipedia.org/wiki/Patto">PATTO</a> - 'The Man' <br>London</p> <p><a href="https://facebook.com/rachelrimmermusic">RACHEL RIMMER</a> - 'The Waves' <br>Swansea</p> <p><a href="https://euroschilds.com">COUSINS</a> - 'Look Good For The City' <br>Pembrokeshire / Aberystwyth</p> </div> </div> <div class="post" id="entry-304652"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/adam-walton-playlist-show-3-march-2012.shtml" rel="bookmark">Adam Walton playlist and show info: Saturday 3 March 2012</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/adam-walton-playlist-show-3-march-2012.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fadam-walton-playlist-show-3-march-2012.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/radio/" rel="tag" title="">Radio</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/"> <img class="author_pic" src="/staticarchive/3bde69c6c515d965a6ce9d0da7125103634ad6b8.png" width="50" alt="Adam Walton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/">Adam Walton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-07T14:45:06+00:00">14:45 UK time, Wednesday, 7 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>This week's show is <a href="/iplayer/episode/b01cz11x/Adam_Walton_03_03_2012/">now available via the BBC iPlayer</a>. Please visit the link any time between now and the start of the next programme.</p> <p>This week's show is veritably busting at the seams with fascinating new (mostly) Welsh sounds.</p> <p>For example, there is new Future Of The Left! A track from their forthcoming third album The Plot Against Common Sense, due in all good record shops on 28 May.</p> <p>There is new The School! A freely downloadable track (hear the show for full details - I'm not going to give *everything* away, here) that will appear as the B-Side on their upcoming, new single for Elefant Records (which we'll play this coming Saturday night).</p> <p>There are first time plays for The Dirty Dishes, That Kid Bishop, Naomi Shalom, the Wobbly Hearts, Out of the Woods and Benfro.</p> <p>Please send new releases/demos/gig info and any other correspondence to <a href="mailto:themysterytour@gmail.com">themysterytour@gmail.com</a>. High quality mp3s/download links much preferred, thank you.</p> <p>Elsewhere, Huw Pooh plays us something Sabbath-esque from 1972. The band are Eugene Carman, and we know nothing whatsoever about them. If you can fill in the gaps, please mail me at the address above.</p> <p>Lara Catrin translates something proper pop and ace from Mold's Diffiniad.</p> <p>Ben Hayes gets all analogue-y eared over the Human League's debut release.</p> <p>If you also suffer from occasional Dewy Ear, this programme offers a full support programme every Saturday night from 10pm. See you next week. Try not to ooze on the carpet. It's new.</p> <p><a href="https://manwithoutcountry.com">MAN WITHOUT COUNTRY</a> - 'Puppets' <br>Cardiff</p> <p><a href="https://facebook.com/pages/CrashDisco/10150091457360262">CRASH DISCO</a> - 'Alice' <br>Bangor</p> <p><a href="https://myspace.com/cutribbons">CUT RIBBONS</a> - 'Paper Shields' <br>Llanelli</p> <p><a href="https://facebook.com/solutionsmusic">SOLUTIONS</a> - 'Whatever Keeps You Alive' <br>Cardiff</p> <p><a href="https://futureoftheleft.net">FUTURE OF THE LEFT</a> - 'Cosmo's Ladder' <br>Cardiff</p> <p><a href="https://mowbird.bandcamp.com">MOWBIRD</a> - 'Aufladen! Aufladen!' <br>Wrexham</p> <p>HUW WILLIAMS - 'Spoken Contribution' <br>Swansea</p> <p>EUGENE CARMAN - 'Mountain Rock' <br>?</p> <p><a href="https://facebook.com/thedirtydishes">DIRTY DISHES, THE</a> - 'Deer In Headlights' <br>Boston, U. S.</p> <p>UNDERSOUND - 'Meet Me In My Shadow' <br>Caerphilly</p> <p><a href="https://unsigned.com/thatkidbishop">THAT KID BISHOP</a> - 'Smiles And Crys' <br>Cardiff</p> <p>NAOMI SHALOM - 'Incidentally Thinking Of You' <br>Flint</p> <p><a href="https://soundcloud.com/the-wobbly-hearts">WOBBLY HEARTS, THE</a> - 'Anityme' <br>Rhyl/Abergele/Liverpool</p> <p><a href="https://outofthewoodss.weebly.com">OUT OF THE WOODS</a> - 'Calling Out Your Name' <br>Swansea</p> <p><a href="https://toyhorsesmusic.com">TOY HORSES</a> - 'Play What You Want' <br>Cardiff</p> <p><a href="https://forrestsouthwales.tumblr.com">FORREST</a> - 'Five To Nine' <br>Neath</p> <p><a href="https://soundcloud.com/ed-t">ED!T</a> - 'Front Line's Watching' <br>Tenby</p> <p><a href="https://soundcloud.com/darkhousefam">DARKHOUSE FAMILY, THE</a> - 'Take On The World Feat. Om'mas Keith' <br>Cardiff/Barry</p> <p><a href="https://hailtheplanes.bandcamp.com">HAIL THE PLANES</a> - 'Brother [ Zwolf's Waveform Never Lies Mix ]' <br>Unknown.</p> <p><a href="https://soundcloud.com/samairey">SAM AIREY</a> - 'The Unlocking' <br>Anglesey</p> <p><a href="https://facebook.com/pages/The-Broken-Vinyl-Club/53574162846">BROKEN VINYL CLUB, THE</a> - 'Diamonds In Her Eyes' <br>Cardiff</p> <p><a href="https://revoker.net">REVOKER</a> - 'Psychoville' <br>Rhymney Valley</p> <p><a href="https://en.wikipedia.org/wiki/Jonathan_Richman">JONATHAN RICHMAN</a> - 'I Was Dancing In The Lesbian Bar' <br>Natick, U. S.</p> <p><a href="https://theschoolband.co.uk">SCHOOL, THE</a> - 'When He Kisses Me' <br>Cardiff</p> <p><a href="https://agroupcalledknickers.tumblr.com">KNICKERS</a> - 'My Baby's Just A Baby ( E. P. Version )' <br>London/Cardiff Distribution</p> <p><a href="https://thefilthysix.com">FILTHY SIX, THE</a> - 'Knockout' <br>Pentrych/London</p> <p><a href="https://associatedminds.com">METABEATS</a> - 'Eyeseeyou ( Featuring Dubbledge )' <br>Cardiff</p> <p>SUE DENIM - 'I'm Not An Island' <br>Bangor</p> <p><a href="https://myspace.com/lizwreck">LIZ WRECK</a> - 'Affe' <br>Cardiff/Perth ( Australia )</p> <p><a href="https://soundcloud.com/benfro">BENFRO</a> - 'Fruits' <br>Pembrokeshire</p> <p><a href="https://soundcloud.com/onelookhooked">BIGSTICK</a> - 'Data' <br>Cardiff</p> <p><a href="https://inchapters.com">PEN PASTWN</a> - 'Never Say Goodbye' <br>Cardiff</p> <p><a href="https://littlearrow.co.uk">LITTLE ARROW</a> - 'Our Taste Is Violence' <br>Cardiff</p> <p><a href="https://totemterrors.bandcamp.com">TOTEM TERRORS</a> - 'Beaux Esprits' <br>Cardiff</p> <p>LARA CATRIN - 'Spoken Contribution' <br>Bangor/Cardiff</p> <p>DIFFINIAD - 'Sharon A Fi' <br>Mold</p> <p><a href="https://blatnova.co.uk">BLATNOVA</a> - 'Big Bad Poem' <br>Pembrokeshire</p> <p><a href="https://warmdata.bandcamp.com">CONCRETEDOG</a> - 'Interviewing The Acid Typewriter' <br>Bethesda</p> <p><a href="https://soundcloud.com/samairey">SAM AIREY</a> - 'To All The Pieces Of The Puzzle' <br>Anglesey</p> <p><a href="https://goldenfable.com">GOLDEN FABLE</a> - 'Motorcycle Emptiness' <br>Ewloe</p> <p><a href="https://soundcloud.com/soundhog">BEN HAYES</a> - 'Spoken Contribution' <br>Ruthin</p> <p>HUMAN LEAGUE - 'Being Boiled' <br>Sheffield</p> <p><a href="https://soundcloud.com/georgiaruth">GEORGIA RUTH</a> - 'Anna' <br>Aberystwyth/Cardiff</p> </div> </div> <div class="post" id="entry-304147"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70.shtml" rel="bookmark">John Cale at 70</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjohn-cale-at-70.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-07T09:10:00+00:00">09:10 UK time, Wednesday, 7 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Core member of The Velvet Underground; producer of dozens of other artists; Welsh music legend. <a href="/wales/music/sites/john-cale/">John Cale</a> is 70 this Friday (9 March) and we're celebrating with interviews and clips from the BBC archive.</p> <table style="border: none;" align="center"><tbody><tr><td style="width: 150px; padding: 5px;"><div class="imgCaptionCenter" style="text-align: center; display: block; "><a href="/blogs/walesmusic/2012/03/john-cale-at-70-interview-2005.shtml"><img alt="John Cale" src="/staticarchive/801efb86d61fdc42362456f18ab65aae69f24d13.jpg" width="150" height="84" class="mt-image-center" style="margin: 0 auto 5px;"></a></div> <p><a href="/blogs/walesmusic/2012/03/john-cale-at-70-interview-2005.shtml">Interview (2005)</a></p> </td> <td style="width: 150px; padding: 5px;"><div class="imgCaptionCenter" style="text-align: center; display: block; "><a href="/blogs/walesmusic/2012/03/john-cale-at-70-interview-2010.shtml"><img alt="John Cale" src="/staticarchive/7de8d776e3392c5aa08c0bffae1c05bbd71db007.jpg" width="150" height="84" class="mt-image-center" style="margin: 0 auto 5px;"></a></div> <p><a href="/blogs/walesmusic/2012/03/john-cale-at-70-interview-2010.shtml">Interview (2010)</a></p> </td> <td style="width: 150px; padding: 5px;"><div class="imgCaptionCenter" style="text-align: center; display: block; "><a href="/blogs/walesmusic/2012/03/john-cale-at-70-desert-island-discs.shtml"><img alt="John Cale" src="/staticarchive/8bf2e3e7a2954aa8c1ef023cacec114299d46dc4.jpg" width="150" height="84" class="mt-image-center" style="margin: 0 auto 5px;"></a></div> <p><a href="/blogs/walesmusic/2012/03/john-cale-at-70-desert-island-discs.shtml">Desert Island Discs</a></p> </td> </tr><tr><td style="width: 150px; padding: 5px;"><div class="imgCaptionCenter" style="text-align: center; display: block; "><a href="/blogs/walesmusic/2012/03/john-cale-at-70-songwriting.shtml"><img alt="John Cale" src="/staticarchive/a800fbcd6660083b5022b3d40a47f372213ccd71.jpg" width="150" height="84" class="mt-image-center" style="margin: 0 auto 5px;"></a></div> <p><a href="/blogs/walesmusic/2012/03/john-cale-at-70-songwriting.shtml">Cale on songwriting</a></p> </td> <td style="width: 150px; padding: 5px;"><div class="imgCaptionCenter" style="text-align: center; display: block; "><a href="/blogs/walesmusic/2012/03/john-cale-at-70-cale-catatonia.shtml"><img alt="John Cale" src="/staticarchive/131d99e12b8bdfe06a49b457126dc7f63c629155.jpg" width="150" height="84" class="mt-image-center" style="margin: 0 auto 5px;"></a></div> <p><a href="/blogs/walesmusic/2012/03/john-cale-at-70-cale-catatonia.shtml">Cale and Catatonia</a></p> </td> <td style="width: 150px; padding: 5px;"><div class="imgCaptionCenter" style="text-align: center; display: block; "><a href="/blogs/walesmusic/2012/03/john-cale-at-70-cale-squeeze.shtml"><img alt="John Cale and Squeeze" src="/staticarchive/b0791b2632c6674ec4815d2e1d8a97a176506f1f.jpg" width="150" height="84" class="mt-image-center" style="margin: 0 auto 5px;"></a></div> <p><a href="/blogs/walesmusic/2012/03/john-cale-at-70-cale-squeeze.shtml">Cale and Squeeze</a></p> </td> </tr><tr><td style="width: 150px; padding: 5px;"><div class="imgCaptionCenter" style="text-align: center; display: block; "><a href="/blogs/walesmusic/2012/03/john-cale-at-70-heroin-wales-and-me.shtml"><img alt="John Cale" src="/staticarchive/2e89a94f72cd4db7a6ff6a2c17e5094afa7aca97.jpg" width="150" height="84" class="mt-image-center" style="margin: 0 auto 5px;"></a></div> <p><a href="/blogs/walesmusic/2012/03/john-cale-at-70-heroin-wales-and-me.shtml">Heroin, Wales And Me</a></p> </td> <td style="width: 150px; padding: 5px;"> <div class="imgCaptionCenter" style="text-align: center; display: block; "><a href="/blogs/walesmusic/2012/03/john-cale-at-70-culture-show.shtml"> <img alt="John Cale" src="/staticarchive/e39173b7bcbc1943f0377d81611bf6f6f0156cf5.jpg" width="150" height="84" class="mt-image-center" style="margin: 0 auto 5px;"></a></div> <p><a href="/blogs/walesmusic/2012/03/john-cale-at-70-culture-show.shtml">The Culture Show</a></p> </td> </tr></tbody></table><p>Born on 9 March 1942 in Garnant, Carmarthenshire, John Cale was the son of a miner. His talent with the viola saw him achieve in conventional musical academia before travelling to New York in the early 1960s.</p> <p>He thrived in the verdant arts scene in New York, and caught the experimental wave of both music and performing arts. It was his partnership with Lou Reed and Sterling Morrison in The Velvet Underground that saw his greatest early recognition.</p> <p>Following the break-up of the Velvets, Cale wrestled with <a href="/blogs/walesmusic/2012/03/john-cale-at-70-heroin-wales-and-me.shtml">drink and drugs</a> for many years, but he was able to produce some classic albums for the likes of Patti Smith, The Stooges and <a href="/blogs/walesmusic/2012/03/john-cale-at-70-cale-squeeze.shtml">Squeeze</a>.</p> <p>He has also released classic solo albums including Paris 1919, Helen Of Troy and Fear. In 2000 he worked with the cream of Welsh talent for Marc Evans' film Beautiful Mistake. Among his collaborators on the project were <a href="/blogs/walesmusic/2012/03/john-cale-at-70-cale-catatonia.shtml">Catatonia</a>.</p> <p>Cale shows no sign of easing up in the 21st century; he maintains he's not yet achieved his ambitions. The world's coolest septuagenarian? It's an easy case to make.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-304402"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-culture-show.shtml" rel="bookmark">John Cale at 70: The Culture Show </a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-culture-show.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjohn-cale-at-70-culture-show.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/interview/" rel="tag" title="">Interviews</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-07T09:00:00+00:00">09:00 UK time, Wednesday, 7 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>As we celebrate the 70th birthday of <a href="/wales/music/sites/john-cale/">John Cale</a>, here's a piece of video from the BBC archive.</p> <p>Miranda Sawyer interviewed Cale for <a href="/programmes/b006t6c5">The Culture Show</a> in 2009. The in-depth discussion took in his life in America, his relationship with his Velvet Underground bandmates and his ambitions.</p> <p>Watch the clip here:</p> <script type="text/javascript"> gloader.load(["glow", "1"], { async: true, onLoad: function (glow) { glow.ready(function () { var emp = new embeddedMedia.Player(); emp.setWidth("512"); emp.setHeight("288"); emp.setDomId("emp9d"); emp.setPlaylist("https://"+location.host+"/iplayer/playlist/p00pk2pz"); emp.write(); }); } }); </script><div id="emp9d" class="player"> <p>In order to see this content you need to have both <a href="https://www.bbc.co.uk/webwise/askbruce/articles/browse/java_1.shtml" title="BBC Webwise article about enabling javascript">Javascript</a> enabled and <a href="https://www.bbc.co.uk/webwise/askbruce/articles/download/howdoidownloadflashplayer_1.shtml" title="BBC Webwise article about downloading">Flash</a> installed. Visit <a href="https://www.bbc.co.uk/webwise/">BBC Webwise</a> for full instructions</p> </div> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-304195"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-heroin-wales-and-me.shtml" rel="bookmark">John Cale at 70: Heroin, Wales and Me</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-heroin-wales-and-me.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjohn-cale-at-70-heroin-wales-and-me.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/interview/" rel="tag" title="">Interviews</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-07T09:00:00+00:00">09:00 UK time, Wednesday, 7 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>There's always been a dark side to the career of <a href="/wales/music/sites/john-cale/">John Cale</a>, whose 70th birthday we celebrate this Friday (9 March).</p> <p>Going to America, founding The Velvet Underground and being part of the Factory, Cale and his bandmates were around drugs all the time. He indulged, as he freely admits.</p> <p>In this video from the BBC archive, Cale talks about his own life and drugs, and about the situation his home country finds itself in:</p> <script type="text/javascript"> gloader.load(["glow", "1"], { async: true, onLoad: function (glow) { glow.ready(function () { var emp = new embeddedMedia.Player(); emp.setWidth("512"); emp.setHeight("288"); emp.setDomId("emp9c"); emp.setPlaylist("https://"+location.host+"/iplayer/playlist/p00kvl5c"); emp.write(); }); } }); </script><div id="emp9c" class="player"> <p>In order to see this content you need to have both <a href="https://www.bbc.co.uk/webwise/askbruce/articles/browse/java_1.shtml" title="BBC Webwise article about enabling javascript">Javascript</a> enabled and <a href="https://www.bbc.co.uk/webwise/askbruce/articles/download/howdoidownloadflashplayer_1.shtml" title="BBC Webwise article about downloading">Flash</a> installed. Visit <a href="https://www.bbc.co.uk/webwise/">BBC Webwise</a> for full instructions</p> </div> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-304141"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-interview-2010.shtml" rel="bookmark">John Cale at 70: interview (2010)</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-interview-2010.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjohn-cale-at-70-interview-2010.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/interview/" rel="tag" title="">Interviews</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-07T09:00:00+00:00">09:00 UK time, Wednesday, 7 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>In <a href="https://news.bbc.co.uk/1/hi/entertainment/8537649.stm">February 2010</a> BBC 6 Music talked to <a href="/wales/music/sites/john-cale/">John Cale</a> about performing his classic 1972 album Paris 1919. Here are excerpts from that interview, in which he discusses both the record, his former bandmates and the notion of the 'album'.</p> <p><strong>This was the last record you wrote before you left LA to return to the UK.</strong></p> <p>Yes, it was in 1972, the height of the Cold War, and that's where the title came from. But it really is an album of nostalgia about everything I liked about Europe.</p> <p><strong>So when you came back to the UK after that, is it true the only music you brought back with you was a box of Beach Boys records?</strong></p> <p>Yes, actually. I had a basement flat for a while in Earls Court and I just put the Beach Boys on. From being in LA and having access to the Beach Boys all the time, I came back here and I'd just zone out in my dim little flat.</p> <p><strong>Some of your older work, such as with The Velvet Underground, has been revisited a lot. Do you pay attention to those reissues and books?</strong></p> <p>I don't. Whatever The Velvet Underground did they've done, and it's in the past. I respect that people admire what we did, that's gratifying, but I'm in such a different place with what I think songwriting is these days.</p> <p><strong>There have been numerous high profile reunions of popular bands recently. Have you been asked to do that with the Velvet Underground?</strong></p> <p>Yes. It's not something that I can see happening on the basis of the past. Anyone who wants to reform the Velvet Underground for a series of concerts, to make some money, I understand that, but you can't do that. We don't have Sterling [Morrison] any more. If I said that was something I was intrigued by, people would think I was cynical.</p> <p><strong>Are you in touch with your former bandmates?</strong></p> <p>Yes. We do business. I haven't spoken to Lou in a long time, but we're in touch because of business. There's no communal effort to enjoy each other's company any more.</p> <p><strong>What's next for you?</strong></p> <p>When I'm finished with this series of concerts in July I'll go back into the studio and finish these songs. I have 28 songs at the moment, but I've got to finish them. I haven't figured out how to release them, that's a bit of a conundrum.</p> <p><strong>Do you still believe in the album as a concept?</strong></p> <p>I'm not sure that I do. Todd Rundgren gave a concert in New York the other day and immediately after you could get a memory stick of what you'd just experienced. I thought that was a very shrewd idea and wondered if there are any variations of that I could do.</p> <p><a href="https://news.bbc.co.uk/1/hi/entertainment/8537649.stm">Read the full version of this interview on BBC News</a>.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-304138"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-cale-squeeze.shtml" rel="bookmark">John Cale at 70: Cale and Squeeze</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-cale-squeeze.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjohn-cale-at-70-cale-squeeze.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/interview/" rel="tag" title="">Interviews</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-07T09:00:00+00:00">09:00 UK time, Wednesday, 7 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>In 1977 <a href="/wales/music/sites/john-cale/">John Cale</a>, who celebrates his 70th birthday on Friday 9 March, produced the first EP by a London new wave/pop group called Squeeze. Packet Of Three was well received and they went on to record their first album the next year with Cale.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="John Cale with Squeeze" src="/staticarchive/5866a5c10c2e391766ac954a91b739ca52e5a4dc.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">John Cale with Squeeze. Photo: Jill Furmanovsky/<a href="https://www.rockarchive.com">Rockarchive.com</a></p></div> <p>I talked to the band's main songwriting duo, Chris Difford and Glenn Tilbrook, about their time with the Welsh maestro.</p> <p><strong>What were the circumstances of bringing John on board to produce Packet Of Three?</strong></p> <p>Chris Difford: "Our manager Miles Copeland represented John in the UK together with his brother Ian, his live agent. Miles came up with the idea... I was scared!"</p> <p>Glenn Tilbrook: "Miles had got John to do a job lot of production for him, including The Police [featuring Miles Copeland's brother Stewart on drums], Squeeze and The Cortinas. When we went in to do Packet Of Three John was fantastic to work with. Truly, to an 18-year-old he was a bizarre, imposing but humorous figure."</p> <p><strong>What did John bring to the recording?</strong> </p><p>GT: "He made the band tougher than we were and we liked that. When it came to doing the LP he was the natural choice."</p> <p>CD: John was dangerous! He took us from being young boys nervous about recording to young lads even more nervous about recording. His ability to try things was just what we needed and often we found ourselves experimenting with arrangements, like kids in a science class. At the time I scratched my head in fear, but looking back I'm so pleased he made us do things that were way out of our depth."</p> <p>GT: "I remember he threw out all the songs we had and insisted we wrote new ones! He gave us titles and things to write about. He suggested that the LP title be Gay Guys and told Chris to write a song about a muscle man. The album we made was more a reflection of John than us to be fair.</p> <p>"But the memory I have from that time was that John was an absolute genius when he got his teeth into something. He would come up with ideas and be very inspired and inspiring.</p> <p>"He did have us, one day, all day, playing Amazing Grace over and over again. Why? He very rarely gave reasons for anything. I think he saw what Squeeze were - a musicianly pop band - and thought we were capable of something different."</p> <p><strong>How did you find him personally?</strong></p> <p>CD: "John was warm and funny, often dry-wited and distant. Inspiring and totally engaging. Fear is a man's best friend, it seems."</p> <p>GT: "I remember he was obsessed with the news. He'd always read the newspaper, front to back. every day. And he struck me as being slightly paranoid; a conspiracy theorist. Subsequently he was proved right!</p> <p>"He certainly had a great, but very dry, sense of humour."</p> <p><strong>Listening back the first album, what can you pick out that is discernably 'John'?</strong></p> <p>CD: "Most of the album reminds me of John. It was a wonderful time; I just wish I could remember more. I'm sure he would say the same thing. He is the dark horse I learned later to become myself."</p> <p>GT: "For me, at the beginning of the song The Call, there's a bell ringing. The engineer John Wood, who'd worked with John for years, was shouting out 'Bring out yer dead!' at John's request. That's John Cale in a nutshell."</p> <p><strong>Were there any funny or unusual things which happened during the recording?</strong> GT: "There's only one story that really sticks out. One of the times he first saw us, he came to a rehearsal. He fell asleep when we were playing; he may have had a bit to drink. We drew on his face while he was a asleep. We drew an, erm, 'lady place'. We were young!</p> <p>"Anyway, we woke him up and actually arranged to travel in a cab with him to his hotel. We watched while he went to the hotel reception, still with drawing on his face."</p> <p>CD: "There were many things that made me laugh, and unusual things were everyday events. I'm afraid I can't reveal any of it as it would infringe on the memory and the possible friendship we might have in the future. I love his music and have all of the solo work. I think I knew his humour before I met him, before I left school; it was terrifying."</p> </div> </div> <div class="post" id="entry-304136"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-cale-catatonia.shtml" rel="bookmark">John Cale at 70: Cale and Catatonia</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-cale-catatonia.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjohn-cale-at-70-cale-catatonia.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/interview/" rel="tag" title="">Interviews</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-07T09:00:00+00:00">09:00 UK time, Wednesday, 7 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>In 1999 the cream of Welsh musical talent gathered in Cardiff to work with <a href="/wales/music/sites/jonh-cale/">John Cale</a> on a performance film called <a href="https://en.wikipedia.org/wiki/Beautiful_Mistake_%28film%29">Beautiful Mistake</a>, directed by Marc Evans.</p> <p>One of the acts working with Cale was <a href="/wales/music/sites/catatonia/">Catatonia</a>. We caught up with Catatonia guitarist Owen Powell to talk about his experiences of working with Cale, who celebrates his 70th birthday on 9 March.</p> <blockquote><p>"We were asked by film director Marc Evans to work with John Cale on two songs for the film Beautiful Mistake in 1999. We recorded Whispering Room, one of our songs written specifically for the project, and his song Close Watch from his album Helen Of Troy. We rehearsed in The Point, formerly known as St Stephens Church, and then moved down the road to record on set at The Coal Exchange.</p> <p>"From the very start John was very polite and friendly. He doesn't say a great deal but he seemed to like our song and the version of Close Watch that we had routined before meeting him. He was very easy going and seemed to enjoy watching us laugh, swear and argue our way through the process. It struck me that he doesn't like to mess with people's method of working. That's their business. When the red light goes on to record, everybody does their bit.</p> <p>"We recorded Whispering Room live and at the end of the first take we went to the mobile truck to listen to the playback. As I put my guitar down he turned to me and said quietly, 'It fell asleep a bit in the middle'. He didn't come to listen to the track, preferring to read his book on set. Sure enough as we listened to the track it did indeed 'fall asleep a bit in the middle'. Take two was the one. I knew it was the one because he said 'That's the one'.</p> <p>"'You coming to have a listen John?'</p> <p>"'Don't need to, that's the one'. I suspect that his wonderful instinct comes from years of experience.</p> <p>"We recorded Close Watch in one take. Cerys sang the verses and he joined in for the choruses. He smiled. We were happy with it. It's very easy to make a great song sound great.</p> <p>"He was a real gent. When I ran through the chords to Whispering Room with him, there was one chord that I didn't know the name of. He seemed baffled that I'd written a song and didn't know what one of the chords was. I held up my guitar while playing the chord to show him. He just gave me a curious look and we carried on."</p></blockquote> </div> </div> <div class="post" id="entry-304135"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-interview-2005.shtml" rel="bookmark">John Cale at 70: interview (2005)</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-interview-2005.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjohn-cale-at-70-interview-2005.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/interview/" rel="tag" title="">Interviews</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-07T09:00:00+00:00">09:00 UK time, Wednesday, 7 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>In 2005 BBC Wales Music contributor Louis Pattison talked to <a href="/wales/music/sites/john-cale/">John Cale</a> about Iggy Pop, tonality and <em>that</em> chicken. Here we republish that in-depth interview.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="John Cale playing at Glastonbury" src="/staticarchive/4eacfe6bc0051dcb42aff7b8f36cbfb2974e9fdf.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">John Cale playing at Glastonbury </p></div> <p><strong>You've been touring the new album, BlackAcetate. How's it been?</strong></p> <p>We didn't get further than Berlin this time, but in January, February, we'll get down to Spain and Greece. The audiences there are very close to being where they understand what to expect. That it's a rock 'n' roll band, and we're playing rock 'n' roll.</p> <p><strong>Herb Graham Jr was your main collaborator on the album - is he out with you?</strong></p> <p>No. He was the main engineer, and helped me with the grooves. He helped me really focus on getting myself in a different place to HoboSapiens. Hobo has grooves that were pretty rigid; I played all the grooves on this one, but we didn't go that one step further and quantise it. It's loose, it's kind of warmer.</p> <p><strong>Herb has worked with R&amp;B artists like Macy Gray. Did you have that in mind when you hired him?</strong></p> <p>That's one reason. He's a really big fusion jazz drummer, he does George Benson tours, so he's very sharp. He really turned out to be valuable when I started making my own grooves up, because he kept me away from doing stuff that had already been done.</p> <p><strong>A song like Brotherman is funky in a way you've not been known for.</strong></p> <p>I made that track and I had no idea what to do with it. I was rapping in the studio - well, not rapping, just making up jokes. And everyone started laughing so I kept going. There were other tracks that were much more hardcore funk than that, but I've still got to go back and finish them.</p>We worked September through to November, and then came back in January. We were knocking out three tracks a day, and getting closer to where I wanted to be, which turned out to be Hush. I think I deliberately just dropped the bass - in general I focused on using the drums more as a driving point behind writing the songs. <p><strong>Do you identify with the phrase 'it's not where you're from but where you're at'?</strong></p> <p>Yeah. Yeah! (Laughs). I've not heard that before, but it's great. I like what the future holds. I don't like thinking about the past.</p> <p><strong>One song that stood out was Perfect. On the surface, it's quite sweet, but the line "You're perfect for me, right now", lends it a slightly different edge - that all love is fleeting.</strong></p> <p>Yes. You'd better take it while you get it. I wouldn't even use the word love. Maybe 'Get along with'? It's not necessarily a love song. I never use the word, it's loaded. What love means to me is need. I think everybody has that need.</p> <p><strong>That's a very anti-romantic way of looking at things.</strong></p> <p.yes. but it very useful because clears the deck for a lot of other things. if you all loaded up on love haven got anywhere else to go.><p><strong>Do you return to Wales often?</strong></p> <p>I played in Cardiff on this tour, and it was really kind of wonderful. I had 16 members of my extended family there, I kind of wangled a reunion. I hadn't seen them in a long time, and to be honest I don't feel very comfortable in Wales - I feel kind of an oddity. But they were so busy networking with each other I didn't have to do the MC bit at all. It was like a playground!</p> <p><strong>You once recorded a live album at New York punk venue CBGBs, which is teetering on the edge of closure. Do you have good memories of the place?</strong></p> <p>I don't know what the story is lately. It seems to be that NYU owns most of the property down there. So between NYU and the mayor's office, maybe they think it's a landmark worth saving. It's probably going to end up a Gap store at any minute. But I do really think that CBGBs has a place in the city's history. I have warm, sweaty memories of the place. Really greasy, beer-sodden nights.</p> <p><strong>Your 1999 biography What's Welsh For Zen? was a critical and commercial success. Do you have any plans for a follow-up?</strong></p> <p>No, I'm writing a movie, about Mozart going to New York in the 60s. I've been reading so many novels, when I read some of Rushdie's stuff, it's just so daunting - there's all this energy and crackle. I don't want it to come out half-baked, I want a tempo and a pace for it. The movie is starting to shoot next summer - I've got all the dialogue mapped out, I've just got to sit down and do it.</p> <p><strong>Are you still learning music, in a classically-trained sense?</strong></p> <p>Not so much new instruments as new sensibilities. When you're working with an MPC sampler and you have to listen to Dr Dre and Pharrell Williams - Pharrell can turn around and make a beautiful R&amp;B song - they're so expert at all these different styles. I want to get lean and mean, keep it minimalist. I want to get to Drop It Like It's Hot. Did you hear EMI just bought the next 10 records by Pharrell? At $300,000 dollars per record.</p> <p><strong>The Neptunes have a very minimalist style - it's as much about what isn't there, as what is.</strong></p> <p>But it's more than that. People are sitting around in A&amp;R meeting going 'Is that a spraycan?', and Pharrell's using it as a rhythm device! I really love his ideas. I've been waiting for things like that to crawl across to the mainstream, but it's not there.</p> <p>I must admit, The first time I heard Can I Have It Like That, the break in it bothered me. But what I did love was the noise in the verse. There's this solid whining going on - like an engine noise. I used that on Hush on the new album - this buzz going on, this generator noise. But I took it off for the mix, because in the end it was buggering up the placement of the vocal.</p> <p><strong>You could almost draw this use of sound back to the tonal experiments you investigated with the Velvet Underground.</strong></p> <p>Absolutely. Tonality is the name of the game with those drones that Pharrell uses, because it's out of tune. The noise that's in the background, it's not in any key - it's that weird frequency that you get from engines. There's something thrilling about it.</p> <p><strong>Are you a nostalgic person? You seem willing to talk about the Velvets, if not enthused.</strong></p> <p>No, I don't care about it anymore. It's passé. That was a long time ago, and there's so many exciting things going on now that sound so much better.</p> <p><strong>Can you hear the influence of the Velvets in modern music?</strong></p> <p>Not at all, any more. In some of The Strokes I can hear it, but really that's more of the mental attitude of the musicians. I don't feel a lot of that rabid mentality any more. Repetition is generally what people are talking about.</p> <p><strong>You produced the début album by The Stooges, which has recently been remastered. Did you hear it?</strong></p> <p>Oh God, I have no idea why they bothered. There's really nothing distinguishing there that makes it worth a reissue. It's scraping the bottom of the barrel. I don't get it. But they have their reasons... they probably show me a bunch of figures and it makes sense. But as a musician, it means nothing to me.</p> <p><strong>Have you seen The Stooges live recently?</strong></p> <p>No, not for a long time. I saw Iggy at the Elvis Presley anniversary they had in Memphis. He hasn't changed a bit. It's nice to see a guy who just gets on with the music. And he's as leathery as ever.</p> <p><strong>Even in your 60s, you're showing no sign of slowing down.</strong></p> <p>I'm still looking for something. I'm getting closer, I think, but if someone moves the goalposts before the next album, I may have to follow them! I'm content with making records, but I don't want to be doing the same thing all the time.</p> <p><strong>Finally, there's a popular story about you cutting the head off a chicken onstage with a meat cleaver...</strong></p> <p>It was a really nice meat cleaver. I bought it in Berlin. So beautifully balanced. It didn't take very much. There was no sawing, you just lowered your arm and the weight of the cleaver carried it.</p> <p><strong>There's been no explanation why you had a chicken and a meat cleaver onstage together in the first place. Presumably it was premeditated?</strong></p> <p>Yeah. My band left over it. It turned out they were vegetarians. We got the chicken from a farm outside of Oxford. I told my tour manager to put it in a box and just come out with it. Of course, he had to grandstand it. He came out holding the bird, right up high, and that was it. We were screwed.</p> <p>The bird was on the floor of the van all the way to London. The band had all this time to ruminate over what was going to happen. They were like 'What are you going to do with the bird?' Nothing. 'Are you going to hurt it?' Of course not.</p> <p>Around that time everyone was gobbing on musicians. Tom Verlaine came over to play the Marquee, and he couldn't believe that people would drink beer and spit it at you as a form of adulation. So I took it a step further.</p> <p>I threw both the head and body out into the crowd. Everyone was kicking it away from them like it was contaminated. After the show, the band came up to me and said, You lied to us. You said you weren't going to hurt it. I said I didn't hurt it. It didn't feel a thing.</p> </p.yes.></div> </div> <div class="post" id="entry-304131"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-songwriting.shtml" rel="bookmark">John Cale at 70: songwriting </a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-songwriting.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjohn-cale-at-70-songwriting.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/television/" rel="tag" title="">Television</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/video/" rel="tag" title="">Video</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-07T09:00:00+00:00">09:00 UK time, Wednesday, 7 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p><a href="/wales/music/sites/john-cale/">John Cale</a> turns 70 on Friday 9 March. As part of our celebrations we're raiding the BBC archives for some great material from his career.</p> <p>Here's clip of Cale talking in 2003 about songwriting for <a href="/programmes/b006ylqn">BBC Four Sessions</a></p>. <script type="text/javascript"> gloader.load(["glow", "1"], { async: true, onLoad: function (glow) { glow.ready(function () { var emp = new embeddedMedia.Player(); emp.setWidth("512"); emp.setHeight("288"); emp.setDomId("emp9b"); emp.setPlaylist("https://"+location.host+"/iplayer/playlist/p00lvmpk"); emp.write(); }); } }); </script><div id="emp9b" class="player"> <p>In order to see this content you need to have both <a href="https://www.bbc.co.uk/webwise/askbruce/articles/browse/java_1.shtml" title="BBC Webwise article about enabling javascript">Javascript</a> enabled and <a href="https://www.bbc.co.uk/webwise/askbruce/articles/download/howdoidownloadflashplayer_1.shtml" title="BBC Webwise article about downloading">Flash</a> installed. Visit <a href="https://www.bbc.co.uk/webwise/">BBC Webwise</a> for full instructions</p> </div> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-304130"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-desert-island-discs.shtml" rel="bookmark">John Cale at 70: Desert Island Discs</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/john-cale-at-70-desert-island-discs.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fjohn-cale-at-70-desert-island-discs.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/radio/" rel="tag" title="">Radio</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-07T09:00:00+00:00">09:00 UK time, Wednesday, 7 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>As we celebrate the 70th birthday of <a href="/wales/music/sites/john-cale/">John Cale</a>, here's a piece of superb radio from the BBC archive.</p> <p>Listen here to Cale's appearance on <a href="/radio4/features/desert-island-discs/">Desert Island Discs</a> from 22 February 2004.</p> <script type="text/javascript"> gloader.load(["glow", "1"], { async: true, onLoad: function (glow) { glow.ready(function () { var emp = new embeddedMedia.Player(); emp.setWidth("512"); emp.setHeight("288"); emp.setDomId("emp9a"); emp.setPlaylist("https://"+location.host+"/iplayer/playlist/p00936tc"); emp.write(); }); } }); </script><div id="emp9a" class="player"> <p>In order to see this content you need to have both <a href="https://www.bbc.co.uk/webwise/askbruce/articles/browse/java_1.shtml" title="BBC Webwise article about enabling javascript">Javascript</a> enabled and <a href="https://www.bbc.co.uk/webwise/askbruce/articles/download/howdoidownloadflashplayer_1.shtml" title="BBC Webwise article about downloading">Flash</a> installed. Visit <a href="https://www.bbc.co.uk/webwise/">BBC Webwise</a> for full instructions</p> </div> <p>His choices included songs from Bob Dylan, his former band The Velvet Underground, Brian Wilson, The Beatles, Elbow, Leonard Cohen, John Tavener and Peter Gabriel.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-304465"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/music-nation.shtml" rel="bookmark">Music Nation</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/music-nation.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fmusic-nation.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/bbc-national-orchestra-of-wale/" rel="tag" title="">BBC National Orchestra of Wales</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/classical/" rel="tag" title="">Classical</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/"> <img class="author_pic" src="/staticarchive/d1957b60a13c8a66ea5041c258fc1a2fd76434b3.png" width="50" alt="Laura Sinnerton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/">Laura Sinnerton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-02T13:12:24+00:00">13:12 UK time, Friday, 2 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>If you have listened to <a href="/radio3/">Radio 3</a> at any point over the last week, you will undoubtedly have heard many of the presenters mention <a href="/radio3/musicnation.shtml">Music Nation</a>. Indeed, Twitter has this week seen the hashtag <a href="https://twitter.com/">#musicnation</a> grow steadily as a trending topic. But, what is this enigmatic Music Nation? Is it a revolution in the offing? Is it some arty-farty nonsense by a group of hipsters?</p> <p>Music Nation, and most relevantly for us, Music Nation Cymru, is a celebration of the nation's musical life and part of the London 2012 Festival. In Wales, more than 1,000 performers will be involved, professional and amateur alike, and not just in Cardiff.</p> <p>The <a href="/now/">BBC National Orchestra of Wales</a>' contribution to the event will culminate in a Sunday afternoon performance at St David's Hall at 3pm (be there or be square, as it were).</p> <p>There are a number of exciting aspects to the concert. Firstly, we will be showcasing the amazing work of Andy Pidcock. Some of your children may have already been at one of our roadshows with Andy. As part of our education programme, we have over the last year and a half played to thousands of primary school children right across Wales, from both mainstream education and special schools. It has been an honour for the Orchestra and a humbling experience, and it is fitting that Andy's music should feature in our Music Nation celebration.</p> <p>In addition to this, we will be performing extracts from a work by a young Welshman, Lloyd Coleman, entitled Breaking The Wall. Lloyd has been making quite a splash in the compositional world winning awards for three consecutive years in the BBC Proms Young Composers' Competition amongst others. And he's still a student.</p> <p>Commissioned by the BBC as part of Music Nation, we will also be premiering Songs Of The Earth by <a href="/wales/music/sites/karl-jenkins/">Karl Jenkins</a>.</p> <p>The most exciting, and to me, the most gratifying element of the concert however, is the sheer breadth of young people involved. The orchestra already has extensive links with the Royal Welsh College of Music and Drama and will build upon those links on Sunday as students from the College perform alongside our own musicians. In addition to this, we will be joined by students from Tŷ Gwyn Special School and also over 250 young singers from Welsh county choirs.</p> <p>Twitter enthusiasts: search for #musicnation and be excited by the huge breadth and variety of events celebrating the musical culture that we all fight so hard to protect and nurture.</p> <p>Music is, or should be, inclusive. You don't need a degree in music, drama, literature or fine arts to get something out of the myriad performances that happen every week in the UK. Music Nation is a celebration of that fact. Find an event near you, get involved, be entertained and be inspired. The United Kingdom has a fabulous tradition of the arts and Wales in particular plays a very strong role in that. We should be proud of it, and I believe it is something worth celebrating.</p> <p><em>To find out what Music Nation events are happening in your area, visit <a href="/musicnation/">www.bbc.co.uk/musicnation</a>. To book tickets for the BBC National Orchestra and Chorus of Wales concert on Sunday 4 March at 3pm, call 02920 878444.</em></p> </div> </div> <div class="post" id="entry-304419"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/golden-fable-pulco-harry-keyworth-cracking-vinyl-chester.shtml" rel="bookmark">Golden Fable, Pulco, Harry Keyworth - Telfords, Chester</a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/golden-fable-pulco-harry-keyworth-cracking-vinyl-chester.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fgolden-fable-pulco-harry-keyworth-cracking-vinyl-chester.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/live/" rel="tag" title="">Live</a><span class="delimiter">, </span><a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/"> <img class="author_pic" src="/staticarchive/3bde69c6c515d965a6ce9d0da7125103634ad6b8.png" width="50" alt="Adam Walton"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/">Adam Walton</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-01T14:02:40+00:00">14:02 UK time, Thursday, 1 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p><a href="https://soundcloud.com/harry-keyworth/">Harry Keyworth</a> has got hands like slabs of stone. By day he's a builder in West Wales; by night he's a gobsmackingly dextrous acoustic guitarist and singer songwriter.</p> <p>This, he tells us from the stage, is only his fourth gig.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="Harry Keyworth" src="/staticarchive/3209d66676b48628a9e32146f5b533e2f5bb3dea.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">Harry Keyworth </p></div> <p>Witnessing his assurance and between song banter, you'd easily believe it was his 400th. He uses a loop station to broaden the traditional sole performer's palette, building a whole rhythm section out of thumps and bangs to various parts of the guitar's body. The loop station (a box of digital trickery, somewhat like a very obedient and autistic tape recorder) also allows Harry the neat trick of being able to harmonise with his own voice. It sounds fantastic.</p> <p>Gilding the rush of guitars and rhythms is a naturally soulful voice that growls as well as it keens. It's clear within the first 30 seconds that Harry has all the tools needed to hew out some incredible songs and recordings as he progresses. That's not to say that he doesn't have fine songs already, he does. But they do have a tendency to be overshadowed by his dazzling technique.</p> <p>Harry brings to mind two artists I have witnessed over the years in this venue. The legendary John Martyn, who used to live in a narrowboat moored next to Telford's; and Tommy Emmanuel, whose acoustic pyrotechnics have bedazzled musos the world over. I'd like to hear more of John's soul and wilfulness, less of Tommy's flaring for the sake of flaring (Andy McKee might be a better comparison). But however Harry develops, whichever choices he makes, it's evident we are witnessing the dawning of a significant talent.</p> <p>And what a strange moment when he segues into Soul II Soul's Back To Life and tries to lead the crowd into a singalong. Most unexpected. And mostly excellent.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="Pulco" src="/staticarchive/bd9694d5478b61927b8bccf7d93d67d87a332b9f.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">Pulco </p></div> <p>Ashley Cooke, aka <a href="https://pulco.bandcamp.com/">Pulco</a>, has been here before. He's probably been to most venues before. He toured the length and breadth of the UK with his previous band Derrero. When I introduce him onto the stage, he can't remember how many times he's played here before either.</p> <p>Neither can he remember all of his lyrics. The stage looks like a tornado has ripped through a foolscap warehouse. Maybe, as he admits from the stage himself, he'd have more chance of remembering the songs if he rehearsed them! But this lack of ego and considered guile is exactly what makes Pulco so endearing and special. Music get action painted in Ash's heart whether he likes it or not. He just opens his mouth and lets it stream out in more colours than most of us can dream in.</p> <p>It's hugely disconcerting when the voice I introduce him with cedes into a vocal piece I recorded for his most recent album (Small Thoughts). The set then quietly delights us all. What wonderful spells Ashley casts with his slipstream voice, acoustic guitar, an iPod with a few backing tracks on it, and Y Niwl's Sîon Glyn on stylophone (on one song, anyway).</p> <p>I know Ash liked a bit of Pavement when Derrero were in their heyday, and his songs have a similar sense of the gracefully unexpected as Pavement's quieter and more beautiful moments. But Ash's songs - stripped to their glittering bones like this - remind me most of Jimmy Webb. Place Lid On Me has that minor chord ebb, then ebb again, of Wichita Lineman. That final moment was worth the entry price alone.</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="Golen Fable" src="/staticarchive/211c69b3423656a07ca5057a826257b134684d5a.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">Golen Fable </p></div> <p><a href="https://goldenfable.com/">Golden Fable</a> are an intricate weave of contradictions and rare wonders. The contradictions? Big bassed loops and twinkling guitars; shy kitten stage presences in Liberace lamé outfits; clouds of dreamy reverb pricked by ice-topped sonic peaks. This is the first time that Tim and Rebecca have toured as Golden Fable.</p> <p>Previously, in Tim And Sam's Tim And The Sam Band With Tim and Sam, they didn't have to worry about vocals - well, for the most part. There's a underlining nervousness to their set that is understandable when you consider what an evolutionary leap forwards they have taken.</p> <p>Despite a couple of problems with squalls of feedback trying to storm in and ruin proceedings, Golden Fable triumph. And they do it in the most natural way possible. Towards the end of their set, Tim and Rebecca free themselves from the PA and walk into the middle of the audience, performing a song acoustically, without any amplification whatsoever.</p> <p>The entire room silences to hear Rebecca's angelic voice. We're as reverent as you'd be listening to a solo chorister kissing the eaves in Westminster Abbey. It's an astonishing moment of shy bravado that encapsulates most of what is wonderful about Golden Fable.</p> <p>They return to the stage to perform their unique take on the <a href="/wales/music/sites/manic-street-preachers/">Manic Street Preachers</a>' Motorcycle Emptiness and leave us in the shimmering wake of The Chill Pt. 2. It's a damn fine way to end the night.</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="post" id="entry-304398"> <h2><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/british-council-broadcast-trcukers-of-husk-gallops-kutosis.shtml" rel="bookmark">British Council broadcasts Welsh bands to an audience of four million </a></h2> <div class="meta"> <div class="flt-r" style="width:180px"> <p style="text-align:right"><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/british-council-broadcast-trcukers-of-husk-gallops-kutosis.shtml" title="Comments made about this entry." rel="comments">Comments </a></p> <div class="flt-r bbc-st bbc-st-slim bbc-st-colour bbc-st-light"> <a href="/modules/sharetools/share?url=http%3A%2F%2Fwww.bbc.co.uk%2Fblogs%2Fwalesmusic%2F2012%2F03%2Fbritish-council-broadcast-trcukers-of-husk-gallops-kutosis.shtml&amp;appId=news">Share this page</a> </div> </div> <div style="float:left; width:420px"> <p class="categories">Post categories: <a href="https://www.bbc.co.uk/blogs/walesmusic/music/" rel="tag" title="">Music</a> </p> <p class="flt-l user-pic"> <a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/"> <img class="author_pic" src="/staticarchive/47fe2162b164adb136294f8349d163a90efca5a2.png" width="50" alt="James McLaren"></a> <span class="vcard author"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></span> <span class="separator">|</span> <abbr class="published" title="2012-03-01T11:25:28+00:00">11:25 UK time, Thursday, 1 March 2012</abbr> </p> </div> <div class="cleardiv"><!-- clearing --></div> </div> <div class="post_content"> <p>Three Welsh bands are getting a St David's Day treat as <a href="https://www.britishcouncil.org/">the British Council</a>, in partnership with Cardiff's <a href="/wales/music/sites/swn/">Sŵn</a> festival, will broadcast a live event with three up-and-coming Welsh bands.</p> <p><a href="https://www.truckersofhusk.co.uk/">Truckers Of Husk</a>, <a href="https://kutosis.co.uk/">Kutosis</a> and <a href="/music/introducing/artists/gallops/">Gallops</a> will have material broadcast on the British Council's international radio show, The Selector, this Saturday (3 March).</p> <p>The Selector is aired across 33 countries with audiences in excess of four million, say the British Council</p> <div class="imgCaptionCenter" style="text-align: center; display: block; "> <img alt="Hywel of Truckers Of Husk" src="/staticarchive/58f3b885a62b704ea87361d0e313f375b5f81588.jpg" width="446" height="251" class="mt-image-center" style="margin: 0 auto 5px;"><p style="width:446px;font-size: 11px; color: rgb(102, 102, 102);margin: 0 auto 20px;">Hywel of Truckers Of Husk </p></div> <p>"The Selector gives people around the world the chance to experience UK music and for up-and-coming bands to connect with new audiences," said a Council spokesperson.</p> <p>"The show is broadcast in 33 a range of countries around the world, from China to Mexico, Indonesia to Malawi (including NME Radio in the UK), as well as on British Airways' in-flight radio."</p> <p>Hywel Evans of Truckers Of Husk said: "We as the Truckers of Husk play no shows, write prog rock for menchildren, release records slower than it takes than a diamond to form and have faces for radio, so this an ideal opportunity to kill four million birds with one stone."</p> <p>John Rostron of Sŵn said: "Saturday's show brings together three incredible bands from Wales. As an event, it's a cracking line up of three bands we've championed through Sŵn Festival.</p> <p>"The fact that the show will be recorded for broadcast, with all the crowd chants, applause and noise too, and be broadcast across the world on Selector Radio is a real treat for these emerging acts. It's an amazing opportunity to showcase to the world just how good music is from Wales."</p> <p><strong>Feel free to comment!</strong> If you want to have your say, on this or any other BBC blog, you will need to <a href="https://www.bbc.co.uk/users/login">sign in</a> to your BBC iD account. If you don't have a BBC iD account, you can <a href="https://id.bbc.co.uk/users/register/">register here</a> - it'll allow you to contribute to a range of BBC sites and services using a single login.</p> <p>Need some assistance? <a href="https://id.bbc.co.uk/users/help/about">Read about BBC iD</a>, or get some <a href="https://id.bbc.co.uk/users/help/registering">help with registering</a>.</p> </div> </div> <div class="content-nav"> <a href="https://www.bbc.co.uk/blogs/walesmusic/2012/02/">« February 2012</a> | | <a href="https://www.bbc.co.uk/blogs/walesmusic/2012/04/">April 2012 »</a> </div> </div> <!--contents ends here--> <!-- sidebar starts here --> <div class="sidebar"> <p class="jump"><a href="#jump_more">Jump to more content from this blog</a></p> <div class="block block-one about"> <div class="wrap1"> <div class="wrap2"> <div class="wrap3"> <div class="title"><h3>About this blog</h3></div> <div class="inner"> <p>A guide to music in Wales: blogging on festivals, gigs, events, festivals, news, radio sessions, bands, singers, choirs and more.</p> <p><a title="Adam Walton" href="/blogs/walesmusic/adam_walton/"><img src="https://www.bbc.co.uk/wales/blogs/images/users/adam_walton.jpg" width="55" height="55" alt="Adam Walton" align="right">Adam Walton</a>'s show on <a title="Adam Walton" href="/wales/radiowales/sites/adamwalton/">BBC Radio Wales</a> has three hours of non-stop new music, exclusive session tracks and interesting chat, live from Wrexham.</p> <p class="rss_link first"><a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/rss.xml">Adam's blog RSS feed</a><br><a class="email" href="https://feedburner.google.com/fb/a/mailverify?uri=BBCWalesMusic-AdamWalton">Subscribe to Adam's posts via email</a></p> <p><a title="Bethan Elfyn" href="/blogs/walesmusic/bethan_elfyn/"><img src="https://www.bbc.co.uk/wales/blogs/images/users/bethan_elfyn.jpg" width="55" height="55" alt="Bethan Elfyn" align="right">Bethan Elfyn</a> presents live sessions, essential interviews and a mix of classic rock and pop on <a title="Bethan Elfyn" href="/programmes/b00t2f6s">BBC Radio Wales</a>.</p> <p class="rss_link first"><a href="https://www.bbc.co.uk/blogs/walesmusic/bethan_elfyn/rss.xml">Bethan's blog RSS feed</a><br><a class="email" href="https://feedburner.google.com/fb/a/mailverify?uri=BBCWalesMusic-BethanElfyn">Subscribe to Bethan's posts via email</a></p> <p><a title="James McLaren" href="/blogs/walesmusic/james_mclaren/"><img src="https://www.bbc.co.uk/wales/blogs/images/users/james_mclaren.jpg" width="55" height="55" alt="James McLaren" align="right">James McLaren</a> has worked on the BBC Wales Music website since 2006, and has been writing about Welsh music for almost 15 years.</p> <p class="rss_link first"><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/rss.xml">James' blog RSS feed</a><br><a class="email" href="https://feedburner.google.com/fb/a/mailverify?uri=BBCWalesMusic-JamesMclaren">Subscribe to James' posts via email</a></p> <p><a title="Laura Sinnerton" href="/blogs/walesmusic/laura_sinnerton/"><img src="https://www.bbc.co.uk/wales/blogs/images/users/laura_sinnerton.jpg" width="55" height="55" alt="Laura Sinnerton" align="right">Laura Sinnerton</a> is a viola player with the <a href="/orchestras/bbcnow/">BBC National Orchestra of Wales</a>.</p> <p class="rss_link first"><a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/rss.xml">Laura's blog RSS feed</a><br><a class="email" href="https://feedburner.google.com/fb/a/mailverify?uri=WalesMusic-LauraSinnerton">Subscribe to Laura's posts via email</a></p> <div class="cleardiv"><!--clearing--></div> <p style="margin:10px 0 0 0!important">For the latest updates across BBC blogs, <br><a href="https://www.bbc.co.uk/blogs">visit the Blogs homepage</a>.</p> <div class="cleardiv"><!--clearing--></div> </div> </div> </div> </div> </div> <div class="block rss block-one"> <div class="wrap1"> <div class="wrap2"> <div class="wrap3"> <div class="title"><h3>Subscribe to Wales Music</h3></div> <div class="inner"> <p>You can stay up to date with Wales Music via these feeds.</p> <p class="rss_link first"><a href="https://www.bbc.co.uk/blogs/walesmusic/rss.xml">Wales Music Feed</a><span>(RSS)</span></p> <p class="rss_link"><a href="https://www.bbc.co.uk/blogs/walesmusic/atom.xml">Wales Music Feed</a><span>(ATOM)</span></p> <p>If you aren't sure what RSS is you'll find <a href="https://news.bbc.co.uk/1/hi/help/3223484.stm">our beginner's guide to RSS</a> useful.</p> </div> </div> </div> </div> </div> <!--start blogs block--> <div class="block blogs block-one"> <div class="wrap1"> <div class="wrap2"> <div class="wrap3"> <div class="title"><h3>Latest from BBC Wales blogs</h3></div> <div class="inner"> <div class="blogpromo"> <img src="https://www.bbc.co.uk/wales/blogs/images/users/laura_chamberlain.jpg" width="55" height="55" alt="Laura Chamberlain"><div class="blogpromoinfo"> <h4><a href="https://www.bbc.co.uk/blogs/walesarts/2012/07/remembering_welsh_poet_hedd_wyn.html">Remembering Welsh poet Hedd Wyn</a></h4> <p>Ninety-five years ago today, 31 July, Welsh poet Hedd Wyn died in... </p> <p class="blogtitle"><a href="https://www.bbc.co.uk/blogs/walesarts/">Wales Arts »</a></p> </div> <div style="clear:both;"></div> </div> <div class="blogpromo"> <img src="https://www.bbc.co.uk/wales/blogs/images/users/phil_carradice.jpg" width="55" height="55" alt="Phil Carradice"><div class="blogpromoinfo"> <h4><a href="https://www.bbc.co.uk/blogs/waleshistory/2012/07/july_1942_enemy_action_over_pwllheli.html">July 1942: enemy action over Pwllheli</a></h4> <p>Britain might have been totally unprepared for war in 1939 but within... </p> <p class="blogtitle"><a href="https://www.bbc.co.uk/blogs/waleshistory/">Wales History »</a></p> </div> <div style="clear:both;"></div> </div> <div class="blogpromo"> <img src="https://www.bbc.co.uk/wales/blogs/images/users/derek_brockway.jpg" width="55" height="55" alt="Derek Brockway"><div class="blogpromoinfo"> <h4><a href="https://www.bbc.co.uk/blogs/walesnature/2012/07/a_taste_of_summer.html">A taste of summer</a></h4> <p>Last week most of Wales enjoyed a taste of summer. At the... </p> <p class="blogtitle"><a href="https://www.bbc.co.uk/blogs/walesnature/">Wales Nature »</a></p> </div> <div style="clear:both;"></div> </div> <div class="blogpromo"> <img src="https://www.bbc.co.uk/wales/blogs/images/users/x-ray_production_team.jpg" width="55" height="55" alt="X-Ray production team"><div class="blogpromoinfo"> <h4><a href="https://www.bbc.co.uk/blogs/x-ray/2012/03/dog-grooming.shtml">Dog Grooming</a></h4> <p>A third of Welsh families own a dog and a growing number... </p> <p class="blogtitle"><a href="https://www.bbc.co.uk/blogs/x-ray/">X-Ray »</a></p> </div> <div style="clear:both;"></div> </div> <!-- discontinued <div class="blogpromo"> <img src="/wales/blogs/images/users/nick_-_web_team.jpg" width="55" height="55" alt="Nick - Web Team" /> <div class="blogpromoinfo"> <h4><a href="https://www.bbc.co.uk/blogs/walesnortheast/2011/03/goodbye_blog.html">Last post</a></h4> <p>After five years, the time has come to close this blog. When... </p> <p class="blogtitle"><a href="https://www.bbc.co.uk/blogs/walesnortheast/">North East Wales Weblog »</a></p> </div> <div style="clear:both;"></div> </div> --> <!-- discontinued <div class="blogpromo"> <img src="/wales/blogs/images/users/betsan_powys.jpg" width="55" height="55" alt="Betsan Powys" /> <div class="blogpromoinfo"> <h4><a href="https://www.bbc.co.uk/blogs/thereporters/betsanpowys/2011/05/931_down.html">931 down</a></h4> <p>It was an inspired conversation. What shall we call a blog written...</p> <p class="blogtitle"><a href="https://www.bbc.co.uk/blogs/thereporters/betsanpowys/">Betsan's Blog »</a></p> </div> <div style="clear:both;"></div> </div> --> </div> </div> </div> </div> </div> <!--end blogs block--> </div> <!-- sidebar ends here --> </div> <div class="cleardiv"><!--clearing div--></div> </div> <!--main content ends here--> <div class="cleardiv"><!--clearing div--></div> <div id="explore"> <div class="more content"> <h2><a name="jump_more"></a>More from this blog...</h2> <!--grids--> <div class="grids"> <div class="unit topical"> <div class="title"><h3>Topical posts on this blog</h3></div> <div class="inner"> <div id="beingdiscussedNow"> <h2>Being Discussed Now</h2> <ul class="dna-list"><li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/04/pete-ham-badfinger-without-you.shtml">The tragic life of Pete Ham and Badfinger</a><span>(4)</span></li> <li><a href="https://www.bbc.co.uk/blogs/blogwales/posts/introducing_a_girl_called_ruth">introducing_a_girl_called_ruth</a><span>(1)</span></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/07/interview-steve-balsamo-rosalie-deighton.shtml">Interview: Steve Balsamo on Balsamo And Deighton</a><span>(4)</span></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/07/rolling-stones-in-wales.shtml">The Rolling Stones in Wales: were you there?</a><span>(1)</span></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/06/adam-walton-playlist-show-9-june.shtml">Adam Walton playlist and show info: Saturday 9 June 2012</a><span>(2)</span></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2011/09/introducing-uploader-update.shtml">Introducing Uploader Update</a><span>(1)</span></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/06/talent-show-top-five.shtml">Talent show top five</a><span>(1)</span></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/05/catherine-zeta-jones-russell-brand-tom-cruise-rock-of-ages.shtml">Catherine Zeta-Jones and Russell Brand to duet on Rock Of Ages OST</a><span>(1)</span></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/04/wales-best-guitarists.shtml">Wales' best guitarists</a><span>(16)</span></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/05/eurovision-devolution-wales-scotland-northern-ireland.shtml">Should Wales, Scotland and Northern Ireland go it alone at Eurovision?</a><span>(2)</span></li> </ul></div> </div> </div> <div class="unit archives"> <!--block item - dark green top box--> <div class="title"><h3>Archives</h3></div> <div class="inner"> <p><strong>Past twelve months</strong></p> <ul><li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/11/">November 2012 (2)</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/08/">August 2012 (3)</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/07/">July 2012 (28)</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/06/">June 2012 (21)</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/05/">May 2012 (31)</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/04/">April 2012 (26)</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/03/">March 2012 (49)</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/02/">February 2012 (33)</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2012/01/">January 2012 (33)</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2011/12/">December 2011 (30)</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2011/11/">November 2011 (33)</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/2011/10/">October 2011 (27)</a></li> </ul><p class="all"><a href="https://www.bbc.co.uk/blogs/walesmusic/archives.shtml">complete archive</a></p> </div> <!--end item - dark green top box--> </div> <div class="unit tags"> <!--block item - dark green top box--> <div class="title"><h3>Categories</h3></div> <div class="inner"> <p>These are some of the popular topics this blog covers.</p> <ul class="tags"><li class="rank-7"><a href="https://www.bbc.co.uk/blogs/walesmusic/archive/">archive</a></li> <li class="rank-385"><a href="https://www.bbc.co.uk/blogs/walesmusic/music/artist/">artists</a></li> <li class="rank-18"><a href="https://www.bbc.co.uk/blogs/walesmusic/music/audio/">audio</a></li> <li class="rank-43"><a href="https://www.bbc.co.uk/blogs/walesmusic/music/bbc-cardiff-singer-of-the-worl/">bbc cardiff singer of the world</a></li> <li class="rank-73"><a href="https://www.bbc.co.uk/blogs/walesmusic/music/bbc-national-orchestra-of-wale/">bbc national orchestra of wales</a></li> <li class="rank-21"><a href="https://www.bbc.co.uk/blogs/walesmusic/music/classical/">classical</a></li> <li class="rank-175"><a href="https://www.bbc.co.uk/blogs/walesmusic/events/">events</a></li> <li class="rank-3"><a href="https://www.bbc.co.uk/blogs/walesmusic/first-click/">first click</a></li> <li class="rank-4"><a href="https://www.bbc.co.uk/blogs/walesmusic/history/">history</a></li> <li class="rank-110"><a href="https://www.bbc.co.uk/blogs/walesmusic/interview/">interviews</a></li> <li class="rank-139"><a href="https://www.bbc.co.uk/blogs/walesmusic/music/live/">live</a></li> <li class="rank-329"><a href="https://www.bbc.co.uk/blogs/walesmusic/music/">music</a></li> <li class="rank-94"><a href="https://www.bbc.co.uk/blogs/walesmusic/north-wales/">north wales</a></li> <li class="rank-1"><a href="https://www.bbc.co.uk/blogs/walesmusic/photography/">photography</a></li> <li class="rank-5"><a href="https://www.bbc.co.uk/blogs/walesmusic/publications/">publications</a></li> <li class="rank-241"><a href="https://www.bbc.co.uk/blogs/walesmusic/radio/">radio</a></li> <li class="rank-143"><a href="https://www.bbc.co.uk/blogs/walesmusic/music/release/">releases</a></li> <li class="rank-5"><a href="https://www.bbc.co.uk/blogs/walesmusic/ryder-cup/">ryder cup</a></li> <li class="rank-127"><a href="https://www.bbc.co.uk/blogs/walesmusic/south-wales/">south wales</a></li> <li class="rank-25"><a href="https://www.bbc.co.uk/blogs/walesmusic/television/">television</a></li> <li class="rank-52"><a href="https://www.bbc.co.uk/blogs/walesmusic/video/">video</a></li> <li class="rank-44"><a href="https://www.bbc.co.uk/blogs/walesmusic/music/wales-music-day/">wales music day</a></li> </ul></div> <!--end item - dark green top box--> </div> <div class="unit authors"> <div class="title"><h3>Latest contributors</h3></div> <div class="inner"> <ul><li><a href="https://www.bbc.co.uk/blogs/walesmusic/bbc_wales_music/">BBC Wales Music</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/adam_walton/">Adam Walton</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/james_mclaren/">James McLaren</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/laura_sinnerton/">Laura Sinnerton</a></li> <li><a href="https://www.bbc.co.uk/blogs/walesmusic/cardiff_singer/">Cardiff Singer</a></li> </ul></div> </div> </div> <!-- end grids--> </div> </div> </div> <script type="text/javascript" src="/staticarchive/a6d9e652f6ae17eb1e582e3c58afb64e417a7216.js"></script><script type="text/javascript">set_latest_blog(399);</script><!--MT global footer start--></div> <div id="blq-mast" class="blq-rst blq-default-domestic blq-new-nav" lang="en-GB"> <div id="blq-sign-in"> <div id="id-status" class="blq-id-v4"> <div class="id-out id-gel"> <h2 class="blq-hide">BBC iD</h2> <a href="https://ssl.bbc.co.uk/id/status" id="blq-idstatus-link"> <span class="id-icon"> <span></span> </span> <span id="blq-idstatus-text"> BBC iD </span> <span class="id-spinner"></span> <span class="blq-dropdown-arrow"> <span></span> </span> </a> </div> <div id="id-status-nav"> <div class="id-in blq-rst"> <ul><li> <a name="idDash" class="blq-nogo has-ptrt idDash" href="https://ssl.bbc.co.uk/id/settings"> Settings </a> </li> <li> <a name="idSignout" class="blq-nogo has-ptrt idSignout" href="https://ssl.bbc.co.uk/id/signout"> Sign out </a> </li> </ul></div> </div> </div> </div> <form method="get" id="blq-search-form" action="https://search.bbc.co.uk/search" accept-charset="utf-8"> <p id="blq-nav-search"> <input type="hidden" name="go" value="toolbar"><input type="hidden" name="uri" value="/blogs/walesmusic/2012/03/"><label for="blq-search" class="blq-hide">Search term:</label> <input id="blq-search" type="text" name="q" value="" maxlength="128"><input id="blq-search-btn" type="submit" value="Search"></p> </form> <h2 class="blq-hide">BBC navigation</h2> <ul id="blq-nav-main" class="blq-not-uk"><li id="blq-nav-n"><a href="https://www.bbc.co.uk/news/" hreflang="en-GB">News</a></li> <li id="blq-nav-s"><a href="https://www.bbc.co.uk/sport/" hreflang="en-GB">Sport</a></li> <li id="blq-nav-w"><a href="https://www.bbc.co.uk/weather/" hreflang="en-GB">Weather</a></li> <li id="blq-nav-i"> <a href="/iplayer/" hreflang="en-GB">iPlayer</a> </li> <li id="blq-nav-t"><a href="/tv/" hreflang="en-GB">TV</a></li> <li id="blq-nav-r"><a href="/radio/" hreflang="en-GB">Radio</a></li> <li id="blq-nav-m"><a href="#blq-nav">More…</a></li> </ul></div> <div id="blq-nav" class="blq-blue"> <div id="blq-nav-links" class="blq-clearfix" lang="en-GB"> <div id="blq-nav-links-inner"> <ul class="blq-nav-sub blq-first"><li><a href="/cbbc/">CBBC</a></li> <li><a href="/cbeebies/">CBeebies</a></li> <li><a href="/comedy/">Comedy</a></li> <li><a href="/food/">Food</a></li> <li><a href="/history/">History</a></li> </ul><ul class="blq-nav-sub"><li><a href="/learning/">Learning</a></li> <li><a href="/music/">Music</a></li> <li><a href="/science/">Science</a></li> <li><a href="/nature/">Nature</a></li> <li><a href="/local/">Local</a></li> </ul><ul class="blq-nav-sub blq-last"><li><a href="/northernireland/">Northern Ireland</a></li> <li><a href="/scotland/">Scotland</a></li> <li><a href="/wales/">Wales</a></li> <li id="blq-az"><a href="/a-z/">Full A-Z<span class="blq-hide"> of BBC sites</span></a></li> </ul></div> </div> </div> <!--[if IE 6]> <div id="blq-ie6-upgrade"> <p> <span>You're using the Internet Explorer 6 browser to view the BBC website. Our site will work much better if you change to a more modern browser. It's free, quick and easy.</span> <a href="https://www.browserchoice.eu/">Find out more <span>about upgrading your browser</span> here&hellip;</a> </p> </div> <![endif]--> <div id="blq-foot" lang="en-GB" class="blq-rst blq-clearfix blq-foot-grey"> <div id="blq-footlinks"> <h2 class="blq-hide">BBC links</h2> <ul><li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"><li><a href="https://m.bbc.co.uk/">Mobile site</a></li> <li><a href="/terms/">Terms of Use</a></li> <li><a href="/aboutthebbc/">About the BBC</a></li> </ul></li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"><li><a href="/privacy/">Privacy</a></li> <li><a href="/accessibility/">Accessibility Help</a></li> </ul></li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"><li><a href="/privacy/cookies/about">Cookies</a></li> <li><a href="/contact/">Contact the BBC</a></li> </ul></li> <li class="blq-footlinks-row"> <ul class="blq-footlinks-row-list"><li><a href="/guidance/">Parental Guidance</a></li> </ul></li> </ul></div> <div id="blq-foot-blocks" class="blq-footer-image-light"><img src="/staticarchive/a8e42f8fe987b7cc9bf2d43b74b2c74b2448d2e3.png" width="84" height="24" alt="BBC"></div> <p id="blq-disclaim"><span id="blq-copy">BBC © 2014</span> <a href="/help/web/links/">The BBC is not responsible for the content of external sites. Read more.</a></p> <div id="blq-obit"><p><strong>This page is best viewed in an up-to-date web browser with style sheets (CSS) enabled. While you will be able to view the content of this page in your current browser, you will not be able to get the full visual experience. Please consider upgrading your browser software or enabling style sheets (CSS) if you are able to do so.</strong></p></div> </div> </div> </div> <script type="text/javascript"> if (typeof require !== 'undefined') { require(['istats-1'], function(istats){ istats.track('external', { region: document.getElementById('blq-main') }); istats.track('download', { region: document.getElementById('blq-main') }); }); } </script></body></html>

Pages: 1 2 3 4 5 6 7 8 9 10