{"id":51464669,"url":"https://github.com/simplearyan/kinetix-engine","last_synced_at":"2026-07-06T09:31:50.842Z","repository":{"id":333091131,"uuid":"1135422647","full_name":"simplearyan/kinetix-engine","owner":"simplearyan","description":"The High-Performance, Framework-Agnostic Video Engine for the Web.","archived":false,"fork":false,"pushed_at":"2026-02-08T10:11:59.000Z","size":129,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-08T16:25:14.172Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://simplearyan.github.io/kinetix-engine/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simplearyan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"SimpleAryan","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2026-01-16T04:30:09.000Z","updated_at":"2026-02-08T10:12:02.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/simplearyan/kinetix-engine","commit_stats":null,"previous_names":["simplearyan/kinetix-engine"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/simplearyan/kinetix-engine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplearyan%2Fkinetix-engine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplearyan%2Fkinetix-engine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplearyan%2Fkinetix-engine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplearyan%2Fkinetix-engine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simplearyan","download_url":"https://codeload.github.com/simplearyan/kinetix-engine/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplearyan%2Fkinetix-engine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35185688,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-06T02:00:07.184Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-07-06T09:31:50.150Z","updated_at":"2026-07-06T09:31:50.784Z","avatar_url":"https://github.com/simplearyan.png","language":"TypeScript","funding_links":["https://github.com/sponsors/SimpleAryan","https://github.com/sponsors/antigravity"],"categories":[],"sub_categories":[],"readme":"# Kenichi Core\n\n**The High-Performance, Framework-Agnostic Video Engine for the Web.**\n\nKinetix Core is a pure TypeScript library for orchestrating and exporting frame-perfect video directly in the browser. It decouples the rendering loop from the UI, allowing you to build complex video editors, motion graphics tools, and generative art pipelines that work at 60 FPS regardless of the user's device speed.\n\n[Documentation](https://kinetix.dev) | [Examples](https://kinetix.dev/examples) | [Sponsoring](#sponsoring) | [License](#license)\n\n## Features\n\n- **Rendering Agnostic**: Built on the native Canvas 2D API, but extensible for WebGL.\n- **Frame-Perfect Offline Export**: Renders video frame-by-frame using Web Workers to ensure 0 drop frames, even at 4K resolution.\n- **Framework Free**: Works with React, Vue, Svelte, or Vanilla JS. No framework overhead.\n- **Timeline Control**: Precise `seek()`, `play()`, `pause()` with millisecond accuracy.\n- **Zero Dependencies**: (Core engine) - lightweight and tree-shakable.\n\n## Quick Start\n\n### Installation\n\n```bash\nnpm install @kinetix/core\n```\n\n### Basic Usage\n\n```typescript\nimport { Engine, TextObject } from '@kinetix/core';\n\n// 1. Initialize Engine on a Canvas\nconst canvas = document.getElementById('my-canvas');\nconst engine = new Engine(canvas);\n\n// 2. Add Objects\nconst text = new TextObject('hello-1', 'Hello World');\ntext.x = 100;\ntext.y = 100;\ntext.animation = { type: 'fadeIn', duration: 1000, delay: 0 };\n\nengine.scene.add(text);\n\n// 3. Play\nengine.play();\n\n// 4. Export Video\nconst blob = await engine.exportVideo(5000); // Export 5s video\n```\n\n## Sponsoring\n\nKinetix Core is open source and free to use. However, maintaining a complex video engine requires significant time and effort.\nIf you are building a commercial product with Kinetix, please consider sponsoring development.\n\n[Become a Sponsor](https://github.com/sponsors/antigravity)\n\n**Sponsors get:**\n- Priority Bug Fixes\n- Early access to new plugins (e.g. Chart.js adapter)\n- Direct implementation support\n\n## Core Dependencies\n\nKinetix is possible thanks to these amazing open-source projects:\n\n\n- **[mediabunny](https://github.com/simplearyan/mediabunny)**: Frame-perfect video encoding and resource management.\n\n## License\n\nThis project is licensed under the **Mozilla Public License 2.0**.\n\n- **Use it freely**: Component libraries, closed-source apps, commercial tools.\n- **Contribute back**: If you modify the engine files, you must share those specific modifications.\n\nSee [LICENSE](./LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplearyan%2Fkinetix-engine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimplearyan%2Fkinetix-engine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplearyan%2Fkinetix-engine/lists"}