2025-06-22 22:22:08 +02:00
|
|
|
|
# OpenCut (prev AppCut)
|
2025-06-22 10:02:50 +02:00
|
|
|
|
|
2025-06-22 22:07:06 +02:00
|
|
|
|
A free, open-source video editor for web, desktop, and mobile.
|
2025-06-22 10:03:34 +02:00
|
|
|
|
|
2025-06-22 22:07:06 +02:00
|
|
|
|
## Why?
|
2025-06-22 10:02:50 +02:00
|
|
|
|
|
2025-06-22 22:07:06 +02:00
|
|
|
|
- **Privacy**: Your videos stay on your device
|
|
|
|
|
|
- **Free features**: Every basic feature of CapCut is paywalled now
|
|
|
|
|
|
- **Simple**: People want editors that are easy to use - CapCut proved that
|
|
|
|
|
|
|
|
|
|
|
|
## Features
|
|
|
|
|
|
|
|
|
|
|
|
- Timeline-based editing
|
|
|
|
|
|
- Multi-track support
|
|
|
|
|
|
- Real-time preview
|
|
|
|
|
|
- No watermarks or subscriptions
|
|
|
|
|
|
|
2025-06-23 15:33:06 +07:00
|
|
|
|
## Project Structure
|
2025-06-22 22:07:06 +02:00
|
|
|
|
|
2025-06-23 15:33:06 +07:00
|
|
|
|
- `apps/web/` – Main Next.js web application
|
|
|
|
|
|
- `src/components/` – UI and editor components
|
|
|
|
|
|
- `src/hooks/` – Custom React hooks
|
|
|
|
|
|
- `src/lib/` – Utility and API logic
|
|
|
|
|
|
- `src/stores/` – State management (Zustand, etc.)
|
|
|
|
|
|
- `src/types/` – TypeScript types
|
|
|
|
|
|
|
|
|
|
|
|
## Getting Started
|
|
|
|
|
|
|
|
|
|
|
|
1. **Clone the repository:**
|
|
|
|
|
|
```bash
|
|
|
|
|
|
git clone <repo-url>
|
|
|
|
|
|
cd OpenCut
|
|
|
|
|
|
```
|
|
|
|
|
|
2. **Install dependencies:**
|
|
|
|
|
|
```bash
|
|
|
|
|
|
cd apps/web
|
|
|
|
|
|
npm install
|
|
|
|
|
|
# or, with Bun
|
|
|
|
|
|
bun install
|
|
|
|
|
|
```
|
|
|
|
|
|
3. **Run the development server:**
|
|
|
|
|
|
```bash
|
|
|
|
|
|
npm run dev
|
|
|
|
|
|
# or, with Bun
|
|
|
|
|
|
bun run dev
|
|
|
|
|
|
```
|
|
|
|
|
|
4. **Open in browser:**
|
|
|
|
|
|
Visit [http://localhost:3000](http://localhost:3000)
|
2025-06-22 22:07:06 +02:00
|
|
|
|
|
|
|
|
|
|
## Contributing
|
2025-06-22 15:23:11 +02:00
|
|
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
2025-06-22 22:07:06 +02:00
|
|
|
|
MIT [Details](LICENSE)
|