<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Kevan Atkins | Sound Engineer | Sound Artist</title>
    <description>Composer and Sound Artist.</description>
    <link>http://kevanatkins.com/</link>
    <atom:link href="http://kevanatkins.com/feed.xml" rel="self" type="application/rss+xml"/>
    <pubDate>Fri, 26 Jun 2020 04:02:40 +1000</pubDate>
    <lastBuildDate>Fri, 26 Jun 2020 04:02:40 +1000</lastBuildDate>
    <generator>Jekyll v3.8.6</generator>
    
      <item>
        <title>Sirius Chronometer</title>
        <description>&lt;p&gt;Hey all, so following the &lt;a href=&quot;http://www.bifem.com.au/&quot;&gt;Bendigo International Festival of Exploratory Music&lt;/a&gt; (BIFEM) this year, I have updated my chronometer software for a performance of Olga Neuwirth’s work &lt;em&gt;Maudite Soit La Guerre&lt;/em&gt;. It has now hit the v1.0 milestone (actually 1.1.0 after a few changes), which I’m happy about and I’m proud to make it publically available now it is in a more user-friendly package.&lt;/p&gt;

&lt;h2 id=&quot;background&quot;&gt;Background&lt;/h2&gt;
&lt;p&gt;For those unfamiliar with this. Sirius Chronometer is a system I developed last year for the Australian premier of Karlheinz Stockhausen’s &lt;em&gt;Sirius&lt;/em&gt; at BIFEM 2014 with Nicholas Isherwood, Tristram Williams, Tiffany DuMouchelle, Richard Haynes and Myles Mumford. The purpose was to allow the performers to stay in sync and keep track of their cues alongside the 8 channel diffusion using their mobile devices on the same wi-fi network as computer.&lt;/p&gt;

&lt;p&gt;The original iteration of this system was a &lt;a href=&quot;https://nodejs.org/en/&quot;&gt;Node.js&lt;/a&gt; script that was sent OSC messages from a MaxMSP patch indicating the current playback position and cues, and then serving a web page on any device with a HTML5 web browser which displays the current time and cues synchronised with the patch through a TCP socket connected to Node server running on the computer. The advantages this system has over something like TouchOSC, which superficially can do the same thing, are:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;There are fewer restrictions in the target platform. That is, it does not have to be an iOS device.&lt;/li&gt;
  &lt;li&gt;Not only does it not require a software to be purchased for each device, it also is open source, so it is entirely free!&lt;/li&gt;
  &lt;li&gt;&lt;em&gt;Most importantly&lt;/em&gt; — and this was why a bespoke piece of software conceived in the first place - the clients or devices that the chronometer is being displayed on can be more than just dumb clients displaying what’s sent to them.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Why is the last point important? Well, an important aspect of this technology is that it is not only reliable, but it has failsafes. So in the case of &lt;em&gt;Sirius Chronometer&lt;/em&gt;, it will continue to work in the absence of a wi-fi connection and it will recover at the right point if device crashes and needs to re-open the browser. The way this works is that rather than display time values and cues as they are received, the device relies more on its on its own internal time and only receives &lt;code class=&quot;highlighter-rouge&quot;&gt;start&lt;/code&gt;,  &lt;code class=&quot;highlighter-rouge&quot;&gt;stop&lt;/code&gt; and periodic &lt;code class=&quot;highlighter-rouge&quot;&gt;sync&lt;/code&gt; messages to synchronise. In the event that a device connects or re-connects, it will be sent the most recent cues and then whatever the current sync message is, e.g. &lt;code class=&quot;highlighter-rouge&quot;&gt;sync 230000&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This is quite important when performing such a difficult work as if someone were to cause interference on the 2.4 GHz, which can and does happen, the performance is not interrupted.&lt;/p&gt;

&lt;h2 id=&quot;what-has-changed&quot;&gt;What has changed?&lt;/h2&gt;
&lt;p&gt;The biggest issue with this system as it was last year was on the useability front. It required the end user to open up the terminal, &lt;code class=&quot;highlighter-rouge&quot;&gt;cd&lt;/code&gt; to the right directory, run &lt;code class=&quot;highlighter-rouge&quot;&gt;node server.js&lt;/code&gt;, then find out their computer’s IP address, type it into the browsers remembering to enter the correct port number and then run the Max patch. So the documentation had to include how to use the terminal.&lt;/p&gt;

&lt;p&gt;So what I have done in this version is bundle it into an app using NW.js so all the user has to do is open the app, and the instructions along with what to type into the browser are shown on screen. No fumbling around to find the IP address and port and any documentation for basic use is integrated. And this year I could quite comfortably hand it over to any non-technical user along with whatever Max patch or whatever is meant to drive it (anything that can send custom OSC messages can work with this).&lt;/p&gt;

&lt;h2 id=&quot;what-next&quot;&gt;What next?&lt;/h2&gt;
&lt;p&gt;From here, I have a number of options. One thing I would like to do is make it more compatible with exsting software out-of-the-box. At the moment, it requires certain OSC message to be sent to it to work. And while this still allows quite easy implementation with SuperCollider, MaxMSP, Pd, Bidule, or even Reaper if you use the built-in scripting. However, I would really like to make it work with MIDI timecode and more standardised messaging. That way, just about any audio software with MIDI can work with it without any extra messing around to get it to work.&lt;/p&gt;

&lt;p&gt;I also want to give the user more options for configuration, such as setting the port, the sync interval and how things are displayed on the devices. Currently the sync interval is simply determined by how often the sync messages are sent to the local server. I could also perhaps implement a way to push symbol-based cues to the devices as well.&lt;/p&gt;

&lt;p&gt;It could be worth also providing some visual feedback on the devices in the event that there is a failure.&lt;/p&gt;

&lt;p&gt;On thing I am considering is porting it over to something like OpenFrameworks, which is an awesome C++ “creative coding” toolkit for writing cross-platform apps. One advantage there is I can greatly reduce the footprint of the app, increase the performance and be able to access a few lower level features that might help me improve sync accuracy. It would also make implementing MTC sync a bit easier as I can use RtMidi, which is awesomesauce.&lt;/p&gt;

&lt;h2 id=&quot;downloads&quot;&gt;Downloads&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/unclewalter/Sirius-Chronometer/releases/download/v1.1.0/sirius-chronometer-osx32.zip&quot;&gt;OS X 32-bit&lt;/a&gt;
&lt;a href=&quot;https://github.com/unclewalter/Sirius-Chronometer/releases/download/v1.1.0/sirius-chronometer-osx64.zip&quot;&gt;OS X 64-bit&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://github.com/unclewalter/Sirius-Chronometer/releases/download/v1.1.0/sirius-chronometer-win32.zip&quot;&gt;Windows 32-bit&lt;/a&gt;
&lt;a href=&quot;https://github.com/unclewalter/Sirius-Chronometer/releases/download/v1.1.0/sirius-chronometer-win64.zip&quot;&gt;Windows 64-bit&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;source-code-documentation--example-maxmsp-patch&quot;&gt;Source Code, Documentation &amp;amp; Example MaxMSP patch&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://github.com/unclewalter/Sirius-Chronometer/&quot;&gt;Fork yeah! GitHub!&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Improvements and suggestions are always welcome.&lt;/p&gt;
</description>
        <pubDate>Fri, 02 Oct 2015 00:00:00 +1000</pubDate>
        <link>http://kevanatkins.com/2015/10/02/sirius-chronometer.html</link>
        <guid isPermaLink="true">http://kevanatkins.com/2015/10/02/sirius-chronometer.html</guid>
        
        
      </item>
    
      <item>
        <title>Overhaul</title>
        <description>&lt;p&gt;So, this is the &lt;em&gt;new site&lt;/em&gt;. This time I’m eschewing the whole CMS-based design. It was more trouble than it was worth and had a lot of faults. All of the cogs that had to turn every time the site need to render a page just caused problems. The backend was really clunk and so it was left very out-of-date (as you can probably see from the very crusty old content that was migrated across), so I have moved over to a static page using Jekyll. That means I no longer have to worry about crap like webservers and whether my Rails app is actually running properly. As it is right now, it’s still a bit of a building site and there are some unpopulated sections, however this should hopefully be sorted in the next couple of weeks.&lt;/p&gt;

&lt;p&gt;At the very least, I can at least provide updates on the various goings on, including a few exciting announcements which I will fill you in on soon. In the mean time, you can check out my &lt;a href=&quot;https://soundcloud.com/unclewalter&quot;&gt;SoundCloud&lt;/a&gt; as I sometimes post the odd bit on there.&lt;/p&gt;
</description>
        <pubDate>Fri, 19 Jun 2015 00:00:00 +1000</pubDate>
        <link>http://kevanatkins.com/2015/06/19/complete-overhaul.html</link>
        <guid isPermaLink="true">http://kevanatkins.com/2015/06/19/complete-overhaul.html</guid>
        
        
      </item>
    
      <item>
        <title>News on Nine and Moat 2014</title>
        <description>&lt;p&gt;So today I have some good news and some bad news. The good news is that
Moat Festival 2014 commences this week starting tomorrow kicking off an
exciting two week theatre festival season at La Trobe University which
includes a variety of really exciting shows and even an art exhibition
which is a new addition this year.&lt;/p&gt;

&lt;p&gt;And now to the bad news, I’m very sorry to announce that Nine will no
longer be included as part of Moat Festival due to unforeseen
circumstances which led to some complications (that I won’t get into
here) which made staging this production far more difficult that it
needed to be and so we were forced to withdraw our production. However,
we do hope to still put this show on for you in future. So we are
putting this whole project on ice and looking into our options in the
future. Hopefully we (May, Asleen and myself) can viably stage this show
independently either later this year or early next year. &lt;/p&gt;

&lt;p&gt;If you still wish to see some show in this year’s Moat Festival season,
check it out the under events section on the &lt;a href=&quot;http://unione.latrobesu.org.au/Common/ContentWM.aspx?CID=93&quot; title=&quot;http://unione.latrobesu.org.au/Common/ContentWM.aspx?CID=93&quot;&gt;La Trobe Student
Union&lt;/a&gt;
page.&lt;/p&gt;
</description>
        <pubDate>Tue, 04 Mar 2014 00:00:00 +1100</pubDate>
        <link>http://kevanatkins.com/2014/03/04/news-on-nine-and-moat-2014.html</link>
        <guid isPermaLink="true">http://kevanatkins.com/2014/03/04/news-on-nine-and-moat-2014.html</guid>
        
        <category>theatre</category>
        
        
      </item>
    
      <item>
        <title>Nine Rehearsals - Week 2</title>
        <description>&lt;p&gt;Only two weeks in things are moving so quickly already. With only one
rehearsal this week, I’m surprised we covered as much ground as we did.
We blocked half of the second act and found ourselves running through to
the end of the play with some improvised blocking anyway. Though this
week is really the calm before the great storm that will be next week as
we have to present for showings, get new photos done, really nail the
second act and then tie the whole thing together. It’s crazy, feels like
the whole process has just started but is also nearing the end as well. &lt;/p&gt;

&lt;p&gt;Click
&lt;a href=&quot;http://nine.kevanatkins.com&quot; title=&quot;http://nine.kevanatkins.com&quot;&gt;here&lt;/a&gt; for
details.&lt;/p&gt;

&lt;p&gt;Event:
&lt;a href=&quot;http://www.kevanatkins.com/events/1&quot; title=&quot;http://www.kevanatkins.com/events/1&quot;&gt;Nine&lt;/a&gt;&lt;/p&gt;
</description>
        <pubDate>Sat, 15 Feb 2014 00:00:00 +1100</pubDate>
        <link>http://kevanatkins.com/2014/02/15/nine-rehearsals-week-2.html</link>
        <guid isPermaLink="true">http://kevanatkins.com/2014/02/15/nine-rehearsals-week-2.html</guid>
        
        <category>theatre</category>
        
        
      </item>
    
      <item>
        <title>Nine Rehearsals - Week 1</title>
        <description>&lt;p&gt;The first of the really exciting projects I’m working on this year is a
play called “Nine” by Jane Shepard directed by &lt;a href=&quot;http://www.starnow.com.au/maylynnparley&quot; title=&quot;http://www.starnow.com.au/maylynnparley&quot;&gt;May
Parley&lt;/a&gt;.
A two-hander originally written for two women which explores the human
will to live through it’s two characters, in this case being a man
(portrayed by me) and a woman (&lt;a href=&quot;http://www.imdb.com/name/nm5619395/&quot; title=&quot;http://www.imdb.com/name/nm5619395/&quot;&gt;Asleen
Mauthoor&lt;/a&gt;).
We’re performing this in a really cool space; the storage room in Union
Hall at La Trobe University. It’s a fantastic space when embraced for
what it is. On Thursday, we had a meeting with &lt;a href=&quot;http://www.brightsparklighting.com.au/&quot; title=&quot;http://www.brightsparklighting.com.au/&quot;&gt;Tom
Willis&lt;/a&gt;,
the lighting designer who alongside May had some really strong (yet
simple) concepts to underpin the design of the show and was generally
quite positive about the direction we were going in.&lt;/p&gt;

&lt;p&gt;In the scheme of plays I have performed in this is probably the most
involved part I have ever played and yet it has the least rehearsals
with only six to eight rehearsals (excluding tech/dress) before opening
so naturally I’ve really had to really do my homework on this one. Going
into the first rehearsal definitely made me nervous. Having learnt 117
lines (with another 100 or so to learn still) without Asleen, it was
hard to know if I had developed any habits that would jar against her
pacing and delivery. Nonetheless, things thus far have been going
smoothly and after a (admittedly stumbling) line run things smoothed out
really quickly, we managed to rehearse off-book without too many issues
and completely block the first half of the show. Taking it to the floor
always makes a difference and here even two rehearsals in it has already
started to lift off find its energy, which is great.&lt;/p&gt;

&lt;p&gt;I hope the next week of rehearsals will be equally as fruitful. I’m
really excited for this one. &lt;/p&gt;

&lt;p&gt;Click &lt;a href=&quot;http://nine.kevanatkins.com&quot; title=&quot;http://nine.kevanatkins.com&quot;&gt;here&lt;/a&gt;
for details.&lt;/p&gt;

&lt;p&gt;Event:
&lt;a href=&quot;http://www.kevanatkins.com/events/1&quot; title=&quot;http://www.kevanatkins.com/events/1&quot;&gt;Nine&lt;/a&gt;&lt;/p&gt;
</description>
        <pubDate>Sat, 08 Feb 2014 00:00:00 +1100</pubDate>
        <link>http://kevanatkins.com/2014/02/08/nine-rehearsals-week-1.html</link>
        <guid isPermaLink="true">http://kevanatkins.com/2014/02/08/nine-rehearsals-week-1.html</guid>
        
        <category>theatre</category>
        
        
      </item>
    
      <item>
        <title>The Gate</title>
        <description>&lt;p&gt;&lt;strong&gt;&lt;em&gt;Presented by Centre for Theatre and Performance&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Written by Peter Houghton\
\
Directed by Anne Browning\
&lt;em&gt;Bachelor of Performing Arts: Second Year Production&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;A city teeters on the verge of anarchy. Inside, authorities attempt to
tighten their control against the threat of foreign invasion. Outside, a
motley group of criminals and dissidents wait for a trial that never
comes – but of what are they guilty? If these outcasts can infiltrate
the city walls, they can destroy the record of their crimes and perhaps,
begin again. A comedy about legacy, guilt and honour in a world on the
edge of darkness, &lt;em&gt;The Gate&lt;/em&gt; reunites an award-winning writer-director
team for the premiere of a new Australian play.&lt;/p&gt;

&lt;p&gt;Anne Browning has directed several shows for MTC, Malthouse Theatre and
Red Stitch, including the 2012 tour of Melissa Bubnic‘s &lt;em&gt;Stop.
Rewind.&lt;/em&gt; In 2013, she will direct Dorothy Hewett’s &lt;em&gt;Man from
Mukinupin&lt;/em&gt;for La Trobe University and &lt;em&gt;A Guide to Unhappiness&lt;/em&gt; by Sunny
Leunig and Jono Burns for the Adelaide Cabaret Festival.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tickets:&lt;/strong&gt; $10\
&lt;strong&gt;Call the MAPA Box Office on 9905 1111 to reserve your seats.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Location&lt;/strong&gt; \
&lt;a href=&quot;http://artsonline.monash.edu.au/theatre-performance/locations/drama-building-building-68-monash-university/&quot; title=&quot;Drama Centre, Building 68, Monash University&quot;&gt;Drama Centre, Building 68, Monash
University&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Performance Dates:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Thursday 5 September – 1:00pm and 7:30pm&lt;/p&gt;

&lt;p&gt;Friday 6 September – 7.30pm&lt;/p&gt;

&lt;p&gt;Saturday 7 September – 7:30pm&lt;/p&gt;
</description>
        <pubDate>Sat, 03 Aug 2013 00:00:00 +1000</pubDate>
        <link>http://kevanatkins.com/2013/08/03/the-gate-tickets-and-info.html</link>
        <guid isPermaLink="true">http://kevanatkins.com/2013/08/03/the-gate-tickets-and-info.html</guid>
        
        <category>theatre</category>
        
        
      </item>
    
      <item>
        <title>Do Androids Dream of Electric Sheep?</title>
        <description>&lt;p&gt;Adaptation by Edward Einhorn \
Music by Henry Akona \
Student Theatre and Film’s artistic director, Bob Pavlich, directs Do
Androids Dream of Electric Sheep? This New York adaptation of the novel
by Phillip K. Dick is the basis for the film Blade Runner and promises
to enthral audiences.  \
\
Most people emigrate to Mars - unless they have a job to do on Earth.
Like Rick Deckard - android killer for the police and owner of an
electric sheep. He has to find, identify, and kill six androids which
have escaped from M ars. They’re machines, but they look and sound and
think like humans - clever, dangerous humans. \
\
This adaptation has previously only been performed once before. This
production by the Untitled Theater Company #61 in New York in 2010
played to sell-out crowds and garnered considerable press interest. \
\
Musical Director: Kevan Atkins \
\
&lt;strong&gt;Cast: &lt;/strong&gt; \
Alex Blainey\
Catherine Morvell\
Jake Edgar\
Jake Matricardi\
Matthew Howat\
Nina Miscriky\
Sarah Wall\
Sean Sully\
Steph Elkington \
Yi Fan&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Location:&lt;/strong&gt; &lt;a href=&quot;http://www.northcotetownhall.com.au&quot;&gt;Studio One, &lt;/a&gt;
&lt;a href=&quot;http://www.northcotetownhall.com.au&quot;&gt;Northcote Town Hall, Northcote&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Performance dates:&lt;/strong&gt; \
Thurs 29/8, Fri 30/8, Sat 31/8, Sun1/9 @ 7pm \
Wed 4/9, Fri 6/9, Sun 8/9 @ 8pm\
Thurs 5/9, Sat 7/9 @ 6pm\
\
All shows will be performed in Studio one and two in Northcote Town
Hall- 189 High Street, Northcote. \
\
&lt;strong&gt;For all bookings and enquiries please contact the Student Theatre and
Film Office on 9479 1198&lt;/strong&gt;&lt;/p&gt;
</description>
        <pubDate>Sat, 03 Aug 2013 00:00:00 +1000</pubDate>
        <link>http://kevanatkins.com/2013/08/03/do-androids-dream-of-electric-sheep-tickets-and-info.html</link>
        <guid isPermaLink="true">http://kevanatkins.com/2013/08/03/do-androids-dream-of-electric-sheep-tickets-and-info.html</guid>
        
        <category>theatre</category>
        
        
      </item>
    
      <item>
        <title>Androids</title>
        <description>&lt;p&gt;Since June, I have been musical director &amp;amp; sound designer on a
production of “ &lt;em&gt;Do Androids Dream of Electric Sheep?”. &lt;/em&gt;The text was
originally adapted from the Phillip K. Dick novel by Edward Einhorn for
the Untitled Theatre company production in 2010 which an original score
(including six arias) for cello and loop pedal composed by Henry Akona. &lt;/p&gt;

&lt;p&gt;In this 2013 production at La Trobe, directed by Bob Pavlich, I have
been enlisted to adapt and orchestrate the layered score to best suit
this particular production. From the outset, I knew it would be a
challenge in terms of handling all Henry’s underscoring (which actually
covers most of the play) as well as preparing Luna (played by Sarah
Wall) for her arias, which own up to strong Schoenberg and Stravinsky
influences. As such, they present many challenges to the performer in
terms of intonation and even more so, rhythm. Nonetheless, we’re
definitely in a good place with all the arias learnt. They’re already
shaping into excellent performances.&lt;/p&gt;

&lt;p&gt;Now in the fourth week of rehearsals after weeks of experimenting,
recording, sequencing, editing, attending rehearsals, taking frantic
notes, rinsing and repeating we have finally reached the plotting
stage. This has to be one of the most sonically dense productions I have
ever worked on. Over three days, I have plotted 115 sound cues (90
triggered and 25 auto-follow) for this 90 minute show. Today is the last
rehearsal before we head into the venue two weeks from now. In the mean
time, we are having a break from rehearsals while Bob runs this year’s
Short Works season. I can’t wait to get this into the venue!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Do Androids Dream of Electric Sheep?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;When: 29th Aug - 8th Sep \
&lt;em&gt;(stay tuned for more specific dates and booking information)&lt;/em&gt;&lt;/li&gt;
  &lt;li&gt;Where: Northcote Town Hall, Studio One&lt;/li&gt;
&lt;/ul&gt;
</description>
        <pubDate>Fri, 26 Jul 2013 00:00:00 +1000</pubDate>
        <link>http://kevanatkins.com/2013/07/26/androids.html</link>
        <guid isPermaLink="true">http://kevanatkins.com/2013/07/26/androids.html</guid>
        
        <category>theatre</category>
        
        
      </item>
    
      <item>
        <title>Androids and QLab</title>
        <description>&lt;p&gt;Just had the sound/lighting operator in for today’s run. 116 sound cues
(91 triggered and 25 auto-follow). Hopefully it didn’t look too scary…&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/images/QLab.jpg&quot; alt=&quot;QLab.jpg&quot; /&gt;&lt;/p&gt;
</description>
        <pubDate>Fri, 26 Jul 2013 00:00:00 +1000</pubDate>
        <link>http://kevanatkins.com/2013/07/26/androids-and-qlab.html</link>
        <guid isPermaLink="true">http://kevanatkins.com/2013/07/26/androids-and-qlab.html</guid>
        
        <category>theatre</category>
        
        
      </item>
    
  </channel>
</rss>
