feat(input): Support HLS streams (#242)

This patch adds support for yt-dl streams with the protocol m3u8_native which includes sites like Soundcloud.

Closes: #241
This commit is contained in:
Erk
2024-07-07 19:37:25 +02:00
committed by GitHub
parent 2e683380fa
commit 8e92c49b2b
8 changed files with 187 additions and 18 deletions

View File

@@ -19,6 +19,7 @@ pub struct Output {
pub uploader: Option<String>,
pub url: String,
pub webpage_url: Option<String>,
pub protocol: Option<String>,
}
impl Output {