Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Introduction to Linux - A Hands on Guide
This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter.
For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own.
Click Here to receive this Complete Guide absolutely free.
By ////// at 2009-07-13 06:58
In this tutorial I quickly show how you can make timelapse movies.
1.
First you need nice webcam where you can download pictures.
Here is couple of Google searches that I use when I'm looking for cameras.
go to sleep, after a (about)thousand pictures you are ready to make your movie, it is simple.
just cd into your imagefolder and use mencoder to make your movie.
I wrote a simple bash script to grab the images and save them with the time and date:
Code:
#!/bin/bash
if [ \! -d $HOME/logs/webcams/soton/ ]; then
mkdir $HOME/logs/webcams/soton/
fi
cd $HOME/logs/webcams/soton/
while true; do
DATE=$(date "+%y-%m-%d-%H-%M-%s")
wget --timeout=15 --quiet -nd -np \
http://www.southampton.gov.uk/webcamimages/largesize.jpg && \
mv largesize.jpg soton_high_street_${DATE}.jpg
sleep 900; # be polite and use reasonable time values ;)
done
I'm looking into how to do this with my own USB webcam - I should think it's possible to grab an image from it relatively easily and it'd make an interesting video to see how we move around the flat
by ////// on Tue, 2009-09-29 07:10
I'm glad you find this tut useful, did you manage to make your own movie from your webcam ?
by pwc101 on Tue, 2009-09-29 07:34
In the end, I didn't.
I found a program called grabby that would take a single image from a webcam and then store it in a particular folder, but I only managed to get it to compile on Slackware after I contacted the author and he provided me with a few patches. Even then, after it successfully compiled, it wouldn't get the images from my webcam, so I gave up.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
I wrote a simple bash script to grab the images and save them with the time and date:
I found a program called grabby that would take a single image from a webcam and then store it in a particular folder, but I only managed to get it to compile on Slackware after I contacted the author and he provided me with a few patches. Even then, after it successfully compiled, it wouldn't get the images from my webcam, so I gave up.