I’m in!
Language: C++
Engine/API: Aether Engine (My personal developed API/Engine http://www.midnightfragfest.com/aether/)
IDE: Code::Blocks
Graphics: Sprite Editor (My own personal tool http://www.midnightfragfest.com/sprite-editor/ )
Audio: SFXR, Autotracker, LMMS, and Schismtracker
Livestream: Simple bash script for livestreaming to twitch.tv
#!/bin/bash
SIZE=”1600×1200″
BITRATE=”128k”
FRAMERATE=”2″
KEY=”put_your_key_here”ffmpeg -f x11grab -s $SIZE -r $FRAMERATE -i :0.0 -f alsa -ac 2 -i pulse -vb $BITRATE -vcodec libx264 -threads 0 -acodec libmp3lame -ab 128k -ar 22050 -f flv “rtmp://live.justin.tv/app/$KEY”
Timelapse: Simple timelapse script and timelapse processing script
#!/bin/bash
sleep 30
x=$1while [ 1 ]
dovalf=$(printf “%.8d” “$x”)
scrot ./`echo $valf`.jpg
sleep 30
x=$(( $x + 1 ))
done
#!/bin/sh
OutputVideo=timelapse-yt.flv
Quality=5
FPS=2
FPSI=2
AudioBitrate=44100ffmpeg -r $FPSI -i %08d.jpg -s vga -r $FPS -f flv -qscale $Quality -ar $AudioBitrate $OutputVideo
Hello,
I’d like to test your sprite editor, but your website seems to be dead