{"id":13475064,"url":"https://github.com/asciinema/agg","last_synced_at":"2025-05-14T08:07:39.721Z","repository":{"id":56741853,"uuid":"519132476","full_name":"asciinema/agg","owner":"asciinema","description":"asciinema gif generator","archived":false,"fork":false,"pushed_at":"2025-02-22T12:02:55.000Z","size":18236,"stargazers_count":1293,"open_issues_count":16,"forks_count":50,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-04-11T02:52:00.665Z","etag":null,"topics":["asciinema","gif","rust","terminal"],"latest_commit_sha":null,"homepage":"https://docs.asciinema.org/manual/agg/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/asciinema.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"ku1ik","liberapay":"ku1ik"}},"created_at":"2022-07-29T08:05:00.000Z","updated_at":"2025-04-09T05:06:17.000Z","dependencies_parsed_at":"2023-11-13T15:05:25.449Z","dependency_job_id":"1c4ec609-a5f4-464f-b7d3-35d192246e1b","html_url":"https://github.com/asciinema/agg","commit_stats":{"total_commits":201,"total_committers":13,"mean_commits":"15.461538461538462","dds":"0.15920398009950254","last_synced_commit":"5592b9790ba7c6d5ffa232176e29a1d3cadf8fe2"},"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asciinema%2Fagg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asciinema%2Fagg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asciinema%2Fagg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/asciinema%2Fagg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/asciinema","download_url":"https://codeload.github.com/asciinema/agg/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254101557,"owners_count":22014908,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asciinema","gif","rust","terminal"],"created_at":"2024-07-31T16:01:17.061Z","updated_at":"2025-05-14T08:07:34.711Z","avatar_url":"https://github.com/asciinema.png","language":"Rust","funding_links":["https://github.com/sponsors/ku1ik","https://liberapay.com/ku1ik"],"categories":["Rust","terminal","\u003ca name=\"screen-recorder\"\u003e\u003c/a\u003eScreen recorder"],"sub_categories":[],"readme":"# agg - asciinema gif generator\n\n__agg__ is a command-line tool for generating animated GIF files from terminal\nsession recordings.\n\nIt supports conversion from [asciicast\nv2](https://github.com/asciinema/asciinema/blob/master/doc/asciicast-v2.md)\nfiles produced by [asciinema recorder](https://github.com/asciinema/asciinema).\nIt uses Kornel Lesiński's excellent\n[gifski](https://github.com/ImageOptim/gifski) library to produce optimized,\nhigh quality GIF output with accurate frame timing.\n\nExample GIF file generated with agg:\n\n![Example GIF file generated with agg](demo.gif)\n\nCheck out the [agg docs](https://docs.asciinema.org/manual/agg/) for\ninstallation and usage overview.\n\nagg is a successor to\n[asciicast2gif](https://github.com/asciinema/asciicast2gif).\n\n## Building\n\nBuilding from source requires [Rust](https://www.rust-lang.org/) compiler\n(1.56.0 or later) and [Cargo package manager](https://doc.rust-lang.org/cargo/).\nYou can install both with [rustup](https://rustup.rs/).\n\nTo download source code, build agg binary and install it in `$HOME/.cargo/bin`\nrun:\n\n```bash\ncargo install --git https://github.com/asciinema/agg\n```\n\nYou need to ensure `$HOME/.cargo/bin` is in your shell's `$PATH`.\n\nAlternatively, you can manually download source code and build agg binary with:\n\n```bash\ngit clone https://github.com/asciinema/agg\ncd agg\ncargo build --release\n```\n\nThis produces an executable file in _release mode_ (`--release`) at\n`target/release/agg`. There are no other build artifacts so you can copy the\nbinary to a directory in your `$PATH`.\n\n### Building with Docker\n\nAlternatively, if you have Docker, Podman or another Docker-compatible tool\ninstalled you can use it to build agg container image. This doesn't require Rust\ntoolchain installed on your machine.\n\nBuild the image with the following command:\n\n```sh\ndocker build -t agg .\n```\n\nThen run agg like this:\n\n```sh\ndocker run --rm -it -u $(id -u):$(id -g) -v $PWD:/data agg demo.cast demo.gif\n```\n\nIf you use Podman in root-less mode:\n\n```sh\npodman run --rm -it -v $PWD:/data agg demo.cast demo.gif\n```\n\n## Consulting\n\nIf you're interested in customization of agg or any other asciinema component to\nfor your corporate needs, check [asciinema consulting\nservices](https://docs.asciinema.org/consulting/).\n\n## License\n\n© 2022 Marcin Kulik.\n\nAll code is licensed under the Apache License, Version 2.0. See LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasciinema%2Fagg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fasciinema%2Fagg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fasciinema%2Fagg/lists"}