--- title: Owncast created: 2026-06-08 updated: 2026-06-08 type: app tags: [catalogue, live-streaming, app-marathon3-rattrapage-b] confidence: high contested: false sources: [https://selfh.st/apps/?tag=live-streaming&app=owncast] --- # đŸŽ„ Owncast > Serveur de **live streaming** self-hosted avec chat intĂ©grĂ© — alternative Ă  Twitch pour votre communautĂ©. ## 📋 Informations GĂ©nĂ©rales | Champ | Valeur | | :--- | :--- | | **Site web** | [owncast.online](https://owncast.online) | | **GitHub** | [owncast/owncast](https://github.com/owncast/owncast) | | **License** | MIT | | **Langage** | Go | | **Étoiles GitHub** | ~9k ⭐ | | **CatĂ©gorie** | [[cat-live-streaming\|Live Streaming]] | ## 📝 Description **Owncast** est un serveur de **live streaming** auto-hĂ©bergĂ© : vous streamez via OBS vers votre serveur Owncast, vos viewers regardent la vidĂ©o HLS via le player intĂ©grĂ© et participent Ă  un **chat** avec modĂ©ration, emojis, et plus. DiffĂ©rence vs [[app-restreamer]]: Owncast est une **plateforme sociale complĂšte** (chat, communautĂ©, modĂ©), pas un simple multi-rester. Pour qui: streamers, communautĂ©s, alternatives dĂ©centralisĂ©es, qui veulent leur propre "Twitch" sans algo ni ban injustifiĂ©. ## 🚀 Installation ### Docker Compose (recommandĂ©) ```yaml version: '3.8' services: owncast: image: owncast/owncast:latest container_name: owncast restart: unless-stopped ports: - "1935:1935" # RTMP (OBS) - "8080:8080" # HTTP volumes: - owncast-data:/app/data labels: - traefik.enable=true - traefik.http.routers.owncast.rule=Host(`live.example.com`) - traefik.http.routers.owncast.entrypoints=websecure - traefik.http.routers.owncast.tls.certresolver=letsencrypt - traefik.http.services.owncast.loadbalancer.server.port=8080 volumes: owncast-data: ``` Configuration : - **OBS** : `rtmp://live.example.com:1935/live` + stream key - **Admin UI** : `https://live.example.com/admin` - **Viewer** : `https://live.example.com` ## 🔄 Alternatives ### Open Source - [[app-restreamer]] — Infrastructure de diffusion multi-stream. - **Jellyfin Live** — Live + chat (TV). - **Mastodon Live** — Pas natif. - **PeerTube (live)** — Live expĂ©rimental. - **Ant Media Server** — Live + WebRTC. ### PropriĂ©taires - **Twitch** — Leader, centralisĂ©. - **YouTube Live** — Google. - **Kick** — Concurrent rĂ©cent. - **Facebook Live** — Meta. - **Trovo** — Tencent. ## 🔐 SĂ©curitĂ© - **Stream key**: secret partagĂ©, ne pas exposer. - **RTMP**: port 1935, restreindre par IP si possible. - **HTTPS**: obligatoire pour le player HLS. - **ModĂ©ration chat**: configurer filtres, mods. - **Federation** (expĂ©rimentale): activer si souhaitĂ©. ## 📚 Ressources - [Documentation](https://owncast.online/docs/) - [GitHub](https://github.com/owncast/owncast) - [Owncast Directory](https://directory.owncast.online/) ## Pages LiĂ©es - [[cat-live-streaming]] — CatĂ©gorie Live Streaming - [[app-restreamer]] — Concurrent infra - [[recettes-docker-compose]] — Templates Docker