Post your Timelapse

Random irrelevance that just didn't fit into other forums. Talk about anything.

Moderator: Talkative People

Post Reply
User avatar
M_D_K
Chaos Rift Demigod
Chaos Rift Demigod
Posts: 1087
Joined: Tue Oct 28, 2008 10:33 am
Favorite Gaming Platforms: PC
Programming Language of Choice: C/++
Location: UK

Post your Timelapse

Post by M_D_K »

So I did a test of my timelapse script, decided to upload the video to youtube.



So post your timelapses :)

EDIT:
here's the script

Code: Select all

#!/bin/bash
#
# start it by going time-lapse.sh start will keep running till termination
# then issue time-lapse.sh compile <optinal music file>

interval=5

arg=$1

if [ "$2" ]; then
music=$2
else
music=
fi

if [ -z $arg ]; then
	exit 0
fi

if [ $arg = "start" ]; then
	echo starting in $interval seconds
	sleep $interval
	while true
	do
		touch counter #incase this is our first run
		counter=`cat counter`
		counter=`expr $counter + 1`
		scrot temp.png
		convert -quality 100 -resize 800x temp.png `printf "%06d" $counter`.jpg
		echo "frame: $counter"
		echo $counter > counter
		sleep $interval
	done
elif [ $arg = "compile" ]; then
	if [ "$music" ]; then
		ffmpeg -shortest -qscale 3 -r 24 -i %06d.jpg -i "$music" -r 24 video.avi
	else
		ffmpeg -shortest -qscale 3 -r 24 -i %06d.jpg -r 24 video.avi
	fi
fi
Gyro Sheen wrote:you pour their inventory onto my life
IRC wrote: <sparda> The routine had a stack overflow, sorry.
<sparda> Apparently the stack was full of shit.
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: Post your Timelapse

Post by dandymcgee »

Did anyone else catch the porn flicker?
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
User avatar
rolland
Chaos Rift Regular
Chaos Rift Regular
Posts: 127
Joined: Fri Dec 21, 2007 2:27 pm
Current Project: Starting an Android app soon
Favorite Gaming Platforms: PS1, N64
Programming Language of Choice: C++
Location: Michigan, US

Re: Post your Timelapse

Post by rolland »

dandymcgee wrote:Did anyone else catch the porn flicker?
Lmao. No, nothing like that. Where at?
I'll write a signature once I get some creativity and inspiration...
User avatar
superLED
Chaos Rift Junior
Chaos Rift Junior
Posts: 303
Joined: Sun Nov 21, 2010 10:56 am
Current Project: Engine
Favorite Gaming Platforms: N64
Programming Language of Choice: C++, PHP
Location: Norway

Re: Post your Timelapse

Post by superLED »

dandymcgee wrote:Did anyone else catch the porn flicker?
Oh, that's a nice publicity trick.

Original Poster: "Hey, look at this cool video I made"
*not a single fuck was given that day*
Random dude: "Oh, did you see that porn flicker?"
1000 peoples: "I've gotta see this!"

Anyway. I'll check out your channel 8)
User avatar
TheBuzzSaw
Chaos Rift Junior
Chaos Rift Junior
Posts: 310
Joined: Wed Dec 02, 2009 3:55 pm
Current Project: Paroxysm
Favorite Gaming Platforms: PC
Programming Language of Choice: C++
Contact:

Re: Post your Timelapse

Post by TheBuzzSaw »

I will definitely use this during my next coding session.
User avatar
ismetteren
Chaos Rift Junior
Chaos Rift Junior
Posts: 276
Joined: Mon Jul 21, 2008 4:13 pm

Re: Post your Timelapse

Post by ismetteren »

Is that Awesome Window Manager? .. AWESOME!
Image ImageImage Image
Post Reply