<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Networked_Performance &#187; cinema</title>
	<atom:link href="http://www.turbulence.org/blog/tags/cinema/feed" rel="self" type="application/rss+xml" />
	<link>http://turbulence.org/blog</link>
	<description>A research blog about network-enabled performance</description>
	<pubDate>Thu, 09 Feb 2012 17:00:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Search by Image, Recursively, Transparent PNG, #1</title>
		<link>http://turbulence.org/blog/2012/01/15/search-by-image-recursively-transparent-png-1/</link>
		<comments>http://turbulence.org/blog/2012/01/15/search-by-image-recursively-transparent-png-1/#comments</comments>
		<pubDate>Sun, 15 Jan 2012 22:14:36 +0000</pubDate>
		<dc:creator>jo</dc:creator>
		
		<category><![CDATA[cinema]]></category>

		<category><![CDATA[networked]]></category>

		<guid isPermaLink="false">http://turbulence.org/blog/?p=13830</guid>
		<description><![CDATA[Search by Image, Recursively, Transparent PNG, #1 by Sebastian Schmieg:
import re, subprocess, time
class GoogleSearchByImage :
    GOOGLE_URL = &#8220;http://www.google.com&#8221;
    GOOGLE_SBI_URL = &#8220;/searchbyimage?image_url=&#8221;
    AGENT_ID = &#8220;Mozilla/5.0 (X11; Linux x86_64; rv:7.0.1) Gecko/20100101 Firefox/7.0.1&#8243;
    MIN_SECONDS_BETWEEN_REQUESTS = 2
    _myLastRequestTimestamp = 0
    _myCurrentHtml [...]]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/34949864?title=0&amp;byline=0&amp;portrait=0" width="400" height="300" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><strong>Search by Image, Recursively, Transparent PNG, #1</strong> by <a href="http://sebastianschmieg.com/searchbyimage">Sebastian Schmieg</a>:</p>
<p>import re, subprocess, time</p>
<p>class GoogleSearchByImage :</p>
<p>    GOOGLE_URL = &#8220;http://www.google.com&#8221;</p>
<p>    GOOGLE_SBI_URL = &#8220;/searchbyimage?image_url=&#8221;</p>
<p>    AGENT_ID = &#8220;Mozilla/5.0 (X11; Linux x86_64; rv:7.0.1) Gecko/20100101 Firefox/7.0.1&#8243;</p>
<p>    MIN_SECONDS_BETWEEN_REQUESTS = 2</p>
<p>    _myLastRequestTimestamp = 0</p>
<p>    _myCurrentHtml = &#8220;&#8221;</p>
<p>    def scrape(self, theReference) :<br />
        if time.time() - self._myLastRequestTimestamp < self.MIN_SECONDS_BETWEEN_REQUESTS :<br />
            time.sleep(self.MIN_SECONDS_BETWEEN_REQUESTS - (time.time() - self._myLastRequestTimestamp))<br />
            return self.scrape(theReference)<br />
        else :<br />
            self._myCurrentHtml = self.getHtml(self.GOOGLE_URL + self.GOOGLE_SBI_URL + theReference)<br />
            self._myLastRequestTimestamp = time.time()</p>
<p>    def getHtml(self, theUrl) :<br />
        try :<br />
            myHtml = subprocess.check_output(["curl", "-L", "-A", self.AGENT_ID, theUrl], stderr=subprocess.STDOUT)<br />
            return myHtml<br />
        except :<br />
            print "Curl error. Will sleep for 10 seconds"<br />
            time.sleep(10)<br />
            return self.getHtml(theUrl)</p>
<p>    def getSimilarImages(self) :<br />
        myPattern = re.compile("\" href\=\"\/imgres\?imgurl\=(.*?)(\&#038;amp|\%3F)")<br />
        myImages = myPattern.findall(self._myCurrentHtml)<br />
        myImagesUrls = []<br />
        for myImage in myImages :<br />
            myImagesUrls.append(myImage[0])<br />
        return myImagesUrls</p>
<p>    def getLinkToSimilarImagesPage(self) :<br />
        myPattern = re.compile("\<a href\=\"([^\"]+[.]?)\"\>Visually similar images\<\/a\>&#8220;)<br />
        myPageUrl = myPattern.findall(self._myCurrentHtml)<br />
        myPageUrl = str(myPageUrl[0]).replace(&#8221;&amp;&#8221;, &#8220;&#038;&#8221;)<br />
        myPageUrl += &#8220;&#038;biw=1600&#038;bih=825&#8243; # always keep this<br />
        return self.GOOGLE_URL + myPageUrl</p>
]]></content:encoded>
			<wfw:commentRss>http://turbulence.org/blog/2012/01/15/search-by-image-recursively-transparent-png-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Meet Discotrope: The Secret Nightlife of Solar Cells</title>
		<link>http://turbulence.org/blog/2011/10/29/meet-discotrope-the-secret-nightlife-of-solar-cells/</link>
		<comments>http://turbulence.org/blog/2011/10/29/meet-discotrope-the-secret-nightlife-of-solar-cells/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 15:06:26 +0000</pubDate>
		<dc:creator>jo</dc:creator>
		
		<category><![CDATA[audio/visual]]></category>

		<category><![CDATA[calls + opps]]></category>

		<category><![CDATA[cinema]]></category>

		<category><![CDATA[dance]]></category>

		<category><![CDATA[systems]]></category>

		<guid isPermaLink="false">http://turbulence.org/blog/?p=13525</guid>
		<description><![CDATA[
Ever wondered what solar cells do at night? Introducing Meet Discotrope: The Secret Nightlife of Solar Cells  by Amy Alexander and Annina Rüst, with algorithmic sound design by Cristyn Magnus. Discotrope performances invoke both alternative energy and the curious history of dance in cinema – from backlots to backyards – from Thomas Edison to [...]]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/30250301?title=0&amp;byline=0&amp;portrait=0" width="400" height="225" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe></p>
<p>Ever wondered what solar cells do at night? Introducing <a href="http://discotrope.org"><strong>Meet Discotrope: The Secret Nightlife of Solar Cells</strong></a>  by <em>Amy Alexander</em> and <em>Annina Rüst</em>, with algorithmic sound design by <em>Cristyn Magnus</em>. <strong>Discotrope</strong> performances invoke both alternative energy and the curious history of dance in cinema – from backlots to backyards – from Thomas Edison to YouTube. </p>
<p>So what does that mean? We project films and videos of people &#8220;dancing at cameras&#8221; onto a disco ball where we have replaced some of the mirrors with solar cells. The solar cells reflect the videos back onto walls and surfaces. The light from the projection causes the solar cells to produce current and consequently, they power the motor that rotates the ball.</p>
<p>Know someplace that might enjoy some nocturnally solar-powered semi-zoetropically live audiovisual performance? <strong>Discotrope</strong> events can range from seated concerts and gallery performances to public space dance parties. You can contact us <a href="http://discotrope.org/?page_id=68">here</a>.</p>
<p>Can a crazy, lo-tech gadget be a serious visual performance instrument - and possibly represent the future of the future? We’re just about daft enough to think so. We wrote a little essay about that and some other things. It&#8217;s called, &#8220;<a href="http://discotrope.org/?p=764">The Future is Dead. Long Live the Future</a>.&#8221; </p>
]]></content:encoded>
			<wfw:commentRss>http://turbulence.org/blog/2011/10/29/meet-discotrope-the-secret-nightlife-of-solar-cells/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Live Stage: The Body Electric [Portland]</title>
		<link>http://turbulence.org/blog/2011/07/13/live-stage-the-body-electric-portland/</link>
		<comments>http://turbulence.org/blog/2011/07/13/live-stage-the-body-electric-portland/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 21:04:05 +0000</pubDate>
		<dc:creator>jo</dc:creator>
		
		<category><![CDATA[cinema]]></category>

		<category><![CDATA[language]]></category>

		<category><![CDATA[livestage]]></category>

		<category><![CDATA[participatory]]></category>

		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://turbulence.org/blog/?p=12929</guid>
		<description><![CDATA[The Body Electric: An Evening with Jesse Malmed :: July 20, 2011; 7:00 pm (reception to follow) :: Whitsell Auditorium, The Northwest Film Center, Portland Art Museum.
Whip smart, blissfully dense and multipronged cinema and performance; conceptual poetics, direct address, participatory movie song. Jesse Malmed presents a fascinating and manifold mix of conceptually rich video L=A=N=G=U=A=G=E [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://turbulence.org/blog/images/2011/07/jm-be-something-ftdavis_v2.jpg" alt="" title="jm-be-something-ftdavis_v2" width="285" height="213" class="alignnone size-full wp-image-12930" /><strong>The Body Electric: An Evening with Jesse Malmed</strong> :: July 20, 2011; 7:00 pm (reception to follow) :: Whitsell Auditorium, <a href="http://www.nwfilm.org/">The Northwest Film Center</a>, Portland Art Museum.</p>
<p>Whip smart, blissfully dense and multipronged cinema and performance; conceptual poetics, direct address, participatory movie song. Jesse Malmed presents a fascinating and manifold mix of conceptually rich video L=A=N=G=U=A=G=E poetics, process-intensive bi-fidelity abstractedelia and participatory installations such as the multiple iterations of CONVERSATIONAL KARAOKE!! (in which audience members perform dizzying, strange and incisive texts of the artist&#8217;s design).</p>
<p><iframe src="http://player.vimeo.com/video/25831786?title=0&amp;byline=0&amp;portrait=0" width="400" height="300" frameborder="0"></iframe></p>
<p><a href="http://www.jessemalmed.net">Jesse Malmed</a>: artist, curator; video, film, installation, performance + text; Santa Fe, Bard College, San Francisco, Portland (, Chicago); Deep Leap Microcinema, Cinema Project, Creative Music Guild, Lasercave; Body Electronic, This Is What, Conversational Karaoke; galleries, microcinemas, bars, barns, universities, underground, skybound. The sonic, visual and (extra-)communicative potentials of language, a keen eye toward the history of experimental media art and an interest in the transcendent power of pure cinema&#8230; equal parts conceptual and instinctual, the work bears a zany levity that helps to buoy sometimes-incomprehensible​ blissmash visuals and dense textwork.&#8221; (This show also marks the release of several new publications on paper and cassette and the premieres of three new moving image works.)<br />
www.jessemalmed.net</p>
]]></content:encoded>
			<wfw:commentRss>http://turbulence.org/blog/2011/07/13/live-stage-the-body-electric-portland/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dietmar Offenhuber</title>
		<link>http://turbulence.org/blog/2011/05/25/dietmar-offenhuber/</link>
		<comments>http://turbulence.org/blog/2011/05/25/dietmar-offenhuber/#comments</comments>
		<pubDate>Wed, 25 May 2011 18:39:51 +0000</pubDate>
		<dc:creator>jo</dc:creator>
		
		<category><![CDATA[audio/visual]]></category>

		<category><![CDATA[cinema]]></category>

		<category><![CDATA[data]]></category>

		<category><![CDATA[im/material]]></category>

		<category><![CDATA[installation]]></category>

		<category><![CDATA[perception]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://turbulence.org/blog/?p=12659</guid>
		<description><![CDATA[
For those of you who missed Dietmar Offenhuber&#8217;s brilliant Upgrade! Boston presentation last night, here are some of the projects he shared with us (headphones recommended):

please stand back (excerpt) from stadtmusik on Vimeo.
zurückbleiben bitte!: &#8220;Above and below do not exist at first, and other indications of direction do not work either. The picture itself is [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://turbulence.org/blog/images/2011/05/zuruckbleiben_bitte.png" alt="" title="zuruckbleiben_bitte" width="500" height="198" class="alignnone size-full wp-image-12660" /><br />
For those of you who missed <strong>Dietmar Offenhuber&#8217;s</strong> brilliant <a href="http://turbulence.org/upgrade_boston/2011/05/dietmar-offenhuber/"><strong>Upgrade! Boston</strong></a> presentation last night, here are some of the projects he shared with us (headphones recommended):</p>
<p><iframe src="http://player.vimeo.com/video/4692912?title=0&amp;byline=0&amp;portrait=0" width="400" height="302" frameborder="0"></iframe>
<p><a href="http://vimeo.com/4692912">please stand back (excerpt)</a> from <a href="http://vimeo.com/stadtmusik">stadtmusik</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><a href="http://offenhuber.net/zuruckbleiben-bitte/"><strong>zurückbleiben bitte!</strong></a>: &#8220;Above and below do not exist at first, and other indications of direction do not work either. The picture itself is an agglomeration of details that are constantly being created and disappearing, becoming and ceasing to exist, assembling and breaking up.&#8221; (Marc Ries)</p>
<p><iframe src="http://player.vimeo.com/video/8980160?title=0&amp;byline=0&amp;portrait=0" width="400" height="225" frameborder="0"></iframe>
<p><a href="http://vimeo.com/8980160">Dust till Dawn</a> from <a href="http://vimeo.com/user802058">dietmar offenhuber</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><strong><a href="http://offenhuber.net/dust-till-dawn/">dust till dawn</a></strong>: <em>fun with lasers, noise and dirt</em> by maex decker, dietmar offenhuber, ushi reiter: DTD kicks up a lot of dust – with atmosphere being its sole medium of interaction. The project is a sound installation for a room with dusty floor, on which a number of phonographs are placed, playing back silent vinyl records. As a result of the visitors movements, particles of dust accumulate in the grooves of empty records and define a musical score. A carpet of monochromatic light visualizes the turbulence in the atmosphere and detects its ephemeral structures, which are directly linked to the noise generated by the dusty records. Over time, the physical impact of the interaction irreversibly consumes the interface and destroys the needles of the phonographs.</p>
<p><iframe src="http://player.vimeo.com/video/4693457?title=0&amp;byline=0&amp;portrait=0" width="400" height="320" frameborder="0"></iframe>
<p><a href="http://vimeo.com/4693457">mauerpark (excerpt)</a> from <a href="http://vimeo.com/stadtmusik">stadtmusik</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><strong><a href="http://offenhuber.net/mauerpark/">mauerpark</a></strong>: The winter landscape of mauerpark in berlin turns into a theatrical stage, populated by pedestrians and cyclists following various, sometimes mysterious activities. What seems like a slice of daily life is in fact heavily digitally manipulated. The soundtrack creates a second space, sometimes contradicting the visual events in the picture. The travelling focus directs the visual attention and is controlled by subtle acoustic ambience. Its unnatural strength has a miniaturizing effect on the whole scenery.</p>
<p>Credits</p>
<p>sam auinger<br />
dietmar offenhuber<br />
hannes strobl<br />
actors: katrin emler, daniel scheffler, martin offenhuber</p>
<p><iframe src="http://player.vimeo.com/video/14930973?title=0&amp;byline=0&amp;portrait=0" width="400" height="300" frameborder="0"></iframe>
<p><a href="http://vimeo.com/14930973">loopcity</a> from <a href="http://vimeo.com/user802058">dietmar offenhuber</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><strong><a href="http://offenhuber.net/loopcity/">loopcity</a></strong>: <em>describing the city through repeated everyday actions</em></p>
<p>In his novel <em>L’Innommable</em> Beckett describes a strange world made up from a complex system of repetitive cyclical events. What is described as social architecture – the spatial / temporal organisation of everyday life- is often very similar to this: people do the same things at the same time. They follow the same routes in regular periods. Sometimes when riding the tram, visiting a cafe or going to the supermarket I recognize strangers who seem to live in the same “loops” like I do. The Project is a subjective description of the city as a set of repeating actions and events on different scales. A space composed of closed loops, intersecting each other. each loop is a thematic entity, a story: a stroll through the shelves of a local supermarket. Looking for a free place in a parking lot. A tourists guide round through a district. A hotel maid’s morning round.</p>
<p><iframe src="http://player.vimeo.com/video/4692630?title=0&amp;byline=0&amp;portrait=0" width="400" height="320" frameborder="0"></iframe>
<p><a href="http://vimeo.com/4692630">besenbahn (excerpt)</a> from <a href="http://vimeo.com/stadtmusik">stadtmusik</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>&#8220;the freewaysystem in its totality is now a single comprehensible place, a coherent state of mind, a complete way of life&#8221; - Reyner Banham</p>
<p>&#8220;It&#8217;s subject is not &#8220;natural&#8221; perception, but perception put in motion by modern means of transportation, and therefore implicitly the history of an epochal transformation of the way in which time and space is experienced. </p>
<p>It has come to a preliminary end in suitable contexts – for example cities such as Los Angeles, which has been shaped by the history of motorization – where moving perception now seems to be regarded as integral to natural perception.</p>
<p>The thesis presented by <strong><a href="http://offenhuber.net/besenbahn/">besenbahn</a></strong> in this regard would therefore be that the specifically aesthetic quality of such animated perception is absent from the forms of audiovisual representation which are already considered natural (such as indicating movement by means of a tracking shot): In its fragmentation of the continuum of perception, the &#8220;subjective geometry which defines space through intervals of time&#8221; (Dietmar Offenhuber) illustrates a manner of experience which could remain submerged because it is already so familiar.&#8221; – Vrääth Öhner</p>
<p>2001, 10 min<br />
music: tamtam (Sam Auinger, Hannes Strobl)<br />
more information on <a href="http://www.stadtmusik.org">www.stadtmusik.org</a><br />
video: Dietmar Offenhuber</p>
]]></content:encoded>
			<wfw:commentRss>http://turbulence.org/blog/2011/05/25/dietmar-offenhuber/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Live Stage: All The World&#8217;s A Screen [UK + Spain]</title>
		<link>http://turbulence.org/blog/2011/05/25/live-stage-all-the-worlds-a-screen-uk-spain/</link>
		<comments>http://turbulence.org/blog/2011/05/25/live-stage-all-the-worlds-a-screen-uk-spain/#comments</comments>
		<pubDate>Wed, 25 May 2011 18:03:37 +0000</pubDate>
		<dc:creator>jo</dc:creator>
		
		<category><![CDATA[cinema]]></category>

		<category><![CDATA[generative]]></category>

		<category><![CDATA[interactive]]></category>

		<category><![CDATA[live cinema]]></category>

		<category><![CDATA[livestage]]></category>

		<category><![CDATA[networked]]></category>

		<category><![CDATA[performance]]></category>

		<category><![CDATA[telematic]]></category>

		<guid isPermaLink="false">http://turbulence.org/blog/?p=12657</guid>
		<description><![CDATA[All The World&#8217;s A Screen &#8212; A live telematic performance by Charlotte Gould &#38; Paul Sermon :: May 28, 2011; 4:00 - 6:00 pm (Manchester) + 5:00 - 7:00 pm (Barcelona) :: MadLab, 36-40 Edge Street, Manchester, M4 1HN + Hangar.org, Poblenou, Barcelona.
Audiences in Manchester and Barcelona will be joined together on screen for the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-12658" title="all_the_worlds_a_screen" src="http://turbulence.org/blog/images/2011/05/all_the_worlds_a_screen.jpg" alt="" width="252" height="300" /><a href="http://alltheworldsascreen.tumblr.com"><strong>All The World&#8217;s A Screen</strong></a> &#8212; A live telematic performance by <em>Charlotte Gould</em> &amp; <em>Paul Sermon</em> :: May 28, 2011; 4:00 - 6:00 pm (Manchester) + 5:00 - 7:00 pm (Barcelona) :: <em>MadLab</em>, 36-40 Edge Street, Manchester, M4 1HN + <em>Hangar.org</em>, Poblenou, Barcelona.</p>
<p>Audiences in Manchester and Barcelona will be joined together on screen for the first time to create their own interactive generative cinema experience complete with sets, costumes and props. Employing the scenographic techniques of Alfred Hitchcock the artists have created a miniature film set in which the audience can act and direct their own movie, transporting participants into animated environments and sets where they will create their own unique narrative. Participants in Manchester will be transported into this telepresent experience via a blue-box studio to join the ‘players’ in Barcelona within the dramaturgy of the model set.</p>
<p>This immersive interactive installation pushes the boundaries of telematic art and generative cinema, combining the possibilities of telepresent performance with miniature scale-models and animated scenes for the development of audience participation that explores the way narratives can be revealed through a subtle interplay between artist, audience and environment.</p>
<p>With key references to the telematic stage, user generated performances and the dramaturgy of networked communication this project references Shakespeare’s infamous line ‘All the world’s a stage’ with the seven rooms of a model film set relating to the seven ages of man presented in ‘As You Like It’, providing a metaphysical backdrop to steer the unfolding plot.</p>
<p>All the world’s a screen is an interactive telematic project created by Charlotte Gould and Paul Sermon from the University of Salford, developed during their residency at the Museu d’Art Contemporani de Barcelona MACBA Study Centre and their studio residency at Hangar.org, a visual arts production centre in Poblenou, Barcelona.</p>
]]></content:encoded>
			<wfw:commentRss>http://turbulence.org/blog/2011/05/25/live-stage-all-the-worlds-a-screen-uk-spain/feed/</wfw:commentRss>
		</item>
		<item>
		<title>&#8220;Discotrope&#8221; by Amy Alexander and Annina Rüst</title>
		<link>http://turbulence.org/blog/2011/05/24/discotrope-by-amy-alexander-and-annina-rust/</link>
		<comments>http://turbulence.org/blog/2011/05/24/discotrope-by-amy-alexander-and-annina-rust/#comments</comments>
		<pubDate>Tue, 24 May 2011 17:31:18 +0000</pubDate>
		<dc:creator>jo</dc:creator>
		
		<category><![CDATA[audio/visual]]></category>

		<category><![CDATA[cinema]]></category>

		<category><![CDATA[dance]]></category>

		<category><![CDATA[immersive]]></category>

		<category><![CDATA[participatory]]></category>

		<category><![CDATA[public]]></category>

		<guid isPermaLink="false">http://turbulence.org/blog/?p=12648</guid>
		<description><![CDATA[
Discotrope Work-in-Progress Preview - May 2011 from Amy Alexander on Vimeo.
Discotrope is an audiovisual performance for public spaces by Amy Alexander and Annina Rüst. Dance party performances invoke both alternative energy and the curious history of dance in cinema – from backlots to backyards.
]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/23139743?title=0&amp;byline=0&amp;portrait=0" width="400" height="225" frameborder="0"></iframe>
<p><a href="http://vimeo.com/23139743">Discotrope Work-in-Progress Preview - May 2011</a> from <a href="http://vimeo.com/uebergeek">Amy Alexander</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><strong><a href="http://discotrope.org/">Discotrope</a></strong> is an audiovisual performance for public spaces by <em>Amy Alexander</em> and <em>Annina Rüst</em>. Dance party performances invoke both alternative energy and the curious history of dance in cinema – from backlots to backyards.</p>
]]></content:encoded>
			<wfw:commentRss>http://turbulence.org/blog/2011/05/24/discotrope-by-amy-alexander-and-annina-rust/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Diorama Panorama: Zoe Beloff Interview</title>
		<link>http://turbulence.org/blog/2011/05/21/diorama-panorama-zoe-beloff-interview/</link>
		<comments>http://turbulence.org/blog/2011/05/21/diorama-panorama-zoe-beloff-interview/#comments</comments>
		<pubDate>Sat, 21 May 2011 15:33:53 +0000</pubDate>
		<dc:creator>jo</dc:creator>
		
		<category><![CDATA[3-D]]></category>

		<category><![CDATA[cinema]]></category>

		<category><![CDATA[interview]]></category>

		<category><![CDATA[multimedia]]></category>

		<guid isPermaLink="false">http://turbulence.org/blog/?p=12635</guid>
		<description><![CDATA[Diorama Panorama: Zoe Beloff Gets Inside Your Brain with 3D Movies and Models in &#8216;The Somnambulists&#8217; by Tanja Laden, LA Weekly Blogs:
&#8220;Using early media like 19th century stereopticon slides, found footage and her own original 3D films, Zoe Beloff is a scavenger who makes quirky, multidimensional pieces of multimedia. She describes herself as a &#8220;medium&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://turbulence.org/blog/images/2011/05/2beloff.jpg" alt="" title="2beloff" width="285" height="254" class="alignnone size-full wp-image-12636" /><strong><a href="http://blogs.laweekly.com/stylecouncil/2011/05/3d_panorama_psychology_science.php">Diorama Panorama: Zoe Beloff Gets Inside Your Brain with 3D Movies and Models in &#8216;The Somnambulists&#8217;</a></strong> by Tanja Laden, LA Weekly Blogs:</p>
<p>&#8220;Using early media like 19th century stereopticon slides, found footage and her own original 3D films, <a href="http://www.youtube.com/user/zoebeloff">Zoe Beloff</a> is a scavenger who makes quirky, multidimensional pieces of multimedia. She describes herself as a &#8220;medium&#8221; who speaks through artifacts of the past to create visual commentaries on the psychological implications of technology and civilization.</p>
<p>Devoted to reviving archaic and near-obsolete pre-cinematic spectacles, the <a href="http://www.panoramaonview.org/">Velaslavasay Panorama</a> in an appropriate stage for &#8220;The Somnambulists,&#8221; Beloff&#8217;s staging of the unconscious via five small wooden dioramas in which scaled-down archival and original 3D film footage of mental patients provides continues loops of hysterical dramas. We spoke with the artist herself in order to gain insight into &#8220;<a href="http://www.zoebeloff.com/somnambulistsWeb/">The Somnambulists</a>&#8221; and her own &#8220;theater of the mind.&#8221;" More <a href="http://blogs.laweekly.com/stylecouncil/2011/05/3d_panorama_psychology_science.php">>></a> Also see <a href="http://www.turbulence.org/Works/illusions/">Philosophical Toy World</a> on Turbulence.</p>
]]></content:encoded>
			<wfw:commentRss>http://turbulence.org/blog/2011/05/21/diorama-panorama-zoe-beloff-interview/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scripting Writing and Reading in Jim Andrews&#8217;s Digital Poems</title>
		<link>http://turbulence.org/blog/2011/03/07/scripting-writing-and-reading-in-jim-andrewss-digital-poems/</link>
		<comments>http://turbulence.org/blog/2011/03/07/scripting-writing-and-reading-in-jim-andrewss-digital-poems/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 14:43:17 +0000</pubDate>
		<dc:creator>jo</dc:creator>
		
		<category><![CDATA[algorithmic]]></category>

		<category><![CDATA[audio/visual]]></category>

		<category><![CDATA[cinema]]></category>

		<category><![CDATA[e-literature]]></category>

		<category><![CDATA[interactive]]></category>

		<category><![CDATA[language]]></category>

		<category><![CDATA[lecture]]></category>

		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://turbulence.org/blog/?p=12229</guid>
		<description><![CDATA[MIT Tech TV
Scripting Writing and Reading in Jim Andrews&#8217;s Digital Poems by Manuel Portela (University of Coimbra, Portugal) :: Moderator: Noel Jackson (MIT) :: July 14, 2010.
Abstract: The purpose of this paper is to demonstrate the theoretical relevance of kinetic poetry for studying the interaction between language, digital media, and signifying processes. Several writers have [...]]]></description>
			<content:encoded><![CDATA[<p><object name="ttvplayer" id="ttvplayer" type="application/x-shockwave-flash" allowScriptAccess="always" allowNetworking="all" allowFullScreen="true" height="288" width="437" data="http://www.kaltura.com/index.php/kwidget/wid/_203822/uiconf_id/1898102/entry_id/1_fmmlzbt2/"><param name="allowScriptAccess" value="always" /><param name="allowNetworking" value="all" /><param name="allowFullScreen" value="true" /><param name="bgcolor" value="#000000" /><param name="movie" value="http://www.kaltura.com/index.php/kwidget/wid/_203822/uiconf_id/1898102/entry_id/1_fmmlzbt2<param name="flashVars" value="autoPlay=false"/>a href=&#8221;http://ttv.mit.edu&#8221;>MIT Tech TV</a></object></p>
<p><strong><a href="http://techtv.mit.edu/videos/7863-scripting-writing-and-reading-in-jim-andrewss-digital-poems">Scripting Writing and Reading in Jim Andrews&#8217;s Digital Poems</a></strong> by <strong>Manuel Portela</strong> (University of Coimbra, Portugal) :: Moderator: Noel Jackson (MIT) :: July 14, 2010.</p>
<p>Abstract: The purpose of this paper is to demonstrate the theoretical relevance of kinetic poetry for studying the interaction between language, digital media, and signifying processes. Several writers have been using digital poetry to investigate meaning production as a function of formal operations upon linguistic, computational, and other cultural codes. Interactive kinaesthesia, the main algorithmic trope examined here, enacts the temporality of writing and the temporality of reading in medium-specific forms and genres that call attention to the way their machine and human processing happens. The cinematic enactment of time in the combined motions of computer-executed code and human-activated display will be seen in digital poems by Jim Andrews. His scripts are analysed as models for specific semiotic and interpretive processes. Computer performance and reader performance become co-dependent and intertwined as an entangled field.</p>
]]></content:encoded>
			<wfw:commentRss>http://turbulence.org/blog/2011/03/07/scripting-writing-and-reading-in-jim-andrewss-digital-poems/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Remix Cinema Workshop [Oxford]</title>
		<link>http://turbulence.org/blog/2010/11/21/remix-cinema-workshop-oxford/</link>
		<comments>http://turbulence.org/blog/2010/11/21/remix-cinema-workshop-oxford/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 21:56:45 +0000</pubDate>
		<dc:creator>jo</dc:creator>
		
		<category><![CDATA[audio/visual]]></category>

		<category><![CDATA[calls + opps]]></category>

		<category><![CDATA[cinema]]></category>

		<category><![CDATA[collaboration]]></category>

		<category><![CDATA[remix]]></category>

		<category><![CDATA[web 2.0]]></category>

		<category><![CDATA[workshop]]></category>

		<category><![CDATA[writings]]></category>

		<guid isPermaLink="false">http://turbulence.org/blog/?p=11918</guid>
		<description><![CDATA[Remix Cinema Workshop :: March 24-25, 2011 :: Oxford Internet Institute (University of Oxford, UK) :: Call for Presentations &#038; Papers &#8212; Abstracts Deadline: January 7, 2011.
In August 2010, the remix movie Star Wars Uncut was the first user-generated production to win an Emmy Award. Other online platforms such as wreckamovie.com enable online communities to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://turbulence.org/blog/images/2010/11/remix_cinema.jpg" alt="" title="remix_cinema" width="285" height="253" class="alignnone size-full wp-image-11919" /><a href="http://www.remixcinema.org"><strong>Remix Cinema Workshop</strong></a> :: March 24-25, 2011 :: <a href="http://www.oii.ox.ac.uk">Oxford Internet Institute</a> (University of Oxford, UK) :: <strong>Call for Presentations &#038; Papers</strong> &#8212; Abstracts Deadline: January 7, 2011.</p>
<p>In August 2010, the remix movie <a href="http://www.starwarsuncut.com">Star Wars Uncut</a> was the first user-generated production to win an Emmy Award. Other online platforms such as <a href="http://wreckamovie.com">wreckamovie.com</a> enable online communities to form for independent and open source filmmaking, harnessing distributed forms of collaborative co-creation rather than relying on traditional organisational structures. Cloud-based editing suites have begun appearing: <a href="http://www.stroome.com/">Stroome.com</a> was launched in April 2010 by USC<br />
Annenberg with the tag-line &#8220;mix it up. mash it out.&#8221; Digitalised photos, videos, and sound, easily accessible through popular websites, constitute a diverse online repository of content that is being used for artistic remix purposes. Recently, the Electronic Frontier Foundation won <a href="http://www.eff.org/press/archives/2010/07/26">a court case</a> giving exemptions from the Digital Millennium Copyright Act (DMCA) anticircumvention provisions to amateur remix video artists sharing their works on e.g. YouTube. VJs and live cinema artists have permeated multiple cultural settings, ranging from mainstream contexts of entertainment to museums and other spaces devoted to the institutionalisation of art practices.</p>
<p>The examples outlined are just a few fitting under the umbrella term of &#8220;Remix Cinema&#8221;, and point to ways in which networked devices and resources are facilitating new artistic audiovisual practices and cultures. The concept of &#8216;remix&#8217; describes a broad set of social and cultural practices centred around the fragmentation and re-ordering of already existing and new content, whether text, sound or images. This 2-day multi-disciplinary workshop focuses on these diverse creative practices, particularly in the context of the contemporary socio-technical media environment. It brings together people interested in understanding and shaping remix cinema: doctoral students, established scholars, practising artists, and anyone else interested in addressing themes related to questions including:</p>
<p>- How is the contemporary media-scape influencing artistic audio-visual creation?<br />
- What can we learn from the changing practices in remix cinema?<br />
- How are new models of economic support (e.g. crowdfunding) changing productions of cultural objects?<br />
- What methodological and theoretical challenges arise in empirical studies on remix cinema, and how do we overcome these?</p>
<p>Call for Presentations &#038; Papers</p>
<p>The workshop committee welcomes proposals on any social, critical, cultural, aesthetic, political, technical, economic or legal aspects of remix cinema practices, cultures and works. We particularly welcome contributions that report on empirical studies and adopt innovative methodological approaches. Each presentation should last for a maximum of 15 minutes. Participants may present finished studies or works-in-progress, as the workshop also serves as a forum for gaining valuable feedback and exchanging ideas. All proposals will be peer reviewed by at least two members of the workshop&#8217;s academic committee (Oxford Internet Institute faculty).</p>
<p>Presenters are invited to submit full papers which will be eligible for review and possible inclusion in a subsequent ISBN publication on remix cinema.</p>
<p>The <strong>Remix Cinema Workshop</strong> is organised by the Oxford Internet Institute, (University of Oxford, UK) in collaboration with UNIA Practicas y Culturas Digitales (Universidad Internacional de Andaluca, ES), and is funded by the UK&#8217;s Art and Humanities Research Council&#8217;s (AHRC) Beyond Text programme.</p>
]]></content:encoded>
			<wfw:commentRss>http://turbulence.org/blog/2010/11/21/remix-cinema-workshop-oxford/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Abandon Normal Devices (AND) [Manchester]</title>
		<link>http://turbulence.org/blog/2010/09/27/abandon-normal-devices-and-manchester/</link>
		<comments>http://turbulence.org/blog/2010/09/27/abandon-normal-devices-and-manchester/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 18:45:20 +0000</pubDate>
		<dc:creator>jo</dc:creator>
		
		<category><![CDATA[cinema]]></category>

		<category><![CDATA[conference]]></category>

		<category><![CDATA[festival]]></category>

		<category><![CDATA[new media]]></category>

		<category><![CDATA[performance]]></category>

		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://turbulence.org/blog/?p=11695</guid>
		<description><![CDATA[Abandon Normal Devices (AND) &#8212; Festival of New Cinema &#038; Digital Culture :; October 1-7, 2010 :: 
Abandon Normal Devices (AND) is a new festival, taking place across the Northwest until 2012 and beyond. A catalyst for production and experimentation, AND invites us to consider what are our normal devices and how might we abandon [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://turbulence.org/blog/images/2010/09/lawrence-malstaf-shrink_1.jpg" alt="" title="lawrence-malstaf-shrink_1" width="285" height="256" class="alignnone size-full wp-image-11693" /><strong><a href="http://www.andfestival.org.uk">Abandon Normal Devices (AND)</a> &#8212; <em>Festival of New Cinema &#038; Digital Culture</em></strong> :; October 1-7, 2010 :: </p>
<p><strong>Abandon Normal Devices (AND)</strong> is a new festival, taking place across the Northwest until 2012 and beyond. A catalyst for production and experimentation, AND invites us to consider what are our normal devices and how might we abandon them?</p>
<p>From October 1-7, 2010 AND ventures into Manchester for a hybrid undertaking of cinema, performance and media art. We invite anarchists of the imagination to challenge the behaviours and systems that define who we are, through politically deconstructed networks, archives and reconfigured stereotypes. Our identities will be contested by an array of thinkers, cultural provocateurs, designers, filmmakers and artists. A week long feast for curious minds and disillusioned spirits – Welcome to Abandon Normal Devices!</p>
<p>Highlights  October 2010</p>
<p><strong>Shrink performances by Lawrence Malstaf</strong> -  Friday, Monday, Tuesday at The Freemasons’ Hall. Shrink invites you to contemplate and analyse the human form as volunteers are shrink-wrapped in a PVC cocoon.</p>
<p>AND Salons Join us for the AND Salons, the festival’s popular midday debates that bring together a variety of leading voices to challenge our beliefs and stir our opinions. 12:00 – 14:00 -  Saturday, Tuesday, Wednesday &#038; Thursday</p>
<p><strong>Protect Me From What I Want</strong> – film plus Q &#038;A with internationally renowned musician and artist, Kalup Linzy -  Saturday midday</p>
<p><strong>Self Made</strong>, UK Premiere of Gillian Wearing’s first feature film with Q &#038; A after 20:00 performance - Saturday Night</p>
<p>Midnight Mass AND proudly presents the UK debut of underground San Francisco phenomena, starring horror hostess Peaches Christ in this Rocky Horror-style celebration with UK premiere of <strong>All About Evil</strong> – Saturday &#038; Sunday late night</p>
<p><strong>Pepperminta, Dir Pipilotti Rist</strong> first feature film plus Q&#038;A  - Sunday Evening</p>
<p><strong>#media2012</strong>  - social media conference, with expertise in new and social media from around the UK, discussions will focus on opportunities, strategy and vision, to create a new media legacy for the Games and engage UK networks to discuss prospects within the context of an increasingly Digital Britain - Monday all day</p>
<p><strong>Radioactivism Workshop - Plan C How Did They Get Away with it?</strong> Thursday</p>
<p>Running throughout the festival</p>
<p><strong>marxism today – Phill Collins</strong> - Cornerhouse</p>
<p>UnSpooling:artists and cinema – Cornerhouse, greenroom, Islington Mill, 52<br />
Princess Street</p>
<p>Plan C activity is still a mystery, however it will be as imposing as it is inviting. “We wanted to share something special from Chernobyl with the rest of the world,” declared artist Eva Mattes, “Kids will love it”  -   Whitworth Park</p>
<p><strong>Recorders - Rafael Lozano-Hemmer</strong> – Manchester City Art Gallery</p>
<p>Empire’s Borders II – Western Enterprises inc – Chinese Arts Centre</p>
<p>Designed Disorder - CUBE</p>
<p>Offering a high calibre and energetic programme, Abandon Normal Devices 2010 will sprawl across and out from Manchester’s cultural spaces.  The festival is funded by Legacy Trust UK, an independent charity set up to build a lasting cultural and sporting legacy from the London 2012 Olympic and Paralympic Games and forms part of WE PLAY, the North West cultural legacy project led by new regional partnerships and managed by Arts Council England.</p>
<p>Full programme on <a href="http://www.andfestival.org.uk">www.andfestival.org.uk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://turbulence.org/blog/2010/09/27/abandon-normal-devices-and-manchester/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

