cda-dl 0.1.0

Minimal async library for extracting video stream URLs from cda.pl
Documentation
1
2
3
4
5
6
7
use crate::extractor::{extract_best_quality};

pub mod extractor;

pub async fn get_video_url(cda_url: &str) -> anyhow::Result<String> {
    extract_best_quality(cda_url).await
}