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

@@ -1,5 +1,6 @@
mod file;
mod hls;
mod http;
mod ytdl;
pub use self::{file::*, http::*, ytdl::*};
pub use self::{file::*, hls::*, http::*, ytdl::*};