{"id":29085713,"url":"https://github.com/OpenCut-app/OpenCut","last_synced_at":"2025-06-27T23:02:40.463Z","repository":{"id":300535489,"uuid":"1006414368","full_name":"OpenCut-app/OpenCut","owner":"OpenCut-app","description":"The open-source CapCut alternative","archived":false,"fork":false,"pushed_at":"2025-06-22T22:03:29.000Z","size":516,"stargazers_count":448,"open_issues_count":0,"forks_count":20,"subscribers_count":11,"default_branch":"main","last_synced_at":"2025-06-22T23:18:19.841Z","etag":null,"topics":["editor","oss","videoeditor"],"latest_commit_sha":null,"homepage":"https://opencut.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OpenCut-app.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-22T08:02:17.000Z","updated_at":"2025-06-22T23:16:38.000Z","dependencies_parsed_at":"2025-06-22T23:18:20.285Z","dependency_job_id":null,"html_url":"https://github.com/OpenCut-app/OpenCut","commit_stats":null,"previous_names":["mazeincoding/appcut","opencut-app/appcut","opencut-app/opencut"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/OpenCut-app/OpenCut","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenCut-app%2FOpenCut","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenCut-app%2FOpenCut/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenCut-app%2FOpenCut/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenCut-app%2FOpenCut/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OpenCut-app","download_url":"https://codeload.github.com/OpenCut-app/OpenCut/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenCut-app%2FOpenCut/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262347468,"owners_count":23296893,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["editor","oss","videoeditor"],"created_at":"2025-06-27T23:02:22.837Z","updated_at":"2025-06-27T23:02:40.453Z","avatar_url":"https://github.com/OpenCut-app.png","language":"TypeScript","funding_links":[],"categories":["TypeScript","Video Editing","HarmonyOS","others","Multimedia","剪辑","Table of Contents"],"sub_categories":["Imgur","Windows Manager","Video","Video Editing"],"readme":"\u003ctable width=\"100%\"\u003e\n  \u003ctr\u003e\n    \u003ctd align=\"left\" width=\"120\"\u003e\n      \u003cimg src=\"apps/web/public/logo.png\" alt=\"OpenCut Logo\" width=\"100\" /\u003e\n    \u003c/td\u003e\n    \u003ctd align=\"right\"\u003e\n      \u003ch1\u003eOpenCut \u003cspan style=\"font-size: 0.7em; font-weight: normal;\"\u003e(prev AppCut)\u003c/span\u003e\u003c/h1\u003e\n      \u003ch3 style=\"margin-top: -10px;\"\u003eA free, open-source video editor for web, desktop, and mobile.\u003c/h3\u003e\n    \u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n\n\n\n\n## Why?\n\n- **Privacy**: Your videos stay on your device\n- **Free features**: Every basic feature of CapCut is paywalled now\n- **Simple**: People want editors that are easy to use - CapCut proved that\n\n## Features\n\n- Timeline-based editing\n- Multi-track support\n- Real-time preview\n- No watermarks or subscriptions\n- Analytics provided by [Databuddy](https://www.databuddy.cc?utm_source=opencut), 100% Anonymized \u0026 Non-invasive.\n\n## Project Structure\n\n- `apps/web/` – Main Next.js web application\n- `src/components/` – UI and editor components\n- `src/hooks/` – Custom React hooks\n- `src/lib/` – Utility and API logic\n- `src/stores/` – State management (Zustand, etc.)\n- `src/types/` – TypeScript types\n\n## Getting Started\n\n### Prerequisites\n\nBefore you begin, ensure you have the following installed on your system:\n\n- [Bun](https://bun.sh/docs/installation)\n- [Docker](https://docs.docker.com/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/)\n- [Node.js](https://nodejs.org/en/) (for `npm` alternative)\n\n### Setup\n\n1.  **Clone the repository**\n    ```bash\n    git clone \u003crepo-url\u003e\n    cd OpenCut\n    ```\n\n2.  **Start backend services**\n    From the project root, start the PostgreSQL and Redis services:\n    ```bash\n    docker-compose up -d\n    ```\n\n3.  **Set up environment variables**\n    Navigate into the web app's directory and create a `.env` file from the example:\n    ```bash\n    cd apps/web\n\n    \n    # Unix/Linux/Mac\n    cp .env.example .env.local\n\n    # Windows Command Prompt\n    copy .env.example .env.local\n    \n    # Windows PowerShell\n    Copy-Item .env.example .env.local\n    ```\n    *The default values in the `.env` file should work for local development.*\n\n4.  **Install dependencies**\n    Install the project dependencies using `bun` (recommended) or `npm`.\n    ```bash\n    # With bun\n    bun install\n\n    # Or with npm\n    npm install\n    ```\n\n5.  **Run database migrations**\n    Apply the database schema to your local database:\n    ```bash\n    # With bun\n    bun run db:push:local\n\n    # Or with npm\n    npm run db:push:local\n    ```\n\n6.  **Start the development server**\n    ```bash\n    # With bun\n    bun run dev\n\n    # Or with npm\n    npm run dev\n    ```\n\nThe application will be available at [http://localhost:3000](http://localhost:3000).\n\n---\n\n\n## Contributing\n\nVisit [CONTRIBUTING.md](.github/CONTRIBUTING.md)\n---\nWe welcome contributions! Please see our [Contributing Guide](.github/CONTRIBUTING.md) for detailed setup instructions and development guidelines.\n\nQuick start for contributors:\n\n- Fork the repo and clone locally\n- Follow the setup instructions in CONTRIBUTING.md\n- Create a feature branch and submit a PR\n\n## License\n\n[MIT LICENSE](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOpenCut-app%2FOpenCut","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FOpenCut-app%2FOpenCut","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOpenCut-app%2FOpenCut/lists"}