mirror of
https://github.com/asciinema/asciinema.git
synced 2026-04-25 16:05:52 +03:00
[GH-ISSUE #45] post process for remove or mark off some data #36
Labels
No labels
bug
compatibility
feature request
fit for beginners
help wanted
hosting
idea
improvement
packaging
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/asciinema#36
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dlintw on GitHub (Oct 6, 2013).
Original GitHub issue: https://github.com/asciinema/asciinema/issues/45
Is it possible?
I want to trim the long record to shorter.
Or, modify some word in record screen. (eg. password or personal information)
@ku1ik commented on GitHub (Oct 11, 2013):
Please read the answer about it on the FAQ page: http://asciinema.org/docs/faq
@dlintw commented on GitHub (Oct 11, 2013):
I remember ascii.io has such function to reduce my record length automatically.
But, in this new version asciinema seems removed it.
Am I right?
@dlintw commented on GitHub (Oct 12, 2013):
Is there some document about the stored file format?
How to download the stored file?
Maybe I could write a script to modify it and then upload again.
@ku1ik commented on GitHub (Oct 15, 2013):
The "time compression" feature is coming back soon. Also the ability to edit the recording before uploading is likely to happen in not so distant future. Keep an eye for them ;)
@dlintw commented on GitHub (Oct 15, 2013):
If I use to old utility ascii.io, does it provide "time compression"?
Or, it is not support to use 'ascii.io' to upload?
@ku1ik commented on GitHub (Oct 16, 2013):
@dlintw old asciiio cli still works but it is highly recommended to use the latest asciinema cli. And the time compression is happening in the web browser so it wouldn't help you to use old cli.
@colonelpanic8 commented on GitHub (Nov 22, 2015):
@sickill is there any word on the editing feature that you mentioned?
@ku1ik commented on GitHub (Nov 22, 2015):
@IvanMalison you can edit the .json file that is produced by the
asciinema rec out.jsoncommand. Take a look at the last question in FAQ: https://asciinema.org/docs/faq@ku1ik commented on GitHub (Nov 22, 2015):
A note on reducing idle time: you can use
asciinema rec --max-wait=2to compress all pauses (which are longer than 2 seconds) to exactly 2 seconds.@colonelpanic8 commented on GitHub (Nov 22, 2015):
@sickill Yeah I took a look at doing that but the format seemed a bit unwieldy.
@ku1ik commented on GitHub (Nov 23, 2015):
@IvanMalison stdout contains raw text printed to the terminal, including all escape/control sequences. We haven't invented anything on our own. I understand that it's not as easy to understand/edit as it would be if this was converted to a more "visual" representation, however I don't plan to change the format of the "raw material".
You can look at @micahcowan's teseq, which is one approach of this problem.