Discovering Asciinema
Introduction
You can find what it is here: Asciinema
Asciinema is a great tool for recording and sharing terminal sessions. Unlike traditional screen recordings, it captures terminal output as text-based playback, making it easy to copy, edit, and embed into documentation.
Why Use Asciinema?
1. Enhancing Documentation
Asciinema makes it easier for users to follow along with command-line instructions, eliminating the need to pause, type commands manually, or copy and paste from static screenshots.
Instead of showing code like this:
def method(argument)
# Something happens
end
And then showing its output:
# > Output => "Something happened!"
We can depict the execution of the method interactively, allowing users to play, pause, and copy the commands directly.
2. Two Playback Approaches
- Screen recording: Captures the process visually.
- Screen cast: Functions like a standard code block while allowing users to copy-paste commands directly from playback.
How to Install and Record Terminal Sessions
Installing Asciinema
To install Asciinema, simply run:
# On macOS (using Homebrew)
brew install asciinema
# On Linux (Debian/Ubuntu-based)
sudo apt install asciinema
# On Arch Linux
yay -S asciinema
Recording a Terminal Session
Once installed, start recording a session by running:
asciinema rec my-session.cast
This starts capturing all terminal activity. To stop the recording, press Ctrl + D
or type exit
.
Uploading and Sharing
To upload your recording to Asciinema’s hosting service, simply run:
asciinema upload my-session.cast
You’ll get a URL that you can share or embed in documentation.
How to Embed Inside a Document
I like to use asciidoctor. To embed the screen past, we can use asciidoctor’s passthrough. More info can be found here.
Embedding in Asciidoctor
If you’re using Asciidoctor, you can embed the playback using passthrough blocks:
++++
// Put the HTML to be embedded here
++++
Embedding in Markdown
For Markdown-based documents, you can use an Asciinema preview image linked to the playback:
[](https://asciinema.org/a/14)
Which would give this:
But I prefer to play the cast directly inside the documentation, which is achieved with the following:
<script src="https://asciinema.org/a/14.js" id="asciicast-14" async></script>
Customizing Playback
You can enable autoplay by adding data-autoplay="true"
to the Asciicast URL tag:
<script id="asciicast-14" src="https://asciinema.org/a/14.js" data-autoplay="true" async></script>
Which should give this:
For further details, check out Asciinema’s embedding documentation.
Conclusion
Asciinema is an invaluable tool for making terminal-based documentation more interactive and user-friendly. Whether you’re demonstrating CLI commands, showcasing a workflow, or documenting a tool, it provides a more engaging experience for the reader. By embedding Asciinema recordings into your Markdown or Asciidoctor documents, you make it effortless for users to follow along and learn in an interactive way.