This simple web app allows you to submit the URL of a video (from any of the websites supported by youtube-dl): the video will be downloaded, its audio will be extracted, converted to mp3 and uploaded to your own Overcast® player. This requires an Overcast® Premium membership.
The uploading functionality of this tool is made possible through the great cloudy-uploader by Andrew Morozko.
Let me just make one thing clear: design was not a priority when building this tool, it was mostly for my own use (and it shows).
You can use my demo install at cloudytube.lucatnt.com.
You can either run this with Python (it requires Flask, so pip3 install flask
)
python3 main.py
Or you can use the lucatnt/cloudytube
Docker image
docker run -p 5000:80 lucatnt/cloudytube
Either way you will end up with a webserver running on port 5000.
There are four optional settings that can be supplied as environment variables.
Variable | Default value | Required | Description |
---|---|---|---|
OVERCAST_USERNAME |
No | Overcast default username | |
OVERCAST_PASSWORD |
No | Overcast default password | |
ENV_CREDENTIALS_DEFAULT |
false |
No | If set to true , the checkbox that selects the environment-supplied credentials to be used is checked by default |
DEFAULT_VIDEO_URL |
No | The default video URL. Useful for testing. |