invidious 0.7.8

Get information about videos from YouTube with this simple Invidious API wrapper. Does not use the YouTube API (No tokens required)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct FormatStream {
    pub url: String,
    pub itag: String,
    pub r#type: String,
    pub quality: String,
    pub container: String,
    pub encoding: String,
    #[serde(rename = "qualityLabel")]
    pub quality_label: String,
    pub resolution: String,
    pub size: String,
}