Initial vault setup
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
---
|
||||
title: OpenCut
|
||||
created: 2026-06-08
|
||||
updated: 2026-06-08
|
||||
type: app
|
||||
tags: [catalogue, video-editing, app-marathon3-batch-b]
|
||||
confidence: medium
|
||||
contested: false
|
||||
sources: [https://selfh.st/apps/?tag=video-editing&app=opencut]
|
||||
---
|
||||
|
||||
# 🎬 OpenCut
|
||||
|
||||
> Éditeur vidéo 100% navigateur — timeline multi-piste, transitions, export, sans rien installer.
|
||||
|
||||
## 📋 Informations Générales
|
||||
|
||||
| Champ | Valeur |
|
||||
| :--- | :--- |
|
||||
| **Site web** | [opencut.app](https://opencut.app) |
|
||||
| **GitHub** | [OpenCut-app/OpenCut](https://github.com/OpenCut-app/OpenCut) |
|
||||
| **License** | MIT |
|
||||
| **Langage** | TypeScript (Next.js + Remotion) |
|
||||
| **Étoiles GitHub** | ~8k ⭐ |
|
||||
| **Catégorie** | [[cat-video-editing\|Video Editing]] |
|
||||
|
||||
## 📝 Description
|
||||
|
||||
**OpenCut** est un éditeur vidéo **non-linéaire (NLE) web** construit en TypeScript avec Remotion (React). Fonctionnalités: timeline multi-piste, trim, transitions, textes, export MP4. Différence vs **CapCut web ou DaVinci Resolve**: OpenCut est **entièrement dans le navigateur** (rendu WebCodecs + WebGL), sans upload serveur — vos vidéos restent locales. Pour qui: créateurs qui veulent un éditeur simple, cross-platform, sans installer de binaire lourd.
|
||||
|
||||
## 🚀 Installation
|
||||
|
||||
### Docker Compose (recommandé)
|
||||
|
||||
```yaml
|
||||
version: '3.8'
|
||||
services:
|
||||
opencut:
|
||||
image: ghcr.io/opencut-app/opencut:latest
|
||||
container_name: opencut
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.opencut.rule=Host(`opencut.example.com`)
|
||||
- traefik.http.routers.opencut.entrypoints=websecure
|
||||
- traefik.http.routers.opencut.tls.certresolver=letsencrypt
|
||||
- traefik.http.services.opencut.loadbalancer.server.port=3000
|
||||
```
|
||||
|
||||
⚠️ Pour l'usage réel, l'**édition** se fait souvent **côté client** (WebCodecs) — le container sert l'UI Next.js. Stockage via OPFS / File System Access API ou backend S3 configurable.
|
||||
|
||||
## 🔄 Alternatives
|
||||
|
||||
### Open Source
|
||||
- [[app-kitsu]] — Production tracker, pas un éditeur.
|
||||
- [[app-shotcut]] — NLE desktop, complet, FFmpeg-based.
|
||||
- [[app-kdenlive]] — NLE desktop KDE.
|
||||
- [[app-flowblade]] — NLE Linux léger.
|
||||
|
||||
### Propriétaires
|
||||
- **CapCut** (ByteDance) — Gratuit, freemium cloud.
|
||||
- **DaVinci Resolve** — Référence pro (version free dispo).
|
||||
- **Adobe Premiere Pro** — Standard industrie, payant.
|
||||
|
||||
## 🔐 Sécurité
|
||||
- **Client-side**: vidéos ne quittent pas le navigateur par défaut.
|
||||
- **HTTPS**: requis pour WebCodecs + Service Workers.
|
||||
- **CSP**: configurer proprement si proxified.
|
||||
|
||||
## 📚 Ressources
|
||||
- [Site officiel](https://opencut.app)
|
||||
- [GitHub](https://github.com/OpenCut-app/OpenCut)
|
||||
- [Demo en ligne](https://opencut.app)
|
||||
|
||||
## Pages Liées
|
||||
- [[cat-video-editing]] — Catégorie Video Editing
|
||||
- [[app-shotcut]] — Alternative desktop
|
||||
- [[recettes-docker-compose]] — Templates Docker
|
||||
Reference in New Issue
Block a user