Git Product home page Git Product logo

asciicast2gif's Introduction

asciicast2gif

asciicast2gif converts asciicast files to animated GIF files

News

2017-05-06: Marcin Kulik, the developer of asciinema, is working on a similar tool, also named asciicast2gif (originally named a2gif), which offers improvements over my tool and which is likely to be better supported in the future. Thus, you might want to use Marcin's asciicast2gif instead of mine.

Usage

Usage asciicast GIF

Generating the output GIF file might take several seconds/minutes, depending on the duration of the asciicast.

Synopsis

Run without arguments to get the following help message:

$ ./asciicast2gif

NAME
    asciicast2gif - convert an asciicast (asciinema JSON file) to an animated GIF file

SYNOPSIS
    ./asciicast2gif ASCIICAST.json [GIF_FILE_NAME] [OPTIONS]

OPTIONS
    --fps=NUM : generate gif with NUM frames per second (default: 10)
    --head=NUM : discard first NUM screenshots (default: 0)
    --keep : do not delete the temporary directory (default: delete)
    --nogif : do not generate GIF file (default: generate)
    --port=NUM : use port NUM for the local HTTP server (default: 8000)
    --size=[small|medium|big] : set player size (default: small)
    --speed=VAL : set player speed to VAL (default: 1)
    --tail=NUM : discard last NUM screenshots (default: 0)
    --theme=[asciinema|monokai|tango|solarized-dark|solarized-light] : use player theme (default: asciinema)
    --server=[py|py2|py3|py2.7|py3.5|py3.6|ruby|none] : use the given local HTTP server (default: py)

EXAMPLES
    $ ./asciicast2gif your.json               => generate your.json.gif
    $ ./asciicast2gif your.json foo.gif       => generate foo.gif
    $ ./asciicast2gif your.json --fps=20      => generate your.json.gif at 20 frames/s
    $ ./asciicast2gif your.json --speed=1.5   => play asciicast at 1.5x speed
    $ ./asciicast2gif your.json --head=3      => discard first 3 screenshots
    $ ./asciicast2gif your.json --tail=5      => discard last 5 screenshots
    $ ./asciicast2gif your.json --server=ruby => use Ruby to start local HTTP server
    $ ./asciicast2gif your.json --server=none => local HTTP server is already running on port 8000
    $ ./asciicast2gif your.json --size=big    => set the player size to big
    $ ./asciicast2gif your.json --port=5000   => use local HTTP server port 5000
    $ ./asciicast2gif your.json --theme=tango => set the player theme to tango

Note: it is strongly suggested to copy your asciicast JSON file into the git-cloned project directory, cd into the latter, and run asciicast2gif from there.

Requirements

  1. a POSIX shell, e.g. the Bash shell)
  2. phantomjs, i.e. PhantomJS (>=2.0.0)
  3. convert, i.e. ImageMagick
  4. gifsicle, i.e. Gifsicle
  5. python (Python) or ruby (Ruby) or a running HTTP server of your choice

How It Works

asciicast2gif is a POSIX shell script that reads an asciicast JSON file created by asciinema, patches a template HTML page generating a page.patched.html file, and runs a local HTTP server to serve it in background.

(If you have python or ruby, asciicast2gif starts and terminates the HTTP server for you, attempting to determine the correct command line parameters. Alternatively, you can manually run any other HTTP server of your choice, passing --server=none to asciicast2gif.)

The screenshot.js script, run inside phantomjs, periodically takes screenshots of the asciinema-player while it reproduces the asciicast, saving them as PNG files.

Finally, convert and gifsicle generate the output GIF file.

Note: currently you need a local HTTP server because it seems that phantomjs and/or asciinema-player.js do not work when fed a static local HTML file with the asciicast JSON file embedded. Removing this limitation would help many users. Please contribute if you figure it out.

License

asciicast2gif is released under the terms of the MIT License.

The page.template.html file in this repository contains an inlined version of asciinema-player v2.0.0 (GPLv3 License).

Changelog

  • 2017-04-17 0.0.3 Removed bashisms; refactored code into functions; added Python version detection
  • 2016-02-07 0.0.2 Removed dependency on jQuery; added optional arguments
  • 2016-02-06 0.0.1 Initial release

Limitations and Missing Features

  • The script must be invoked from a directory containing the page.template.html and screenshot.js files (there is no way to ensure access to bundled files in POSIX working everywhere)
  • Tested only on Debian with bash and dash, but it should run fine on other POSIX shells on Linux/macOS systems
  • Removing dependency from a running local HTTP server
  • convert and gifsicle are quite slow

Contribution Policy

Contributions are welcome!

Please follow the usual GitHub fork/new branch/pull-request flow.

Acknowledgments

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.