Evangelism Reps Training Program/How to prepare a screencast: Difference between revisions

 
(6 intermediate revisions by 3 users not shown)
Line 26: Line 26:


There are a few tools to do screencasts. Many are free, but it makes sense to spend some money as you avoid hosting issues and watermarking or limited features.
There are a few tools to do screencasts. Many are free, but it makes sense to spend some money as you avoid hosting issues and watermarking or limited features.
See Wikipedia's [http://en.wikipedia.org/wiki/Comparison_of_screencasting_software Comparison of screencasting software] to help you pick a tool.


===Screenr===
===Screenr===
Line 39: Line 41:
===Screenflow (recommended)===
===Screenflow (recommended)===


[http://www.telestream.net/screen-flow/ Screenflow] is very much worth the $99 it costs. As you can see in the [http://www.telestream.net/screen-flow/demos.htm demos on how to use it] it records the whole screen and you can then crop to what you need. You have several tracks to edit and shift and you can annotate your screencast and have effects to transition in between sections of it. Screenflow exports to YouTube or various local formats. I really got to like screenflow as it also allows you to edit other video and images into your screencasts easily.
[http://www.telestream.net/screen-flow/ Screenflow] (Mac only) is very much worth the $99 it costs. As you can see in the [http://www.telestream.net/screen-flow/demos.htm demos on how to use it] it records the whole screen and you can then crop to what you need. You have several tracks to edit and shift and you can annotate your screencast and have effects to transition in between sections of it. Screenflow exports to YouTube or various local formats. I really got to like screenflow as it also allows you to edit other video and images into your screencasts easily.


External Links:
External Links:
Line 47: Line 49:


If you are on Linux, [http://www.linuxhaxor.net/5-ways-to-screencast-your-linux-desktop/ here is a good article introducing various tools] you can use.
If you are on Linux, [http://www.linuxhaxor.net/5-ways-to-screencast-your-linux-desktop/ here is a good article introducing various tools] you can use.
===Windows tools===
* [http://www.techsmith.com/snagit.html Snagit], ~$50, for Windows and Mac.
* See [http://en.wikipedia.org/wiki/Comparison_of_screencasting_software here] for a comparison of screencast software on all platforms.


==Typing==
==Typing==
Line 82: Line 88:


To assign a keyboard shortcut to the script, so it runs when you press the shortcut, you can use a tool like [http://www.red-sweater.com/fastscripts/ FastScripts].
To assign a keyboard shortcut to the script, so it runs when you press the shortcut, you can use a tool like [http://www.red-sweater.com/fastscripts/ FastScripts].
You can also automate reading a file and printing it out to the editor. Sublime Text/Textmate is a bit too clever with auto-indenting and closing of curly braces, so I am using Brackets for that. The script is:
  set fileContents to read POSIX file "/your/script/location/script.js" as «class utf8»
  set the text item delimiters to (ASCII character 10)
  set mylines to text items in fileContents
  repeat with currentline in mylines
    write_string(currentline)
  end repeat
  on write_string(the_string)
    tell application "System Events"
      tell application "Brackets Sprint 15" to activate
      repeat with the_character in the_string
        keystroke the_character
        delay 0.05
      end repeat
      key code 36
      key code 123 using command down
    end tell
  end write_string
You can see this in action here: https://www.youtube.com/watch?v=XTkZug-6hPY


==Publishing==
==Publishing==
Confirmed users
32

edits