{"id":37755627,"url":"https://github.com/fszewczyk/plot2vid","last_synced_at":"2026-01-16T14:28:41.316Z","repository":{"id":186295807,"uuid":"674943038","full_name":"fszewczyk/plot2vid","owner":"fszewczyk","description":"The easiest way to create animations from plots","archived":false,"fork":false,"pushed_at":"2023-08-05T13:08:31.000Z","size":6,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-27T18:53:37.357Z","etag":null,"topics":["animation","matplotlib","matplotlib-pyplot","plot","pyplot","video"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/plot2vid/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fszewczyk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-08-05T08:46:00.000Z","updated_at":"2024-07-01T20:33:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"7e8432ba-3ebc-4683-874a-35df6259b205","html_url":"https://github.com/fszewczyk/plot2vid","commit_stats":{"total_commits":6,"total_committers":2,"mean_commits":3.0,"dds":"0.33333333333333337","last_synced_commit":"c60e4e1b688cd77932bfd1b9e4a8e1e5bc8d619d"},"previous_names":["fszewczyk/plot2vid"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/fszewczyk/plot2vid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fszewczyk%2Fplot2vid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fszewczyk%2Fplot2vid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fszewczyk%2Fplot2vid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fszewczyk%2Fplot2vid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fszewczyk","download_url":"https://codeload.github.com/fszewczyk/plot2vid/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fszewczyk%2Fplot2vid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479395,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["animation","matplotlib","matplotlib-pyplot","plot","pyplot","video"],"created_at":"2026-01-16T14:28:40.800Z","updated_at":"2026-01-16T14:28:41.305Z","avatar_url":"https://github.com/fszewczyk.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# plot2vid\n\n_The easiest way to create animations using plots._\n\nThis small Python package lets you store seperate matplotlib plots to create a video.\n\n## Installation\n\n```\npip install plot2vid\n```\n\n## Basic Usage\n\n```python\nfrom plot2vid import PlotRecorder\nimport matplotlib.pyplot as plt\n\n# Setup\nrecorder = PlotRecorder(\"out.mp4\")\nfig = plt.figure()\n\nfor i in range(90):\n    # Setting the plot limits\n    plt.xlim(0,100)\n    plt.ylim(0,100)\n\n    # Plotting\n    plt.scatter([i], [i])\n\n    # Recording the frame\n    recorder.add(fig)\n\n    # Clearing the plot\n    plt.clf()\n\n# Storing the result\nrecorder.close()\n```\nThe above code creates this video.\n\n![ezgif-5-c21b239e33](https://github.com/fszewczyk/plot2vid/assets/60960225/5c7388aa-d955-46ff-b588-7bec7a4794b3)\n\n\n## Advanced Usage\n\nYou can change the different settings of the recorder.\n\n```python\nrecorder = plot2vid.PlotRecorder(\"out.mp4\", fps=20)\n```\n\n## Roadmap\n\n- [x] Support MP4\n- [ ] Support AVI\n- [x] Variable FPS\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffszewczyk%2Fplot2vid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffszewczyk%2Fplot2vid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffszewczyk%2Fplot2vid/lists"}