How are people recording their screens?

Sorry, stupid question, but I see multiple postings where people are showing very brief screen recordings to illustrate their points. I would love to do this but am not sure how. Is there a built-in screen recording app in Coda? What is everyone using to do these?

Matt

1 Like

Dear Matthew,

There are no stupid questions.
There are many tools for screen recording, my personal favorite is “ScreenToGif” at https://www.screentogif.com/downloads.html

Obviously there are many more options available when you ask Google for a screen recorder.

Enjoy Coda,
Jean Pierre

Hi Matt,

I use CloudApp: https://www.getcloudapp.com/

I love the customisation options, simplicity and shortcuts :slight_smile:

Cheers,
Sisko

I’m currently using recordIt (http://recordit.co/) and I’m very happy with it because it is fast and easy, but the free version does not allow many frames.

I’ll check out the other suggestions. Cool post :+1:t4:

If you’re a Mac user, the new OS, Mojave, has built in screen recording (and screenshots). It’s pretty dreamy.

2 Likes

If you have Windows 10, you can press Win + G to open the default screen recorder. If you want a desktop recorder, maybe you can give Joyoshare VidiKit a shot. It’s my favorite. I often use it to record streaming movies in 1080p. No latency and no watermark.

1 Like

I record with OBS (https://obsproject.com/) and then cut/convert to gif online with https://ezgif.com/

There are simpler workflows but I stick with OBS because I use it for more things, e.g. recording Coda screencasts and livestreams, and not just recording screen snippets. It’s a geeky application, so some basic knowledge about encoders would be helpful. Both are free though.

2 Likes

Once you have that screen recording downloaded, you can convert it to a gif with this script (if you’re into that sort of thing). Not sure it works on Windows. Requires that you’ve downloaded ffmpeg and imagemagick, which I downloaded with homebrew.

Script is:

 makeGif () {
	if [ -z $1 ]
	then
		echo "makeGif inputVideo [outputGif]"
		return 244
	fi
	vid="$1" 
	if [ -z $2 ]
	then
		outputVideo=$(echo "$vid" | sed -E 's+\.[^.]*$++g').gif 
	else
		outputVideo="$2" 
	fi
	ffmpeg -i "$vid" -vf scale=720:-1 -r 10 -f image2pipe -vcodec ppm - | convert -delay 10 -loop 0 - gif:- | convert -layers Optimize - "$outputVideo"
}

Usage:

makeGif ScreenRecording.mov ScreenRecording.gif

It will take a while, but the advantage is that you don’t run into the size limitations you find on free sites (though ezgif.com looks nice!)

If using Windows, I use https://getsharex.com/ [free]

After installing, here are the things I customized:

  1. set keyboard shortcut (Shift + Alt + S) & pick a file drop location (%Desktop%)

  2. review the Frames Per Second (FPS = 8)

  3. change the automatic file naming (%y-%mo-%d at %h.%mi%pm )

1 Like

I use Snagit (paid) by TechSmith, makers of Camtasia. It allows for adding text, shapes and other markup to screen captures or recording, which is very handy for team presentations or sending out images or gifs to help people do something.

2 Likes