You can download this recording inasciicast v2 format, as a .cast file.
DownloadReplay in terminal
You can replay the downloaded recording in your terminal using theasciinema play
command:
asciinema play 594890.cast
If you don't have asciinema CLI installed thensee installation instructions.
Use with stand-alone player on your website
Download asciinema player from the 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></div> <script src="asciinema-player.min.js"></script> <script> AsciinemaPlayer.create( '/assets/594890.cast', document.getElementById('player'), { cols: 101, rows: 83 } ); </script></body></html>
See asciinema player quick-start guide for full usage instructions.