t-rec-rs
t-rec-rs copied to clipboard
Blazingly fast terminal recorder that generates animated gif images for the web written in rust
Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.58 to 1.0.60. Release notes Sourced from anyhow's releases. 1.0.60 Propagate --target to rustc invocation when deciding about backtrace support (#249, thanks @RalfJung) 1.0.59 Update crates.io metadata...
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.8 to 3.2.16. Release notes Sourced from clap's releases. v3.2.16 [3.2.16] - 2022-07-30 Fixes Ensure required arguments appear in errors when they are also members of a...
Bumps [image](https://github.com/image-rs/image) from 0.24.2 to 0.24.3. Changelog Sourced from image's changelog. Version 0.24.3 New Features: TiffDecoder now supports setting resource limits. Bug fixes: Fix compile issues on little endian systems....
t-rec depends on `x11rb` which obviously requires X. One workaround is [to use Xwayland](https://launchpad.net/ubuntu/+source/xwayland) Contribution for wayland support would be very much appreciated. Please reach out for guidance. 🙏
- fixes #28 - closes PR #36 - add a framerate cli argument `-f | --framerate` - limit the possible framerates to 4 and 8 for now - introduce new...
Arguments on the command line are not passed to the shell executed by t-rec. e.g. `t-rec /usr/local/bin/bash -l` This doesn't run, clap tries to gobble up `-l`. `t-rec -- /usr/local/bin/bash...
in order to change the final gif / video resolution (sometimes full retina is a bit overdone) 2 optional parameters should be introduced: 1. a `--max-height | h` 2. a...
**Describe the bug** When recording in alacritty, when started out of a iterm2 terminal, it is not recording the alacritty but iterm2 **To Reproduce** Steps to reproduce the behavior: 1....
Implement window grabbing and screenshotting capabilities for windows. The interface that needs to be implemented is very simple and straight forward: ```rust pub fn get_window_id_for(_terminal: String) -> Option { //...