https://github.com/simonrw/youtube-downloader
For queueing downloads from youtube
https://github.com/simonrw/youtube-downloader
Last synced: over 1 year ago
JSON representation
For queueing downloads from youtube
- Host: GitHub
- URL: https://github.com/simonrw/youtube-downloader
- Owner: simonrw
- License: mit
- Created: 2018-08-11T22:42:07.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-19T15:55:48.000Z (almost 8 years ago)
- Last Synced: 2025-02-06T08:45:10.614Z (over 1 year ago)
- Language: Rust
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Youtube donwloader
This program supports two modes:
- a file containing all of the playlists which should be automatically
checked and tracked, and
- a CLI accepting new downloads and adding them to the queue.
## Implementation
The download queue is implemented using a Python Queue. New download
entries should be added to the queue and the download thread will
download them. This serialises any downloads that need to happen.
A separate CLI allows for one-off downloads to be made. This still
interacts with the queue and talks over zeromq.