home.social

Search

129 results for “asciinema”

  1. Asciinema : Un outil pour enregistrer son terminal en "video".

    C'est un peu comme OBS mais ça enregistre uniquement ce qu'il se passe dans le terminal.

    Plutôt que de faire des .mp4, ça fait des .cast.
    Et donc ça fait des fichiers super légers.

    - "asciinema rec" pour lancer un enregistremenr

    - "asciinema play" pour le lire en local

    - "asciinema upload" pour l'envoyer sur un serveur en ligne (qu'on héberge) ou sur le saas officiel.
     
    Usage que je vois :
    - Tutos
    - Debug (clients ou collègues)
    - Demo / reviews

    En vrac :
    - Player auto hebergeable
    - Couper les moments de blanc
    - Réglage de la vitesse
    - Live streaming (local ou web)
    - et plein de petites choses

    Exemple d'un cast que j'ai fait :
    https://asciinema.org/a/1035235

    Projet :
    https://github.com/asciinema/asciinema

    #tui #cli #asciinema #cast #foss

  2. #asciinema is at #ElixirConfEU !

    Thanks Marcin for your work over a decade on many different versions, that keep on getting better!

    @asciinema

  3. @dreid @asciinema Alright, I have blogged a blog post about this setup: meejah.ca/blog/live-stream-asc

    It is not ideal, and I'm happy to hear feedback.

    #asciinema #terminal #livestream

  4. New asciinema CLI release!

    This one brings a mix of robustness improvements, new features and regression fixes.

    Highlights:

    - Added support for playback from stdin
    - Improved implementation of ALiS protocol
    - Added --description, --visibility, --audio-url options for the stream and session commands
    - Added --title, --description, --visibility, --audio-url options for the upload command
    - Improved querying for terminal theme and version

    github.com/asciinema/asciinema

  5. New asciinema server release!

    Highlights of this release:

    - new Explore and user profile pages, showing live streams, upcoming streams, popular and recent recordings
    - improved view counting
    - new popularity algorithm

    github.com/asciinema/asciinema

  6. Check out this live stream of satnogs-monitor (terminal UI monitor for SatNOGS ground stations) from station BEEGND-4 at the main building of Technical University of Berlin:

    asciinema.org/s/MsgCXmGxqg6lkL

  7. New asciinema server release!

    Highlights of this release:

    - stream scheduling
    - shorter recording URLs
    - improved Nerd Font symbols support
    - bold-is-bright option
    - leaner, smaller CSS and font assets

    github.com/asciinema/asciinema

  8. New asciinema CLI release!

    This one is focused on improvements to the local streaming mode, mainly:

    - it brings Nerd Font symbols support to the local streaming mode
    - upgrades the embedded player used by this mode, which improves performance and visual quality of the stream view
    - adds compression and caching for static assets served by the built-in HTTP server

    github.com/asciinema/asciinema

  9. Learn how to record terminal sessions on Linux using Asciinema and convert them into clean animated GIFs.

    Step-by-Step Guide: ostechnix.com/create-animated-

    #asciinema #agg #gif #terminal #linux

  10. @board
    如何优雅的录制终端?
    看到蜗牛哥的教程 eallion.com/mastodon-backup/ 看到终端录制突然想到,很多时候直接录制终端导致:需要启动主机上的录制软件、文件过大、不够清晰...

    asciinema 和 agg 可以很好解决这个问题

    相关链接:
    asciinema 官网:asciinema.org/
    asciinema 文档: docs.asciinema.org/getting-sta
    agg 文档:docs.asciinema.org/manual/agg/
    快速安装rust环境: rustup.rs/
    agg github文档: github.com/asciinema/agg?tab=r

    安装使用(环境为debian12):
    sudo apt install asciinema 安装asciinema
    asciinema rec mastodon_backup.cast 录制
    ctrl+d停止录制
    asciinema play mastodon_backup.cast 播放
    ctrl+c停止播放
    curl --proto '=https' --tlsv1.2 -sSf sh.rustup.rs | sh 为编译agg安装rust环境
    source $HOME/.cargo/env 启用cargo
    sudo apt install build-essential pkg-config libssl-dev安装必要编译器
    git clone github.com/asciinema/agg 克隆仓库
    cd agg
    cargo build --release 编译agg
    sudo mv target/releaseagg /usr/local/bin/ 移动agg二进制文件到用户bin目录
    agg --version 确认、查看版本
    sudo apt install fonts-noto-cjk 安装支持中文等宽字体
    agg --font-dir /usr/share/fonts/truetype/noto/ mastodon_backup.cast mastodon_backup.gif 指定字体目录,.cast导出为gif

    #asciinema #agg #rust #cargo #gif #录制 #终端 #terminal #debian #cjk

  11. @board
    如何优雅的录制终端?
    看到蜗牛哥的教程 eallion.com/mastodon-backup/ 看到终端录制突然想到,很多时候直接录制终端导致:需要启动主机上的录制软件、文件过大、不够清晰...

    asciinema 和 agg 可以很好解决这个问题

    相关链接:
    asciinema 官网:asciinema.org/
    asciinema 文档: docs.asciinema.org/getting-sta
    agg 文档:docs.asciinema.org/manual/agg/
    快速安装rust环境: rustup.rs/
    agg github文档: github.com/asciinema/agg?tab=r

    安装使用(环境为debian12):
    sudo apt install asciinema 安装asciinema
    asciinema rec mastodon_backup.cast 录制
    ctrl+d停止录制
    asciinema play mastodon_backup.cast 播放
    ctrl+c停止播放
    curl --proto '=https' --tlsv1.2 -sSf sh.rustup.rs | sh 为编译agg安装rust环境
    source $HOME/.cargo/env 启用cargo
    sudo apt install build-essential pkg-config libssl-dev安装必要编译器
    git clone github.com/asciinema/agg 克隆仓库
    cd agg
    cargo build --release 编译agg
    sudo mv target/releaseagg /usr/local/bin/ 移动agg二进制文件到用户bin目录
    agg --version 确认、查看版本
    sudo apt install fonts-noto-cjk 安装支持中文等宽字体
    agg --font-dir /usr/share/fonts/truetype/noto/ mastodon_backup.cast mastodon_backup.gif 指定字体目录,.cast导出为gif

    #asciinema #agg #rust #cargo #gif #录制 #终端 #terminal #debian #cjk

  12. New asciinema server release!

    This one brings brand new full-text search for recordings.

    github.com/asciinema/asciinema

  13. Check out the brand new full-text search on asciinema.org

    The search index includes recording titles, descriptions, and FULL TERMINAL SESSION CONTENT!

    It's powered by PostgreSQL's native FTS engine.

    For syntax check the search tips - there's a link on the right side of the search results page.

    The results contain public recordings, and if you're logged in you'll also be able to find your own recordings, including unlisted and private ones.

  14. New asciinema server release!

    This one integrates the new audio playback support recently implemented in asciinema player.

    github.com/asciinema/asciinema

  15. New asciinema player release!

    - live audio stream (e.g. Icecast) support for WebSocket sources
    - better adaptive buffering algorithm for live streams
    - and a few bug fixes

    github.com/asciinema/asciinema

  16. New asciinema player release!

    This release brings audio support - you can now add a voice-over or a soundtrack to your recordings.

    Check out the demo:

    asciinema.org/a/746358

    Release notes:

    github.com/asciinema/asciinema

  17. Has anyone tried on ? Is it all good on that front?

  18. asciinema 3.0とRaspberry Pi armhf環境でのビルド

    ターミナルの録画再生共有などができるソフトウェアのasciinemaの3.0がリリースされました. 今回のリリースはrustで書き直され,ファイル形式も新しくなったようです.(asciicast v3 file format)また,ターミナルのウェブ共有機能も付きました. 3.0 · asciinema blog Release v3.0.0 · asciinema/asciinema […]

    matoken.org/blog/2025/09/23/bu

  19. asciinema CLI 3.0 is now available in Arch Linux, Gentoo, Homebrew, Manjaro (Testing, Unstable), OpenBSD Ports, Termux, and a few others.

    Big thanks to all the package maintainers!

    If it's not available via your package manager yet and you have toolchain available, then you can install it with:

    cargo install --locked --git github.com/asciinema/asciinema

  20. 3.0 is out. The live streaming ability looks kind of wild. Was not expecting to be able to stream my terminal usage. But now... I can totally see doing this. 😁

    blog.asciinema.org/post/three-

  21. the live streaming btop call with #asciinema 3 is breaking my brain a little;

    asciinema.org/s/olesiD03BIFH6Y

    my first thought was, ok, nice. pretty smooth good quality for a terminal stream.
    but look at the html! all live updated spans, divs, and paragraphs.

  22. asciinema CLI 3.0 is already available in homebrew.

  23. 🚀 BREAKING: #Asciinema #CLI 3.0 gets a Rust-ic makeover for the thrill-seeking terminal enthusiast who demands live streaming of their code adventures. 🎥💻 In a move that surprises no one, the dev chose #Rust because "Python is sooo 2024," and because why not make a tool for recording text more dramatic than it has to be? 🎉🙄
    blog.asciinema.org/post/three- #LiveStreaming #TerminalCoding #CodeAdventures #HackerNews #ngated

  24. #asciiNema asciinema.org/ is a tiny little terminal-only screencasting tool that produces tiny recordings.

    It's the same one used on the #NixOS homepage nixos.org

    I'm hoping I can use it with github.com/marionebl/svg-term- to embed my terminal demonstrations into #Sozi presentations:
    * yes, I know this just plays a continuous loop without a pause option, but it is an intriguing embedded solution that doesn't require stepping out of the presentation.

    #bookmark @asciinema

  25. #asciiNema asciinema.org/ is a tiny little terminal-only screencasting tool that produces tiny recordings.

    It's the same one used on the #NixOS homepage nixos.org

    I'm hoping I can use it with github.com/marionebl/svg-term- to embed my terminal demonstrations into #Sozi presentations:
    * yes, I know this just plays a continuous loop without a pause option, but it is an intriguing embedded solution that doesn't require stepping out of the presentation.

    #bookmark @asciinema

  26. I've recorded a screencast for my old bash script alltests — test runner for competitive programming. It runs an executable against set of static tests (sample inputs and outputs).

    #asciinema #competitiveProgramming #bash #ShellScripting #utility #testing

  27. asciinema.org/
    Record compactly and efficiently with e.g. automatic elimination of parts / times where nothing is happening (compare ) can run in windows on ( ) easy copy commands from recording