86 lines
2.7 KiB
Markdown
86 lines
2.7 KiB
Markdown
---
|
|
title: PodSync
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, podcasts, youtube, youtube-dl, app-marathon3-batch-a]
|
|
confidence: medium
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Podcasts, https://github.com/akhilerm/podsync]
|
|
---
|
|
|
|
# 🎙️ PodSync
|
|
|
|
> Convertit des chaînes YouTube en flux RSS de podcasts écoutables dans n'importe quel lecteur.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [github.com/akhilerm/podsync](https://github.com/akhilerm/podsync) |
|
|
| **GitHub** | [akhilerm/podsync](https://github.com/akhilerm/podsync) |
|
|
| **License** | MPL-2.0 |
|
|
| **Langage** | Go |
|
|
| **Étoiles GitHub** | 1.4k ⭐ |
|
|
| **Catégorie** | [[cat-podcasts|Podcasts]] |
|
|
|
|
## 📝 Description
|
|
|
|
**PodSync** prend l'URL d'une playlist, d'une chaîne YouTube, d'une vidéo Vimeo ou d'un flux BitChute et la transforme en flux RSS audio (MPEG-AA, MP3 ou AAC) que vous pouvez abonner dans Pocket Casts, Overcast, Antennapod, etc. Téléchargement local + re-upload via serveur web.
|
|
|
|
**Différence vs [[app-pigeonpod]] / Pods-Blitz** : PodSync est focalisé **YouTube → RSS**. C'est le plus mature et simple pour cet usage.
|
|
|
|
**Pour qui** : amateurs de podcasts qui veulent suivre des chaînes YouTube comme des podcasts (écoute en voiture, en mode hors-ligne, sans pub YouTube).
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
podsync:
|
|
image: akhilerm/podsync:latest
|
|
container_name: podsync
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./data:/app/data
|
|
- ./config:/app/config
|
|
ports:
|
|
- "8088:8080"
|
|
environment:
|
|
- PODSYNC_EXTERNAL_URL=https://podcast.example.com
|
|
- PODSYNC_LISTEN_ADDR=:8080
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.http.routers.podsync.rule: "Host(`podcast.example.com`)"
|
|
traefik.http.routers.podsync.tls.certresolver: letsencrypt
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-pigeonpod]] — Convertisseur YouTube vers podcast (léger)
|
|
- [[app-pods-blitz]] — Multi-source podcast
|
|
- **Castodon / Castaway** — Plus orienté abonnement direct
|
|
- **Vodstager** — Variante
|
|
|
|
### Propriétaires
|
|
- **Pocket Casts web** — Support natif YouTube
|
|
- **YouTube Premium** — Lecture en arrière-plan mais non-exportable
|
|
|
|
## 🔐 Sécurité
|
|
- **Auth basique HTTP** : optionnelle
|
|
- **HTTPS** : recommandé
|
|
- **Rate limiting** : configurable
|
|
- **Pas de tracking** : pas d'analytics tiers
|
|
|
|
## 📚 Ressources
|
|
- [Documentation PodSync](https://github.com/akhilerm/podsync/wiki)
|
|
- [YouTube-dl/ytdlp** en backend
|
|
|
|
## Pages Liées
|
|
- [[cat-podcasts]] — Catégorie Podcasts
|
|
- [[app-pigeonpod]] — Concurrent simple
|
|
- [[recettes-docker-compose]] — Templates Docker
|