You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Stream VOD Recorder
|
|
|
|
|
|
|
|
`svr` is a utility that monitors and downloads livestreams for any site with a youtube-dl extractor.
|
|
|
|
|
|
|
|
Example `config.toml`:
|
|
|
|
```toml
|
|
|
|
output = "/media/livestreams"
|
|
|
|
|
|
|
|
[[streams]]
|
|
|
|
subpath = "ThePrimeagen"
|
|
|
|
type = "youtube-dl"
|
|
|
|
url = "https://twitch.tv/ThePrimeagen"
|
|
|
|
frequency = "10m"
|
|
|
|
|
|
|
|
[[streams]]
|
|
|
|
subpath = "LofiGirl"
|
|
|
|
type = "youtube-dl"
|
|
|
|
url = "https://www.youtube.com/@LofiGirl/live"
|
|
|
|
frequency = "2h"
|
|
|
|
|
|
|
|
[[streams]]
|
|
|
|
subpath = "LofiGirl"
|
|
|
|
type = "youtube-dl"
|
|
|
|
url = "https://www.youtube.com/watch?v=jfKfPfyJRdk"
|
|
|
|
frequency = "2h"
|
|
|
|
```
|
|
|
|
|
|
|
|
## TODO
|
|
|
|
- Implement credential management for protected streams
|
|
|
|
- More configuration options for individual streams
|
|
|
|
- Handle server/stream interruptions (e.g. merging multiple stream files)
|
|
|
|
- Monitor playlists and other non-live content (monitor a channel???)
|
|
|
|
- Automatic deletion after e.g. a period of time
|
|
|
|
- Improved logging (tracing?)
|
|
|
|
- Save metadata somewhere
|
|
|
|
- Dockerfile for easy deployment
|
|
|
|
- Improve cli docs
|