Right in the heart of London’s world famous Theatre Land is The Umbrella Rooms, a production facility catering for Workshops, Casting, Film Production, Events Spaces and Music Recording/Production. Kazbar Systems has recently supplied Umbrella Sound with their studio equipment requirements.
Situated in the spacious basement of the Umbrella Rooms building situated on Shaftesbury Avenue, the studio has a spacious Control Room and Live Room. Chief Engineer, producer and composer Ben Robbins liaised with Kazbar with the equipment specification.
Ben has a distinguished career having worked with the likes of Sir Cliff Richard, Heather Small, A-Ha, Errol Brown, Gabrielle, Rick Astley, and recently won The Music Week Sync award for best music in a Drama, with his composition ‘In Paradisum’ used in BBC’s ‘Broken’ starring Sean Bean.
More recently the studio has taken advantage of its location in Theatre Land with clients from Musical Theatre including Alfie Boe, John Owen Jones, Louise Dearman, Rydian Roberts, Kerry Ellis, Marisha Wallace, Nick Lloyd Webber, Trevor Dion Nicholas, Hayden Tee, Kelsey Grammer.
Ben required a recording system which offered hands on recording and mixing but integrated with his DAW plus allowed for speedy workflow. Ben opted for the Presonus Studio Live 32 due to its excellent sound and preamps, onboard effects plus seamless audio connectivity with his Mac Pro computer.
Also central to the studio are the Focal Trio 6BE Active Studio Monitor Speakers, Ben auditioned many speakers but found the Focal Trio’s offered the desired sound across the broad genres of music he works on.
// update calculator when the finance option changes
var financeoption = document.getElementById("financecode");
financeoption.onchange = function()
{
// update the calculator
var financecode = document.getElementById("financecode");
var res = financecode.value.split("-");
var theterm = res[0].replace( /^\D+/g, '');
var theapr = res[1];
var fdeposit = document.getElementById("financedeposit");
var loanval = productvalue.value - fdeposit.value;
updateomnicalc (theterm, loanval, theapr);
}
// update calculator when the deposit option changes
var depositoption = document.getElementById("financedeposit");
depositoption.onchange = function()
{
// update the calculator
var financecode = document.getElementById("financecode");
var res = financecode.value.split("-");
var theterm = res[0].replace( /^\D+/g, '');
var theapr = res[1];
var fdeposit = document.getElementById("financedeposit");
var loanval = productvalue.value - fdeposit.value;
updateomnicalc (theterm, loanval, theapr);
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}