90 lines
2.6 KiB
Markdown
90 lines
2.6 KiB
Markdown
---
|
|
title: Tube Archivist
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, videos, app-marathon3-rattrapage-final-b]
|
|
confidence: high
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=videos&app=tube-archivist]
|
|
---
|
|
|
|
# 📺 Tube Archivist
|
|
|
|
> Archive auto-hébergée de chaînes YouTube : abonnements, téléchargements, métadonnées et lecteur web.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [tubearchivist.com](https://www.tubearchivist.com/) |
|
|
| **GitHub** | [tubearchivist/tubearchivist](https://github.com/tubearchivist/tubearchivist) |
|
|
| **License** | GPL-3.0 |
|
|
| **Langage** | Python + JS |
|
|
| **Étoiles GitHub** | ~6k ⭐ |
|
|
| **Catégorie** | [[cat-videos|Videos]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Tube Archivist** s'abonne à vos chaînes YouTube favorites, télécharge les nouvelles vidéos avec yt-dlp, organise la bibliothèque par chaîne/playlist/genre, et fournit une UI web élégante (recherche, filtres, statistiques). Différence vs yt-dlp manuel : automatisation, base de données, lecteur intégré, résolution multi-vidéo. Pour qui : archivistes de contenu, personnes qui veulent libérer leur historique YouTube.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (recommandé)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
tubearchivist:
|
|
image: ghcr.io/tubearchivist/tubearchivist:latest
|
|
container_name: tubearchivist
|
|
restart: unless-stopped
|
|
environment:
|
|
- TA_HOST=ta.example.com
|
|
- TA_USERNAME=admin
|
|
- TA_PASSWORD=***
|
|
- TA_ELASTIC_URL=http://es:9200
|
|
depends_on:
|
|
- es
|
|
volumes:
|
|
- tubearchivist-data:/app
|
|
- /mnt/videos:/videos
|
|
labels:
|
|
- traefik.enable=true
|
|
- traefik.http.routers.ta.rule=Host(`ta.example.com`)
|
|
es:
|
|
image: docker.elastic.co/elasticsearch/elasticsearch:8.13.0
|
|
restart: unless-stopped
|
|
environment:
|
|
- discovery.type=single-node
|
|
- xpack.security.enabled=false
|
|
volumes:
|
|
- tubearchivist-es:/usr/share/elasticsearch/data
|
|
volumes:
|
|
tubearchivist-data:
|
|
tubearchivist-es:
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-mediacms]] — Plateforme vidéo type YouTube
|
|
- [[app-ytdl-sub]] — yt-dlp automatisé
|
|
|
|
### Propriétaires
|
|
- **YouTube Premium** — YouTube sans pub
|
|
- **Pocket Casts** — Pas vraiment comparable
|
|
|
|
## 🔐 Sécurité
|
|
- Authentification : comptes locaux, multi-utilisateur
|
|
- Chiffrement : HTTPS via reverse proxy
|
|
|
|
## 📚 Ressources
|
|
- [Documentation](https://docs.tubearchivist.com/)
|
|
- [GitHub](https://github.com/tubearchivist/tubearchivist)
|
|
|
|
## Pages Liées
|
|
- [[cat-videos]] — Catégorie Videos
|
|
- [[app-jellyfin]] — Concurrent (vidéo perso)
|
|
- [[recettes-docker-compose]] — Templates Docker
|