Archive for Linux

Time Lapse – mode d’emploi

Comme promis, voici les détails pour réaliser une vidéo “Time Lapse” sous Linux avec un Nikon D60.

Je vous laisse le loisir de trouver un scène intéressante (nuages qui passent, plante qui pousse, cake qui cuit, … ). Une fois ceci fait, placez l’appareil sur un trépied, et réglez la balance des blancs, la vitesse d’obturation et l’exposition en manuel afin de vous assurer que ces paramètres restent constants au long de la prise de vue.

Le Nikon D60 ne disposant pas d’intervallomètre intégré ni de prise pour y en connecter un, il va falloir utiliser le port infra-rouge (IR) pour déclencher à intervalle régulier. Personnellement, j’utilise mon Palm avec le programme OmniRemote. Ce programme (gratuit en version d’essai) permet d’enregistrer un signal IR (celui de la télécommande Nikon) et de le rejouer à intervalle régulier. La prise de vue peut commencer.

Une fois les clichés récoltés, j’utilise le programme DVD-slideshow pour les assembler dans un fichier .vob:

dir2slideshow -n “nom_du_slideshow” -t 0.2 /dossier/contenant/les/images

Cette commande ne fait que créer un fichier texte nom_du_slideshow.txt qui contient les paramètres pour la création du slideshow. Vous pouvez l’éditer pour par exemple modifier le temps entre les images (ici un temps de 0,2s), supprimer le slide titre ou les fondus en début et fin de slideshow. L’étape suivant consiste à injecter ce fichier dans dvd-slideshow:

dvd-slideshow -f nom_du_slideshow.txt

Le résultat ici sera un fichier .vob (format DVD donc), c’est à dire la vidéo “time lapse” à proprement parler. Il suffit ensuite d’éditer ce fichier au moyen de Kino ou Kdenlive (que je préfère) pour l’intégrer à une autre vidéo par exemple ou y ajouter une bande son (bien que ce soit possible directement au moyen de dvd-slideshow…).

Bon amusement!

Anonymous browsing and more

There are many reasons for which you may want to browse the web anonymously. I won’t list any of them here, but I will rather explain you how you can do that. Follow the simple 5 steps procedure here below and you will soon be totally almost anonymous on the web, thanks to Tor and Privoxy. These steps apply to Ubuntu, but I’m pretty sure they are valid for other distributions as well with little changes.

  1. The first step is of course to install Tor & Privoxy, simply doing
    sudo apt-get install tor privoxy
  2. You will then have to configure Privoxy so that it makes use of tor. Copying the following into /etc/privoxy/config will do that:
    # Tor listens as a SOCKS4a proxy here:
    forward-socks4a / 127.0.0.1:9050 .
    confdir /etc/privoxy
    logdir /var/log/privoxy
    actionsfile standard  # Internal purpose, recommended
    actionsfile default   # Main actions file
    actionsfile user      # User customizations
    filterfile default.filter
    
    # Don't log interesting things, only startup messages, warnings and errors
    #logfile logfile
    #jarfile jarfile
    #debug   0    # show each GET/POST/CONNECT request
    debug   4096 # Startup banner and warnings
    debug   8192 # Errors - *we highly recommended enabling this*
    
    user-manual /usr/share/doc/privoxy/user-manual
    listen-address  127.0.0.1:8118
    toggle  1
    enable-remote-toggle 0
    enable-edit-actions 0
    enable-remote-http-toggle 0
    buffer-limit 4096
    
  3. Before actually using Tor & Privoxy, you will need to restart them to make them re-read their config files. With regards to Tor, you can either start it manually typing
    sudo /etc/init.d/tor restart

    in a terminal or use Vidalia to start and configure it. Concerning Privoxy, simply type

    sudo /etc/init.d/privoxy restart
  4. The next step (we are almost done… ) is to setup your applications to make them use Tor instead of going through your direct internet connection. This is basically performed by setting the proxy parameters of the application connections settings. For Firefox, the simplest way is to install the torbutton extension: once done, you’ll see a “button” in the bottom right corner of Firefox, giving the Tor status (enabled or disabled). Obviously, clicking it will change the satus. For other applications like Thunderbird for example, simply configure them to use a proxy instead of a direct connection and use the following settings:
    HTTP Proxy: localhost:8118
    SSL Proxy: localhost:8118
    SOCKS Host: localhost:9050
  5. The final step is to check your installation by visiting https://check.torproject.org. Getting a lot of green displayed means you probably succeeded, while getting some read means you’ll have to redo the 4 previous steps and hope it will work the next time…

So let’s check that…. Oh my god I succeeded (gentle tap in the back… )!!!

Successfull setup

Finally, as usual, I couldn’t give you a better advice than having a look at the official documentation, be it the Tor installation procedure, the Tor FAQ or even the Vidalia FAQ.

Quick&Dirty: get rid of this annoying beep

You know, that tiny little irritating beep that appears when typing the Tab or the Backspace keys too many times in the terminal… I was getting sick of hearing this damn sound since I switched back to fluxbox (under gnome, I disabled this in the preferences menu). Until I found this simple ear-saving command:

xset -b

I even miss the beep right now… but not for long!