YouTube video to Audio Podcast in Overcast?

Try Listenbox https://listenbox.app/

I have a simple shortcut that sends a URL to my server. On the server, I run youtube-dl and the audio part of the video (if it’s a video) goes into a specific folder. That folder is part of a dircaster hierarchy, so the file is added to an RSS feed that I’ve subscribed to in Overcast. The video/audio muxed file goes into a different dircaster RSS feed which I subscribe to in Downcast.

Complicated, but I had everything in place but the shortcut for a long time, so it was basically no extra effort.

1 Like

I would love to see this, @jonpdw. I’ve been learning Python and this is the exact kind of thing I’m trying to do. I’ve tried to do it myself but I’m running into some trouble. Seeing your example would be a big help!

Here you go. I had to remove my cookies from cookies.txt and I also modified my dropbox api key so its now fake.

1 Like

Thanks so much, @jonpdw!

Hi everybody, I made a little web app that allows you to extract the audio from online videos (YouTube and all the other sites supported by youtube-dl) and upload it to your Overcast Premium uploads.
This is based on @AndrewM’s cloudy-uploader.

Here is my tool, which you can self-host: https://github.com/LucaTNT/CloudyTube
And here is my demo install, which you’re welcome to use: https://cloudytube.lucatnt.com/

2 Likes

Very cool… Do you have a synology by chance?

No, I have a Linux-based home server, but it should definitely work on Docker on any Intel-based Synology.

1 Like

When I run this with python3 main.py, I keep getting errors that says to can’t find and import youtube_dl.

File “main.py”, line 2, in
import os, youtube_dl, threading, random, json, subprocess
ModuleNotFoundError: No module named ‘youtube_dl’

Google say to update my youtube-dl installation but that didnt help. Did you have this problem?

Thanks.

Try to install youtube-dl through pip3:

sudo pip3 install youtube-dl

Thanks. I went with the Docker version and it works great. Nice work.

did you perhaps mean the change the docker command in your GitHub ReadMe from

docker run -p 5000:80 lucatnt/als2cue_web

docker run -p 5000:80 lucatnt/cloudytube

Thanks!!

Ooops, that comes from a copy-paste from the readme of another project of mine!
Thanks for the heads up :+1:t2:

1 Like