Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chjj/ttystudio
A terminal-to-gif recorder minus the headaches.
https://github.com/chjj/ttystudio
Last synced: 1 day ago
JSON representation
A terminal-to-gif recorder minus the headaches.
- Host: GitHub
- URL: https://github.com/chjj/ttystudio
- Owner: chjj
- License: other
- Created: 2015-07-07T02:04:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-10T03:58:27.000Z (over 7 years ago)
- Last Synced: 2024-12-13T09:04:21.134Z (8 days ago)
- Language: JavaScript
- Size: 902 KB
- Stars: 3,234
- Watchers: 56
- Forks: 93
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- fucking-awesome-readme - ttystudio - **FREE** - For command-line tools, a terminal-to-GIF recorder minus the headaches. (Creating GIFs)
- awesome-readme - ttystudio - **FREE** - For command-line tools, a terminal-to-GIF recorder minus the headaches. (Creating GIFs)
- awesome-readme - ttystudio - **FREE** - For commandline tools, a terminal-to-gif recorder minus the headaches. (Creating GIFs)
README
# ttystudio
__A terminal-to-gif recorder minus the headaches.__
![ttystudio](https://raw.githubusercontent.com/chjj/ttystudio/master/img/example.gif)
Record your terminal and compile it to a GIF or APNG without any external
dependencies, bash scripts, gif concatenation, etc.Install with: `$ npm install ttystudio`. (Add `-g` for global install).
## Usage
``` bash
$ ttystudio output.gif --log
$ vim
hello world
:q!
$ ^Q # stop recording with ctrl-q
initializing writer
writing image
writing head
writing frame 0 - 132 left
writing frame 1 - 131 left
writing frame 2 - 130 left
...
writing frame 131 - 1 left
writing eof
wrote image to /home/chjj/output.gif
$ chromium output.gif
# or if you wrote to output.png (an APNG)
$ firefox output.png
```## The Difference
ttystudio differs from other terminal recorders in that:
1. It has its own built-in gif and apng writer, no imagemagick required. The
writer now has built-in frame offset optimization.
2. It has a font parser to render the font during image writing so no terminal
playback is required when writing the image (this also means __no GUI is
required at all__ - you can record on a remote machine via ssh).
3. No concatenation of hundreds of gif files required. ttystudio automatically
writes out to one gif or apng.
4. No glitchy frames due to imperfect GUI recording of the playback or gif
concatenation.
5. ttystudio will record frames even if nothing is being updated on the screen.This project has ended up making use of years of work I've done writing
terminal libraries (my personal obsession). Once all the pieces were there,
this project became possible. It also sprang out of a need to find a
terminal-to-gif recorder that actually worked.(NOTE: The above .gif was recorded with ttystudio - _nested_ ttystudio
instances cause a slight glitch where the cursor is not visible. Not to matter
in most cases).## More Usage
``` bash
$ ttystudio output.gif --log # record and compile
$ ttystudio frames.json --log # record
$ ttystudio frames.json output.gif --range=0-50 # compile
```### Use a frames.json file
``` bash
$ ttystudio --record frames.json --interval=100 # grab each frame on a 100ms interval
$ vim
hello world
:q!
$ ^Q # stop recording with ctrl-q
$ ttystudio --compile frames.json output.gif --log
parsing json
initializing writer
writing image
writing head
writing frame 0 - 132 left
writing frame 1 - 131 left
writing frame 2 - 130 left
...
writing frame 131 - 1 left
writing eof
wrote image to /home/chjj/output.gif
$ chromium output.gif
# or if you wrote to output.png (an APNG)
$ firefox output.png
```## How it works
1. `$ ttystudio --record frames.json`:
[blessed][blessed]+[term.js][term.js]+[pty.js][pty.js] will spawn a
pseudo-terminal to let you record until you press ^Q.
2. `$ ttystudio --compile frames.json output.gif`: ttystudio will parse each set of
frames into a bitmap, keeping in mind the foreground color and character in
each cell.
3. It will use its parsed font (terminus-u14n/b by default) to render pixels
for each characters in the image.
4. It will write out each frame to a .gif or .png file of your choice.It's that simple. No bash script to run. No gifs to concatenate. No external
dependencies required (i.e. ffmpeg or imagemagick) - ttystudio does it all on
its own, in 99% javascript (aside from pty.js which is a node c++ binding to
spawn terminals).## Options and Examples
Compiling to APNG:
``` bash
$ ttystudio frames.json output.png --log
```Accidentally recorded something you don't want in your image? The `range`
option can help:``` bash
# compile only frames 5 to 130
$ ttystudio frames.json output.gif --log --range=5-130
```The `delay` option sets the delay between frames in the final image:
``` bash
# 100ms between output frames
$ ttystudio frames.json output.png --log --delay=100
```The `--no-palette/--rgba` option can be used to avoid use a global palette
(color type 3) when compiling APNGs (this is known to cause high memory usage
when building the palette since it has to parse every frame beforehand).
Instead, it will use color type 6 (RGBA). This will make the APNG larger, but
does not risk OOMing the process. OOMing the process is unlikely to happen, but
if it does, this option is here. Use `pngcrush` afterwards to optimize.``` bash
$ ttystudio frames.json output.png --log --rgba
```Piping:
``` bash
$ ttystudio frames.json - | feh -
```Replaying frames in the terminal:
``` bash
$ ttystudio --play frames.json
```Adding a border:
``` bash
# explanation of arguments:
$ ttystudio output.gif --log --border=[width],[r],[g],[b],[a]
# add a red border:
$ ttystudio output.gif --log --border=10,255,0,0,255
# white border:
$ ttystudio output.gif --log --border=10,255
$ ttystudio output.gif --log --border=10,255,255,255
$ ttystudio output.gif --log --border=10
```Start in screenshot mode. This allows you to take multiple screenshot whenever
`C-p` is pressed. ttystudio will write them all to separate images.``` bash
$ ttystudio o.gif --screenshot --screenshot-key C-p
```### Full Options List
- `-l, --log`
- Log status to stderr (now default).- `-q, --quiet`
- Do not log status to stderr.- `-f, --font [font-file]`
- Choose a BDF font in ttystudio's JSON format.- `-b, --font-bold [font-file]`
- Choose a bold BDF font in ttystudio's JSON format.- `-d, --delay [delay-ms]`
- Specify frame delay in ms (default: 100).- `-i, --interval [interval-ms]`
- Specify frame snapshot interval in ms (default: 100).- `-k, --key [quit-key]`
- Choose a key combination to quit recording (default: C-q).- `-n, --num-plays [num-plays]`
- Specify a number of plays for the animation (default: 0 - infinite).- `-r, --range [frame-range]`
- Choose a range of frames to compile. e.g. 5-200.- `-x, --ratio [pixel-cell-ratio]`
- Choose pixel to cell ratio. This option is useless right now since it is
overwritten by the font (default: 8x14).- `-t, --term [term-name]`
- Choose the terminal name for terminfo.- `--palette`
- Use a global palette for APNGs instead of RGBA.- `--no-palette, --rgba, --lct`
- Use RGBA for APNGs instead of a global palette. This will also avoid
building a global palette for GIFs and only use a local color table for
each frame.- `--border [width,r,g,b,a]`
- Add a border around the animation using the specified parameters.- `play, --play`
- Replay a frames file in the terminal.- `record, --record`
- Explicitly choose to record (not very useful).- `compile, --compile`
- Explicitly choose to compile (not very useful).- `screenshot, --screenshot`
- Start ttystudio in screenshot mode. It will take a screenshot on `C-p`
unless specified otherwise by `--screenshot-key`.- `--screenshot-key`
- Set the screenshot key when in screenshot mode. Default is `C-p`.- `--version`
- Display ttystudio version.- `-h, --help`
- Display help information.## Choosing a new font for your terminal recording
Since ttystudio does not record a GUI, it needs to know which font you want to
use (it has no real idea of the font your terminal is using). ttystudio uses
terminus (ter-u14n/b) by default, but you can change this.Your font __must__ be in [BDF][bdf] format. Once you have your font ready,
place it in the `fonts/` directory in ttystudio and run `$ make`.
ttystudio+pxxl.js will convert the `.bdf` font to a glyph bitmap format in a
json file, which is what ttystudio uses.``` bash
$ cp ~/ter-u12n.bdf ~/ttystudio/fonts/
$ cp ~/ter-u12b.bdf ~/ttystudio/fonts/
$ cd ~/ttystudio/fonts
$ make
...
$ ttystudio output.gif --log \
--font ~/ttystudio/fonts/ter-u12n.json \
--font-bold ~/ttystudio/fonts/ter-u12b.json
```## OSX
[pty.js][pty.js] seems to currently be causing sporadic [input lag][lag] on
OSX. This is being investigated.## Notes
A special thanks to the folks who developed [pxxl.js][pxxl.js] - a BDF font
parser. Without them, it would not have been possible to render a reasonable
looking font to the output gif/png.## Todo
- More fonts and font formats supported.
- Antialiased fonts.
- Emit frames as events in writers.## Contribution and License Agreement
If you contribute code to this project, you are implicitly allowing your code
to be distributed under the MIT license. You are also implicitly verifying that
all code is your original work. ``## License
Copyright (c) 2015, Christopher Jeffrey. (MIT License)
See LICENSE for more info.
[blessed]: https://github.com/chjj/blessed
[term.js]: https://github.com/chjj/term.js
[pty.js]: https://github.com/chjj/pty.js
[pxxl.js]: https://github.com/remcoder/Pxxl.js
[tng]: https://github.com/chjj/tng
[bdf]: https://en.wikipedia.org/wiki/Glyph_Bitmap_Distribution_Format
[lag]: https://github.com/chjj/pty.js/issues/118