best screen capture software

onz123

New member
Jan 7, 2011
133
2
0
I have to do a video tutorial in photoshop for my teacher training, so I need a screen capture software. I tried out CamStudio but it doesn't really seem that good. Any suggestions?
 


SnagIt was always good to me. Used it to record yahoo webcam chats back in the day of girls getting naked, etc
 
On linux, screen + mic:

Code:
ffmpeg -f alsa -itsoffset 00:00:02.000 -ac 2 -i hw:0,0 -f x11grab -s $(xwininfo -root | grep 'geometry' | awk '{print $2;}') -r 10 -i :0.0 -sameq -f mp4 -s wvga -y output.mp4

Just screen:
Code:
ffmpeg -y -f alsa -ac 2 -i pulse -f x11grab -r 30 -s `xdpyinfo | grep 'dimensions:'|awk '{print $2}'` -i :0.0 -acodec pcm_s16le output.wav -an -vcodec libx264 -vpre lossless_ultrafast -threads 0 output.mp4