Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mathisve/json-youtube-dl-launcher
A youtube-dl launcher that reads from JSON in rust
https://github.com/mathisve/json-youtube-dl-launcher
Last synced: about 2 months ago
JSON representation
A youtube-dl launcher that reads from JSON in rust
- Host: GitHub
- URL: https://github.com/mathisve/json-youtube-dl-launcher
- Owner: mathisve
- Created: 2020-09-30T14:07:06.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-09T18:29:35.000Z (about 4 years ago)
- Last Synced: 2023-03-07T20:10:02.886Z (almost 2 years ago)
- Language: Rust
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JSON-youtube-dl-launcher
Launches youtube-dl commands from a JSON file.
Built to be executed by cron to repeatedly archive entire youtube channels.Make sure you have youtube-dl installed!
```
pip3 install youtube-dl
```## JSON data structure
Program reads from JSON file named `channels.json` in the **same** directory as the executable.
```
{"fn": "mathis", "link": "https://www.youtube.com/channel/UCgVMmySjPUNHT60iVEpcNkQ"}
{"fn": "folder name", "link": "https://www.link_to_youtube_channel.com/"}
```## Dependencies
```
json = "*"
rand = "*"
```