mirror of
https://github.com/initialcommit-com/git-sim.git
synced 2026-04-27 03:25:53 +03:00
[GH-ISSUE #74] Cannot run git-sim to generate only images #47
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/git-sim#47
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 @bendem on GitHub (Mar 15, 2023).
Original GitHub issue: https://github.com/initialcommit-com/git-sim/issues/74
The documentation says it will generate images unless
--animateis provided to the command line, I can't seem to not generate videos.System infos:
@bendem commented on GitHub (Mar 15, 2023):
I've tried the exact same thing using a locally built docker image and I'm getting the same behaviour, guessing that means it's not related to my system settings.
Command used to run the image:
@bendem commented on GitHub (Mar 15, 2023):
After some testing, I see that the videos generated are actually single frames, adding
--animatefills in the rest of the frames. Would there be a way to not generate them at all (removing the requirement to install ffmpeg if we don't actually plan on generating videos)?@initialcommit-io commented on GitHub (Mar 16, 2023):
@bendem I will check but I don't think so, as I believe ffmpeg is a dependency of Manim. Also, the way the tool currently works when the --animate flag is not supplied, like you said it still generates a single frame video like you said, and extracts the frame into an image to produce the final output.
I'll do some research/testing and confirm.
@bendem commented on GitHub (Mar 16, 2023):
Interesting, it wasn't clear to me how this worked, that makes sense now. I guess it's to be expected, it would be nice to have still, but it's just that, nice to have.
@initialcommit-io commented on GitHub (Mar 16, 2023):
@bendem After looking into the Manim documentation, I don't think there is a way to use Manim without ffmpeg, as it seems to be required by Manim's core animation engine which is used for both generating video and image output. Closing this, but please let me know if any other questions related to this.
@bendem commented on GitHub (Mar 17, 2023):
Thanks for taking the time to investigate this!