Podcasts

Top 23 Podcast Open-Source Projects

  • audiobookshelf

    Self-hosted audiobook and podcast server

    Project mention: Audiobookshelf: A self-hosted audiobook and podcast server | news.ycombinator.com | 2024-02-21
  • resources

    Here is a list of best resources to get you started with learning how to code (mostly related to Web Development). Feel free to add your favorite resources as well and help others in their journey of learning. (by zero-to-mastery)

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

  • gonic

    music streaming server / free-software subsonic server API implementation

    Project mention: Music manager with genius/smart list generator | /r/selfhosted | 2023-12-09
  • savify

    Download Spotify songs to mp3 with full metadata and cover art!

    Project mention: Downloading spotify songs for a dataset? | /r/webscraping | 2023-06-29

    I've been trying to find something that I can use to download songs off of spotify for the sake of research, but most spotify scrapers on github don't work. I've only gotten Savify to work, which is ideal because it doesn't break Spotify's TOS, but takes a long time to download. What would be the best option in this situation?

  • homehost

    self-hosted, Netflix-like app made for streaming

  • REPL

    The Learning Hub for UoL's Online CS Students

    Project mention: Can I enrol for Level 5 modules before completing Level 4? | /r/UniversityOfLondonCS | 2023-07-04

    Yes you can as long as there are no progression blockers. Check the GitHub https://github.com/world-class/REPL

  • infosec_getting_started

    A collection of resources/documentation/links/etc to help people learn about Infosec and break into the field.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

  • castopod

    Castopod is an open-source hosting platform made for podcasters who want engage and interact with their audience. Synchronized read-only mirror of https://code.castopod.org/adaures/castopod

    Project mention: Bandcamp's Entire Union Bargaining Team Was Laid Off | news.ycombinator.com | 2023-10-19

    I would like to see something like Castopod [0], but for artists! Spinning up a website where you showcase and sell your music should (and could!) be as easy as using Wordpress, either via a subscription or self-hosted – on your own domain.

    Being plugged into the Fediverse makes it much easier to interact with fans and build a connection with your audience. It also makes it easy for people to share and talk about a track or and album. None of this requires that you tie yourself to yet another VC-funded startup and a closed garden.

    Maybe someone is building something like this already, that I am not aware of?

    [0]: https://castopod.org/

  • frontend-feed

    🇧🇷 Lista de blogs e sites úteis para frontenders

  • transcripts

    Changelog episode transcripts in Markdown format 📚

    Project mention: Fly.io Postgres cluster went down for 3 days, no word from them about it | news.ycombinator.com | 2023-07-20

    - While experimenting with machines, after many creations & deletions, one volume could not be deleted. Next day, the volume was gone.

    That's about it after 15 months of running production workloads on Fly.io.

    We mention about our Fly.io experience often in our Kaizen pod episodes, which we publish every ~2 months: https://changelog.com/topic/kaizen. For anyone curious, this is the episode in which we announced the migration: https://changelog.com/shipit/50. There is a detailed PR which goes with it: https://github.com/thechangelog/changelog.com/pull/407. We've been talking about our migration plan from apps v1 (Nomad) to apps v2 (flyd) recently: https://changelog.com/friends/2#transcript-138

    I'm sorry to hear that many of you didn't have the best experience. I know that things will continue improving at Fly.io. My hope is that one day, all these hard times will make for great stories. This gives me hope: https://community.fly.io/t/reliability-its-not-great/11253

    Keep improving.

  • tsacdop

    Enjoy podcasts with Tsacdop! A podcast player built with flutter.

  • podcast-dl

    A humble CLI for downloading and archiving podcasts.

    Project mention: Downloading the podcast | /r/WaypointVICE | 2023-05-01

    Its a command line node package to download the podcast episodes from the rss feed. https://github.com/lightpohl/podcast-dl

  • Podify

    Create podcasts from anything youtube-dl can handle

    Project mention: Podify | /r/selfhosted | 2023-07-10

    Does anyone know of any good Podify setup guides? (The Podify that uses yt-dl and formats podcast feeds - here) Seems like there are a few projects with the same name and if there are any guides they're getting buried in search results under all the "other" podifies.

  • YouCast

    Turn YouTube Channels into Subscribable Podcasts.

  • allinfosecnews_sources

    A list of online news & info sources in the InfoSec/Cybersecurity space

    Project mention: Where do you learn about new and existing TTP's? | /r/cybersecurity | 2023-11-30
  • podverse-rn

    Podverse mobile app written in React Native for iOS, Android, and F-Droid

  • dir2cast

    Turn a directory of MP3s into a podcast - automatically.

    Project mention: Guide: How to get Audible audiobooks on the Light Phone 2 | /r/LightPhone | 2023-07-06

    Git clone dir2cast into your server git clone https://github.com/ben-xo/dir2cast.git && cd dir2cast

  • obsidian-audio-notes

    Easily take notes on podcasts and other audio files using Obsidian Audio Notes.

  • podcats

    🎧 🐈🐈🐈 Podcats generates RSS feeds for podcast episodes from local audio files and, optionally, exposes both via a built-in web server.

  • podverse-fdroid

    Clone of the podverse-rn repo, with changes made for F-Droid compatibility

  • castget

    A simple, command-line based RSS enclosure downloader, primarily intended for automatic, unattended downloading of podcasts.

    Project mention: Ask HN: Why is it so hard to download podcasts? | news.ycombinator.com | 2024-02-13

    Many people have given their "why," but I'll give another "how".

    castget¹ is a simple tool that does exactly what you want, just add a feed URL and it pulls all the episodes. It has a nice catchup mode so you can add feeds that you've listened to elsewhere without pulling all the old episodes too. hpodder² is another tool I've used in the past, but I can't remember why I switched.

    Depending on how much you like cobbling together your own solution html-xml-utils³ makes it incredibly easy to script a solution. For example, "curl feed | hxselect -c -s '\n' 'enclosure::attr(url)'" would list just the URLs. feedparser⁴ is a battle tested solution for processing feeds if you'd prefer a proper solution over a hacky shell script.

    ¹ https://castget.johndal.com/

    ² https://github.com/jgoerzen/hpodder/

    ³ https://www.w3.org/Tools/HTML-XML-utils/

    https://github.com/kurtmckee/feedparser

  • tech-podcasts-list

    List of Tech Podcasts.

  • radiofeed-app

    Simple podcast aggregator

    Project mention: Making a music library without a SPA | news.ycombinator.com | 2023-09-30

    I built a podcast library/player[1] using HTMX and Alpine, using Django as the backend. It has an audio player that would stay open and keep playing while the user navigates around the page. This is quite easy to do with HTMX.

    It's pretty simple - it's just for my own needs - but it works quite well. You can go quite far these days before needing an SPA.

    [1] https://github.com/danjac/radiofeed-app

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020). The latest post mention was on 2024-02-21.

Podcasts related posts

Index

What are some of the best open-source Podcast projects? This list will help you:

Project Stars
1 audiobookshelf 4,986
2 resources 2,474
3 gonic 1,389
4 savify 1,071
5 homehost 1,033
6 REPL 806
7 infosec_getting_started 579
8 castopod 571
9 frontend-feed 453
10 transcripts 447
11 tsacdop 438
12 podcast-dl 303
13 Podify 280
14 YouCast 237
15 allinfosecnews_sources 217
16 podverse-rn 186
17 dir2cast 134
18 obsidian-audio-notes 130
19 podcats 126
20 podverse-fdroid 97
21 castget 92
22 tech-podcasts-list 87
23 radiofeed-app 40
The modern identity platform for B2B SaaS
The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.
workos.com