mirror of
https://github.com/asciinema/asciinema.git
synced 2026-04-25 16:05:52 +03:00
[GH-ISSUE #161] [question] Where are the recordings stored? #122
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#122
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 @abhisekp on GitHub (May 27, 2016).
Original GitHub issue: https://github.com/asciinema/asciinema/issues/161
Where are the recordings stored if I don't upload them when it asks?
Previously using
Version: 1.0.16when recorded (but not uploaded)Recently updated to
Version: 1.2.0-1@ku1ik commented on GitHub (May 27, 2016):
They are stored in
$TMPDIR.@abhisekp commented on GitHub (May 27, 2016):
@sickill but
echo $TMPDIRgives me nothing. And when Ils /tmp, i don't see any asciinema files. At least nothing there seems like asciinema files.Just so you know, I was using
Version: 1.0.16when I recorded (but not uploaded) and recently upgraded toVersion: 1.2.0-1.I recoding using older version but didn't upload them.
@ku1ik commented on GitHub (May 27, 2016):
We use
ioutil.Tempfile(see here https://github.com/asciinema/asciinema/blob/master/commands/rec.go#L77), not sure where this would be on your system...@abhisekp commented on GitHub (May 27, 2016):
@sickill I don't know golang. Can you please write a program to display the
os.TempDir()output real quick and how to execute it?Thank you.
@abhisekp commented on GitHub (May 27, 2016):
OK. I wrote a mini program without learning Golang 😄
So my
os.TempDir()points to/tmpwhich I checked earlier and also checked again but I didn't find anyjsonfiles. Other files since Mar 25th are present but I couldn't find any trace of the asciinema recording which I recorded yesterday.Please know that I recorded using older version i.e.
Version 1.0.16yesterday.Please confirm whether the recordings were saved if not uploaded or they were discarded in the older release. Also in the older version, I was unable to execute command like this
asciinema -t "PGP Game" rec pgp-game.json. It showed me error i.e. it didn't accept any filenames as the last arg. I also tried usingasciinema rec pgp-game.jsonbut meh ... nothing 😑Anyway, this was a minor incident.
And thanks for creating this awesome app 😃 👍
@ku1ik commented on GitHub (May 28, 2016):
What's version 1.0.16? There wasn't such release. Here are all released versions: https://github.com/asciinema/asciinema/blob/master/CHANGELOG.md
@abhisekp commented on GitHub (May 29, 2016):
huh? How is that possible? I had that release (at least that's what asciinema cli reported).
This is going really creepy now. 😨
I'm scared 😱
@nmrao commented on GitHub (Oct 31, 2016):
Having the same experience as @abhisekp on ubuntu 16.04 with
asciinema 0.9.8. It showsToo many argumentswhen I type commandasciinema rec test.jsonfor recording with filename. Here is the recording. Hope this isn't working as per documentation.By the way, I just came know about it today and loving the tool. Thank you for such nice tool.
update:
Just going by the changelog link provided by @sickill and felt I am using old version. Could this be a reason? But that is what I get when installed with
apt-get install asciinema.@ku1ik commented on GitHub (Oct 31, 2016):
@nmrao yes, 0.9.8 is very old version and it doesn't support recording to a file. Unfortunately there's still no updated version in Ubuntu repository.
@nmrao commented on GitHub (Oct 31, 2016):
Thank you @sickill for your prompt response with details. If there are instructions that can be used to apply the update manually, then I would be glad to update.
@ku1ik commented on GitHub (Nov 1, 2016):
@nmrao the following should work to install asciinema from git checkout:
@nmrao commented on GitHub (Nov 2, 2016):
Thanks. I'll try.
On 01-Nov-2016 2:03 PM, "Marcin Kulik" notifications@github.com wrote:
@figuernd commented on GitHub (Jun 21, 2019):
For others searching for this answer: if you specify a file name it will save to the current working directory, not $TMPDIR.
--silentoption #707