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.
2b-rs/src/providers/music/mod.rs

39 lines
1.1 KiB
Rust

use std::io::Read;
use std::process::{Command, Stdio};
use crate::providers::music::responses::{PlaylistEntry, VideoInformation};
use crate::utils::error::BotResult;
pub(crate) mod queue;
pub(crate) mod responses;
/// Returns a list of youtube videos for a given url
pub(crate) fn get_videos_for_playlist(url: &str) -> BotResult<Vec<PlaylistEntry>> {
let ytdl = Command::new("youtube-dl")
.args(&["--no-warnings", "--flat-playlist", "--dump-json", "-i", url])
.stdout(Stdio::piped())
.spawn()?;
let mut output = String::new();
ytdl.stdout.unwrap().read_to_string(&mut output)?;
let videos = output
.lines()
.filter_map(|l| serde_json::from_str::<PlaylistEntry>(l).ok())
.collect();
Ok(videos)
}
/// Returns information for a single video by using youtube-dl
pub(crate) fn get_video_information(url: &str) -> BotResult<VideoInformation> {
let ytdl = Command::new("youtube-dl")
.args(&["--no-warnings", "--dump-json", "-i", url])
.stdout(Stdio::piped())
.spawn()?;
let information = serde_json::from_reader(ytdl.stdout.unwrap())?;
Ok(information)
}