home dorian moore : (digital media) technologist

  • works I've just been <a href="http://www.ntk.net/2004/02/06/">NTK'd</a> [2004.02.06]

    though that should be all.your.name/are/belong/to/us

    Posted by Dorian Moore on Friday, February 6, 2004 at 17:45 GMT
    Last modified Thursday, October 20, 2005 at 20:22 GMT

  • works I've just been NTK'd [2004.02.05]

    A haphazard guide to cutting edge music of all kinds. Read on…

    Posted by Dorian Moore on Thursday, February 5, 2004 at 18:53 GMT
    Last modified Thursday, October 20, 2005 at 20:22 GMT

  • works Problems reading burnt ext2 DVDs [2003.12.10]

    Eric Waters suggests it might be a block size issue

    I've not had anyproblems with a block size of 1024, but Eric said he checked it out and 2048 was the appropriate blocksize for DVDs, so that might be it

    I found your website in a google search for info on burning DVD's in
    Linux. After following your instructions, I was able to nicely burn an
    unmountable ext2 DVD. The problem, I discovered (through the help of
    http://www.linux.net.nz/lists/NZLUG/2003/07/1243.html), is that the DVD
    is burned with a sector size of 2048k, so therefore the blocksize of the
    ext2 image (created with dd and mke2fs) must be 2048, *not 1024*.

    So, instead of:

    dd \
    if=/dev/zero \ # read input for file from /dev/zero
    of="ext2_file" \ # output file
    bs=1024k \ # file has block size of 1024k [1 Megabyte]
    count=4096 # file has 4096 blocks [4 Gigabytes]

    mke2fs \
    -b 1024 \ # block size
    -F \ # Force [I shouldn't have to use this, but I do]
    ext2_file # input file

    ... it should be this:

    dd \
    if=/dev/zero \ # read input for file from /dev/zero
    of="ext2_file" \ # output file
    bs=2048k \ # file has block size of 2048k [2 Megabytes]
    count=2048 # file has 2048 blocks [4 Gigabytes]

    mke2fs \
    -b 2048 \ # block size
    -F \ # Force [I shouldn't have to use this, but I do]
    ext2_file # input file?

    You might want to add this to the webpage so others don't burn a coaster
    like myself.

    Eric Waters

    Posted by Dorian Moore on Wednesday, December 10, 2003 at 13:43 GMT
    Last modified Thursday, October 20, 2005 at 20:22 GMT

  • works The Royal Armouries [2003.10.04]

    Information Architecture and Design

    http://www.armouries.org.uk

    So, this has been ongoing for a couple of years, but it's finally live [well a few weeks ago].

    A few bits of the design and HTML I provided for the site build seem to have been broken during implementation of the CMS, eleventeenth are taking on board all the feedback about the problems and sorting them out pretty quickly. I wish I had had more time to give feedback during the beta phase, so sort of my own fault. Now we wait for the armouries to produce the content!

    Another empty wrapper.

    I'm also aware that this goes against my ethics against violence and war, but I don't feel this is a celebration of war, rather than a study of it. The same contradiction exists in that I'm interested in Martial Arts, and enjoy a good explosion. I'm just against un-necessary violence were it is subjected upon innocent people. And so are the Armouries.

    Posted by Dorian Moore on Saturday, October 4, 2003 at 13:09 GMT
    Last modified Thursday, October 20, 2005 at 20:22 GMT

  • works SSH Tunnelling rocks [2003.09.17]

    That is all.

    Posted by Dorian Moore on Wednesday, September 17, 2003 at 16:33 GMT
    Last modified Thursday, October 20, 2005 at 20:22 GMT

  • works Norman Jay - Good Times [2003.08.26]

    videoblogging from notting hill carnival

    http://www.showstudio.com/projects/jay/jay_start.html

    I spent the bank holiday weekend mostly working on this. SHOWstudio arranged for two photographers to go out each day of carnival to send back the experience via mobile phones. I've already developed the software to publish photographs to the web, some simple perl scripts. But for this we also wanted to use a 3G video phone.

    First of we got sent some NEC e606 handsets. Whilst these were quite compact and OK to use, there is no email client in them, so getting them of required getting them to another phone and then offloading them to a computer. Done using some windows software supplied by NEC, whcih was a bit awkward. I wanted to automate the process so we got hold of some NEC e808 handsets which have an email client that can send attachments. So we could get video to the server no problem.

    A few experiments at a Squarepusher gig proved that whilst the video was interesting the sound wasn't so hot when the volume was high. We also had music that we wanted to use and so it seemed like a good idea to strip out the sound from the MP4 files that we received from the phone. I thought this would be pretty trivial as I could just load the files into QuickTime and strip them - this is easy to do in QuickTime Player. Obviously that's no good on Linux though.

    So I looked at what was available for Linux and, as expected, was disappointed. There are several solutions for playing video and loading codecs, but the libraries are scarecly documented [that I could find] and few utilities exist. I naively assumed that the quicktime file structure would be quite simple and therefore easy to manipulate, but some investigation has proven me wrong. Having since delved more into QuickTime's API and features I can understand why it might not be worth trying to do more than video playback.

    I dove into the QuickTime Java API thinking that the solution might lie there, and initial reads made me feel quite confident that I could write a Java app to do the work. So I set about working out how to get a Mac server that I could run the app on. I ended up putting my G4 laptop into Internet Vision's rack at RedBus for a few days.

    And set about writing QTDemux.java ... I've discovered a few things about QuickTime and QuickTime for Java along the way:

    QuickTime is a very powerful toolset.
    The document format is overly complex.
    The Java API is very poorly documented.

    But I managed it.

    And then strung together some front end interfaces using SMIL, and discovered that it was too heavy at the front end. QuickTime Player seems to suffer quite badly when you are trying to do quite trivial SMIL work. I can see this being down to the difference in model between SMIL and it's own document format. The thing is that these should essentially be the same thing, and therefore I can't understand why it's not. I think I maybe have a DOM mode of the QuickTime in my head, one that could be simplified, and would map to the DOM that exists in SMIL as well.

    There have been several itterations of what I wanted to do with the videos. I wanted to get across an idea of the 'everything going off' feeling I've had when I've gone to carnival. I decided to arrange the videos in a grid and control them using SMIL. I'd alternate between still images [pulled out by the QTDemux app] and video. Maybe play 2 videos at once. They were only small [<12 seconds, 174 x 144, 2.5 fps, MP4, <100k]. And a soundtrack.

    That's asking too much. It sort of works. But audio doesn't. Trying to play music along side just stuttered on my iBook. And I reckon that's probably going to be the case with most users. So I changed my approach and removed the music. But as the number of clips increased, quicktime carried on slowing down. I tried to stagger the loads, so that images loaded at different times, but eventually resigned to the fact that - as I knew already, but hoped the situation had improved - I needed to simplify it. So we've now just got the videos pulled in reverse chronological order with a random soundtrack. Simple, but I think it's still a nice mood.

    Gerald Jenkins was given the NEC e808 video phone, and a Nokia 3650 for stills. He was also given a back stage pass to the Good Times stage, so that he could film Norman Jay and what was going on around him. His stills are the monotones on the site, taken as colour and then passed through Perl::Magick. Gerald was around the stage on both days of the carnival, and towards the end was starting to feel limited with the video phone towards the end, and I can understand that. Whilst downloading and playing back videos on the phone is quite impressive, the video functions aren't all that yet for recording, and the frame rate can be annoyingly low. That combined with cramped conditions and a quite ugly handset [the silver e808 looks like a compact. And I mean the kind for make up]. It's going to take some getting used to. The other stills on the site were taken with a Nokia 7650, published straight out to the site. I enjoyed the contract between the different photographers on the project. That's something you'll have to take in by looking at it.

    Easy peasy once the pieces are in place.

    Posted by Dorian Moore on Tuesday, August 26, 2003 at 23:57 GMT
    Last modified Thursday, October 20, 2005 at 20:22 GMT

  • works Adventures in MobLoging [2003.06.30]

    or mblging or whatever catchphrase is appropriate.

    In preperation for sorting out SHOWstudio's MMS to web gateway I've tidied up the code I wrote last december to allow me to post to my site via my mobile phone. It's a pretty simple perl script which executes via a pipe when mail is received, and files any attachments and inserts the contents of the message into a DB.

    I've got it set up to post to MoveableType. Probably could be set to post to other blogging tools as well. Hmmmmm.

    Posted by Dorian Moore on Monday, June 30, 2003 at 01:15 GMT
    Last modified Thursday, October 20, 2005 at 20:22 GMT

  • works Sony Ericsson T310 - Flash Programming [2003.06.25]

    http://www.sonyericsson.com/t310

    I did some of the Flash programming on this site just before I left Dare Digital. It launched in March 2003.

    Posted by Dorian Moore on Wednesday, June 25, 2003 at 02:36 GMT
    Last modified Thursday, October 20, 2005 at 20:22 GMT

  • works SHOWstudio [2003.06.24]

    Fashion meets Art meets Technology

    Danny recomended that I help out with his work a SHOWstudio whilst he is incapacitated. I'm not the director whizz that Danny is [we can leave that to James] but I've been fixing Perl code on their server for them to do live interviews. There is one tomorrow with Tracy Emin. Fingers crossed.

    Well... that went well ... read

    Posted by Dorian Moore on Tuesday, June 24, 2003 at 22:45 GMT
    Last modified Thursday, October 20, 2005 at 20:22 GMT

  • works Red Bull HomeGroove [2003.06.11]

    A project connecting DJ's and producers in Italy

    http://www.redbullhomegroove.it... how's your Italian.

    I built this site using a rewrite of my CMS and some new tricks and ideas I've been playing with. It's working quite well so far, it's been up for about a month and I've been to occupied with other things to update my site to mention it. My tasks where ratifying the Dreamweaver HTML [IE rewriting it] and integrating all the content into the CMS. I adapted the CMS to deal with unicode properly which should help with some forthcomming [hopefully] work.

    Posted by Dorian Moore on Wednesday, June 11, 2003 at 00:18 GMT
    Last modified Thursday, October 20, 2005 at 20:22 GMT

  • next pagenext page
  • home home
  • page me
  • page page page page page page words
  • page page images
  • page page page page listening
  • page sounds
  • page radio
  • page page page page page page page works
  • page page page page likes
  • page page page page page page page page links
  • page mobile
  • page interfaces
  • page contact

    email

    telephone
    +44 (0)7976 242 805

    post
    Dorian Moore,
    Flat 2, Radnor Villas,
    45b King Henry's Walk,
    London,
    N1 4HQ.
    United Kingdom.

    ichat
    ichat://mtrapr

    aol instant messenger
    aim://mtrapr

    skype
    skype://dorianmoore