Marcin Kulik
Marcin Kulik
@matthieu-foucault this is something that I had on my mind for a while, and it's part of bigger feature family: asciicast post-processing. I quickly hacked a script which you can...
With latest changes in `develop` branch the following python script allows editing asciicast while preserving all information (header, stdin): ```python import sys import os import asciinema.asciicast as asciicast import asciinema.asciicast.v2...
As this is linked to #178 I'm closing it too.
My comments in the referenced PR were never addressed, and I never heard back from cbarcenas. Thus both PR and issue were closed.
If you'd like to completely prevent uploads today you can put this in the config file, as a temporary workaround: ```ini [api] url = http://nope ```
asciinema doesn't record screen but the stdout stream. It also saves the current terminal dimensions **at the end** of the recording session. Some terminal apps (as `sl`) are depending on...
It's not that I don't want to fix it, but there are more subtleties with this (your proposed solution would still give bad results in some cases). Anyway, this is...
@xloem @mukkachaitanya I am designing new recording format (https://github.com/asciinema/asciinema/pull/196). Maybe we could make it support "terminal resize" event...
@jiangts here's the place where the recorder handles terminal resize (SIGWINCH signal): https://github.com/asciinema/asciinema/blob/develop/asciinema/pty_recorder.py#L108
Yes. It could basically be a generated bash file with only `echo -e -n "..."; sleep ...; echo -e -n "..."; sleep ` statements.