m (Time-lapse)
m (Over time-lapses of interest)
Line 25: Line 25:
  
 
* [https://www.youtube.com/watch?v=ygH0-PdMcR0 Madrid desde el aire], a great compilation of various places, by Ryan San. The Author comments "''Agradezco desde aqui a todos los porteros que no me han dejado subir a los respectivos áticos y comentarles que abran bien los ojos porque volveré.''"
 
* [https://www.youtube.com/watch?v=ygH0-PdMcR0 Madrid desde el aire], a great compilation of various places, by Ryan San. The Author comments "''Agradezco desde aqui a todos los porteros que no me han dejado subir a los respectivos áticos y comentarles que abran bien los ojos porque volveré.''"
 +
* Paco Castilla released timelapses of [https://www.youtube.com/watch?v=6vudZco9VRs Madrid's big sky] (see [https://www.youtube.com/watch?v=K2UMVhbwPCg also here]) with interesting patterns of creation/vanishing of clouds.
  
 
== Technical bits ==
 
== Technical bits ==

Revision as of 21:17, 16 March 2014

Contents

Time-lapse

Time-lapsing is a trick of technology to get rid of our limited perception of time. By recording shots and playing them back at a different speed, one can reach to the other timescales, namely, the slow ones for time-lapses and the fast ones for slow-motion.

Our input

Fabrice-timelapsing-march2014.jpg

we currently work (as of 30 December (2013)) on time-lapsing of the Plaza Mayor from our vantage point at Mayorcita.

Carlos Sanchez's input

Carlos is also exploring time-lapsing and once in a while release some publicly. Notable are:

Over time-lapses of interest

Of Madrid

  • Madrid desde el aire, a great compilation of various places, by Ryan San. The Author comments "Agradezco desde aqui a todos los porteros que no me han dejado subir a los respectivos áticos y comentarles que abran bien los ojos porque volveré."
  • Paco Castilla released timelapses of Madrid's big sky (see also here) with interesting patterns of creation/vanishing of clouds.

Technical bits

We work both with our Nikon D40 camera and our HTC smartphone with (http://www.lapseit.com/ LapseIt].

The D40 has no built-in feature, se we recourse to gphoto2~[1].

The following is a basic setting to capture (here every 30s):

gphoto2 --capture-image-and-download --filename "%Y-%m-%d..%H%M%S.jpg" --interval 30

To assemble the frames into a movie (15 fps):

avconv -f image2 -r 15 -i imageSequence0000%04d.jpg-vcodec libx264 output.mp4

To add the timestamp on the image itself (say at position 10x470), use this script:

#!/bin/bash

timestamp=`date -r $1 +%H:%M`
echo $timestamp;
convert -draw "text 10,470 '$timestamp'" $1 $1.jpg

See also

Links