├── .gitignore ├── .node-version ├── LICENSE ├── README.md ├── cookbook └── README.md ├── docker └── README.md ├── package.json ├── packages ├── frame-android │ └── README.md ├── frame-backend │ └── README.md ├── frame-common │ └── README.md ├── frame-env │ └── README.md ├── frame-ios │ └── README.md └── frame-web │ └── README.md ├── public ├── 1.md ├── frame-ai-assistant.png ├── frame-video-agent-inital.png ├── frame-video-agent-working.png ├── frame-video-studio-imported.png └── frame-video-studio-initial.png ├── scripts └── README.md ├── test ├── .gitignore ├── README.md ├── e2e │ └── README.md └── unit │ └── README.md └── vercel.json /.gitignore: -------------------------------------------------------------------------------- 1 | # build output 2 | dist 3 | !.github/actions/*/dist 4 | .next 5 | target 6 | tarballs/ 7 | packages/**/*.tgz 8 | .errors/ 9 | 10 | # dependencies 11 | node_modules 12 | package-lock.json 13 | yarn.lock 14 | !/yarn.lock 15 | test/node_modules 16 | .pnpm-store/ 17 | .github/**/node_modules 18 | 19 | # logs & pids 20 | *.log 21 | pids 22 | *.cpuprofile 23 | *.heapsnapshot 24 | 25 | # coverage 26 | .nyc_output 27 | coverage 28 | 29 | # test output 30 | test/**/out* 31 | test/**/next-env.d.ts 32 | .DS_Store 33 | /e2e-tests 34 | test/tmp/** 35 | test/.trace 36 | test/traces 37 | 38 | # Editors 39 | **/.idea 40 | **/.#* 41 | .nvmrc 42 | 43 | # examples 44 | examples/**/out 45 | examples/**/.env*.local 46 | 47 | pr-stats.md 48 | test-timings.json 49 | 50 | # Vercel 51 | .vercel 52 | .now 53 | 54 | # Cache 55 | *.tsbuildinfo 56 | .swc/ 57 | .turbo 58 | 59 | # Storybook 60 | *storybook.log -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v18 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2023-present, AREGRID Limited 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Frame: AI-Powered Video Editing with a Code-Like Creative Flow

2 |

Smoothly integrate open-source models and agents to optimize the next frame effortlessly.

3 | 4 | 5 | ![Frame 3](./public/frame-ai-assistant.png) 6 | ![Frame 4](./public/frame-video-agent-inital.png) 7 | ![Frame 5](./public/frame-video-agent-working.png) 8 | 9 | **Frame** is an open-source alternative to Video Cut, reimagining video editing with AI power and a Cursor-level interactive experience. Designed for creators and developers, Frame automates repetitive tasks, enhances video quality, and provides a fluid, code-editor-like interface for effortless editing. Create stunning videos with ease, or extend Frame with your own features! 10 | 11 | --- 12 | 13 | ## 🌟 Features 14 | 15 | - **Frame Video Agent**: Leverage the power of AI with our built-in chat agent. Plan, organize, and streamline your video creation process effortlessly. Let the Frame Video Agent assist you in crafting the perfect final video by automating task planning and providing intelligent suggestions. 16 | - **Video Cut-Style Editing, Open-Source**: All the core features you love in Video Cut—timeline editing, transitions, effects—now fully open-source. 17 | - **Cursor-Level Interaction**: Enjoy a smooth, intelligent UI with real-time previews, smart suggestions, and drag-and-drop simplicity, inspired by Cursor's code-editing fluidity. 18 | - **AI-Powered Automation**: Auto-clip videos based on scene changes, audio peaks, or motion detection. 19 | - **Video Enhancement**: AI-driven color correction, brightness adjustments, and style filters for professional-grade results. 20 | - **Smart Organization**: Automatically tag and organize clips using AI (e.g., face detection, action recognition). 21 | - **Extensible for Developers**: Add custom AI models, effects, or plugins to tailor Frame to your needs. 22 | - **Cross-Platform**: Available on web, desktop, and (soon) mobile. 23 | 24 | --- 25 | 26 | ## Preview 27 | ![Frame 0](./public/frame-video-studio-initial.png) 28 | ![Frame 1](./public/frame-ai-assistant.png) 29 | ![Frame 2](./public/frame-video-studio-imported.png) 30 | -------------------------------------------------------------------------------- /cookbook/README.md: -------------------------------------------------------------------------------- 1 | # Frame cookbook 2 | -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- 1 | # Docker -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "frame", 3 | "version": "1.0.0", 4 | "description": "

Frame: AI-Powered Video Editing with a Code-Like Creative Flow

", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "https://github.com/aregrid/frame.git" 12 | }, 13 | "keywords": ["AI Agent for Video Editing", "Video Editing", "AI", "Agent", "Video"], 14 | "homepage": "https://cursorfor.video/", 15 | "author": "Terry Zhang ", 16 | "license": "MIT" 17 | } 18 | -------------------------------------------------------------------------------- /packages/frame-android/README.md: -------------------------------------------------------------------------------- 1 | # Android -------------------------------------------------------------------------------- /packages/frame-backend/README.md: -------------------------------------------------------------------------------- 1 | # backend -------------------------------------------------------------------------------- /packages/frame-common/README.md: -------------------------------------------------------------------------------- 1 | # common -------------------------------------------------------------------------------- /packages/frame-env/README.md: -------------------------------------------------------------------------------- 1 | # env -------------------------------------------------------------------------------- /packages/frame-ios/README.md: -------------------------------------------------------------------------------- 1 | # iOS -------------------------------------------------------------------------------- /packages/frame-web/README.md: -------------------------------------------------------------------------------- 1 | # Web -------------------------------------------------------------------------------- /public/1.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/frame-ai-assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aregrid/frame/38c5e2b545ca581bb746c2be500d4cef7de992bc/public/frame-ai-assistant.png -------------------------------------------------------------------------------- /public/frame-video-agent-inital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aregrid/frame/38c5e2b545ca581bb746c2be500d4cef7de992bc/public/frame-video-agent-inital.png -------------------------------------------------------------------------------- /public/frame-video-agent-working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aregrid/frame/38c5e2b545ca581bb746c2be500d4cef7de992bc/public/frame-video-agent-working.png -------------------------------------------------------------------------------- /public/frame-video-studio-imported.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aregrid/frame/38c5e2b545ca581bb746c2be500d4cef7de992bc/public/frame-video-studio-imported.png -------------------------------------------------------------------------------- /public/frame-video-studio-initial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aregrid/frame/38c5e2b545ca581bb746c2be500d4cef7de992bc/public/frame-video-studio-initial.png -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- 1 | See Scripts -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | !node_modules 2 | .vscode 3 | 4 | e2e/**/tsconfig.json 5 | production/**/tsconfig.json 6 | development/**/tsconfig.json -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- 1 | See Testing -------------------------------------------------------------------------------- /test/e2e/README.md: -------------------------------------------------------------------------------- 1 | See Testing -------------------------------------------------------------------------------- /test/unit/README.md: -------------------------------------------------------------------------------- 1 | See Testing -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } --------------------------------------------------------------------------------