Skip to main content

Create GIF Screencasts with SnagIt for Chrome

SnagIt, the popular screen capture program for Windows and Mac, is also available for Google Chrome. The extension is free and it can capture screenshots of your desktop as well as screencast videos. The recorded videos can be directly uploaded to YouTube or Google Drive from within the SnagIt app itself.

The most recent version of SnagIt for Chrome can save your screencast video as an animated GIF, a format that is perfect for publishing quick & short demos. The only condition is that the duration of your recorded video should be 20 seconds or less. The GIF is sent to your Google Drive for quick sharing or you can download it locally as well.

Upload screencasts to YouTube or Google Drive

Upload screencasts to YouTube or Google Drive

If you are not using the latest version of Google Chrome, it may take a few steps to enable screencasting support inside your browser.

The first step is to install the SnagIt app and extension from the Chrome Store. Next type chrome://flags in the browser address bar and enable the setting that says Enable Screen Capture Support in getUserMedia(). Restart the Chrome browser.

Internally, like the other screen sharing apps for Chrome, SnagIt is using WebRTC to record the screencast. When you hit the record button, it starts a private screen sharing session, with no other participants, and all your on-screen activity during the session is saved as an .AVI video.

The only downside is that SnagIt for Chrome can either record the entire desktop screen or an individual browser window but there’s no option to select a custom area for recording. Maybe its more a limitation of the browser platform than the app itself.

The other good alternative is the Screencastify extension for Chrome. It lets you screen record individual browser tabs or the entire desktop screen. Videos are recorded as .webm files that play in nearly all modern browser without requiring plugins. The screencast videos can also be uploaded to Youtube and Google Drive but it doesn’t do GIFs though

Comments

Popular posts from this blog

How to Get the Quiz Score in Google Forms with Apps Script

Teachers can easily create an online quiz using Google Forms and students can view their test scores immediately after form submission. Teachers can use Google Forms to create an online quiz and students can view their test scores immediately after  form submission . With Apps Script, you can set up automatic  email notifications  and send quiz scores to parents after a student has taken the quiz. Here’s a sample Google Script that will iterate through every answer in the most recent Google Form response and log the max score (points) of a gradable question and the score for the respondent’s submitted answer. function getGoogleFormQuizScore ( ) { // Returns the form to which the script is container-bound. var form = FormApp . getActiveForm ( ) ; // Get the most recently submitted form response var response = form . getResponses ( ) . reverse ( ) [ 0 ] ; // Gets an array of all items in the form. var items = form . getItems ( ) ; for ( var...

Let People Quickly Save your Events on their Calendars

Create Add to Calendar links for emails and websites and let users quickly save your events on their own Google Calendar, Outlook or Yahoo Calendar. You are organizing an online event - maybe a meeting on Zoom or a training session hosted on Google Meet - and you would like the attendees to add the event to their own calendars. Once added to their calendar, the event will act as an automatic reminder and attendees will get a notification when the conference is about to start. There are two way to go about this: You can create a new meeting in your online calendar (Google, Outlook or any other calendar) and add the individual attendees as guests so the event automatically gets added to their calendar as well. You can include an “Add to Calendar” link or button in your email messages,  forms  and website pages. Anyone can click the link to quickly save your event on to their calendars - see  live demo . Create Add to Calendar Links for Emails and Websites The  Add to C...

The Most Awesome Online Teachers for Learning Web Development

For the past few months, I have been on a learning spree looking to enhance my existing coding skills and also learn new programming languages and frameworks. In this process, I have watched a countless number of video tutorials and online courses that pertain to programming and, specifically, web development. In my quest to become a better developer, I’ve come across several awesome “teachers” who aren’t just excellent programmers but awesome educators and have the art of explaining complex and difficult concepts. Learn Modern Web Programming with the Best Online Teachers This is an attempt to highlight the best instructors on the Internet for JavaScript, React, Redux, Node.js, Firebase (database and storage), Docker, Google Golang, Typescript, Flutter (for mobile app development), Dart, Git, Webpack and Parcel bundler. I’ve taken courses by every single instructor mentioned here ( PDF ) and recommend them highly. Language / Platform Teacher / Course React.js Andrew...