You can download this recording in asciicast v2 format, as a .cast file.
Download
Replay in terminal
You can replay this recording in your terminal with asciinema play
command:
asciinema play 1639.cast
If you don't have asciinema cli installed then see installation instructions.
Use with stand-alone player on your website
Download asciinema player from player's releases page
(you only need .js
and .css
file), then use it like this:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="asciinema-player.css" />
</head>
<body>
<div id="player"></div>
<script src="asciinema-player.min.js"></script>
<script>
AsciinemaPlayer.create(
'1639.cast',
document.getElementById('player'),
{ cols: 104, rows: 41 }
);
</script>
</body>
</html>
See asciinema player README for full usage instructions.