95 lines
3.0 KiB
Markdown
95 lines
3.0 KiB
Markdown
---
|
|
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
|