Announcement

Collapse
No announcement yet.

Creating Screencasts without byzanz

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Creating Screencasts without byzanz

    Don't know precisely where to post this, but it may be useful as byzanz is not available and won't function in kde.
    Anyway to make gif screencasts is easy.

    First install these packages if not already installed:

    sudo apt-get install imagemagick mplayer recordmydesktop.

    Then use Desktop Recorder to capture a portion of the screen/application to use as the screencast. After the Desktop Recorder has saved the recording into an OGV video, MPlayer will be used to capture JPEG screenshots, saving them into the 'output' directory.

    In a terminal:
    mplayer -ao null out.ogv -vo jpegutdir=output

    Use ImageMagick to convert the screenshots into an animated gifs.
    convert output/* output.gif

    You can optimize the screenshots this way: (You can adjust the fuzz %)
    convert output.gif -fuzz 10% -layers Optimize optimised.gif

    Another way to optimize gif is to use gifsicle: gifsicle -O in.gif -o out.gif

    There are many options for gifsicle usage, eg.
    gifsicle --optimize -d20 --colors 256 in.gif > animation.gif)

    Click image for larger version

Name:	optimised.gif
Views:	1
Size:	919.1 KB
ID:	648849
    Last edited by weha; Dec 26, 2014, 05:23 AM.

    #2
    Also see this section from Kubuntuguide:

    http://ubuntuguide.org/wiki/Screencasts

    UbuntuGuide/KubuntuGuide

    Right now the killer is being surrounded by a web of deduction, forensic science,
    and the latest in technology such as two-way radios and e-mail.

    Comment

    Working...
    X