User:Max Dovey/2013diary: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
===2013 Diary===
===2013 Diary===
I reprinted each day of last years diary and overlayed in onto a single composition. I was interested in the compression of time into a single image.  
I reprinted each day of last years diary and overlayed in onto a single composition. I was interested in the compression of time into a single image.  
Presented at Saratim Trust as part of Museum Nacht , March 8th 2014
Presented at Saratim Trust as part of Museum Nacht , March 8th 2014 where the printer was placed to print out each page of the diary every minute onto the overhead projector.
 
 
Below is the orginal scan gif and python code to print. <br>
 
[[File:Resiz*-1.jpg]]
[[File:Resiz*-1.jpg]]
[[File:Resiz*-4.jpg]]
[[File:Resiz*-4.jpg]]
[[File:Resiz*-3.jpg]]
[[File:Resiz*-3.jpg]]
<source lang = "python">
import os, sys
import time
filepath = "/Users/user/Desktop/PZI/practice/trimester2/2013diary/diary2/JPEG2print"
dirlist = os.listdir(filepath)
pages = 0
for i in dirlist:
    pages = pages + 1
    print pages
    print i
    os.system("lpr -p /Users/user/Desktop/PZI/practice/trimester2/2013diary/diary2/JPEG2print/img0%02d.jpg" % pages)
    time.sleep(30)
</source>
[[File:500gif.gif]]
[[File:500gif.gif]]
[[File:52-1low2.jpg]]
[[File:52-1low2.jpg]]

Latest revision as of 18:46, 26 March 2014

2013 Diary

I reprinted each day of last years diary and overlayed in onto a single composition. I was interested in the compression of time into a single image. Presented at Saratim Trust as part of Museum Nacht , March 8th 2014 where the printer was placed to print out each page of the diary every minute onto the overhead projector.


Below is the orginal scan gif and python code to print.

Resiz*-1.jpg Resiz*-4.jpg Resiz*-3.jpg

 
import os, sys
import time 

filepath = "/Users/user/Desktop/PZI/practice/trimester2/2013diary/diary2/JPEG2print"
dirlist = os.listdir(filepath)
pages = 0 
for i in dirlist:
    pages = pages + 1 
    print pages 
    print i 
    os.system("lpr -p /Users/user/Desktop/PZI/practice/trimester2/2013diary/diary2/JPEG2print/img0%02d.jpg" % pages)
    time.sleep(30)

500gif.gif 52-1low2.jpg