80 lines
2.3 KiB
Markdown
80 lines
2.3 KiB
Markdown
---
|
|
title: Pods-Blitz
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, podcasts, self-hosted, app-marathon3-batch-a]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Podcasts]
|
|
---
|
|
|
|
# 🎙️ Pods-Blitz
|
|
|
|
> Application podcast self-hosted avec interface moderne et gestion multi-sources.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [github.com/pods-blitz](https://github.com/pods-blitz) |
|
|
| **GitHub** | [pods-blitz/pods-blitz](https://github.com/pods-blitz/pods-blitz) |
|
|
| **License** | MIT |
|
|
| **Langage** | TypeScript / Node |
|
|
| **Étoiles GitHub** | < 0.5k ⭐ |
|
|
| **Catégorie** | [[cat-podcasts|Podcasts]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Pods-Blitz** est une application podcast auto-hébergée avec une UI web moderne : abonnements RSS, lecture en streaming, gestion d'épisodes, marquage lu/non-lu, playlists. Alternative à Pocket Casts / Castbox mais en self-hosted.
|
|
|
|
**Différence vs [[app-podsync]]** : Pods-Blitz = lecteur podcast (comme Antennapod en web). PodSync = convertisseur YouTube→RSS. Usages différents.
|
|
|
|
**Pour qui** : utilisateurs qui veulent héberger leur propre lecteur podcast sans compte cloud.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
pods-blitz:
|
|
image: ghcr.io/pods-blitz/pods-blitz:latest
|
|
container_name: pods-blitz
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8089:3000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.podsblitz.rule: "Host(`pods.example.com`)"
|
|
traefik.http.routers.podsblitz.tls.certresolver: letsencrypt
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-podsync]] — Convertisseur YouTube→RSS
|
|
- [[app-element-fm]] — Lecteur podcast minimaliste
|
|
- **Antennapod** — Android (pas serveur)
|
|
- **Castopod** — Plateforme podcast+sociale
|
|
|
|
### Propriétaires
|
|
- **Pocket Casts** — Lecteur freemium
|
|
- **Overcast** — iOS gratuit (recommandé Apple)
|
|
|
|
## 🔐 Sécurité
|
|
- **OIDC** : supporté
|
|
- **HTTPS** recommandé
|
|
- **Chiffrement** des flux : au repos possible
|
|
|
|
## 📚 Ressources
|
|
- [GitHub Repository](https://github.com/pods-blitz/pods-blitz)
|
|
|
|
## Pages Liées
|
|
- [[cat-podcasts]] — Catégorie Podcasts
|
|
- [[app-podsync]] — Complément (YouTube)
|
|
- [[recettes-docker-compose]] — Templates Docker
|