Expand description

Streams of a YouTube video

Example

let client = ytextract::Client::new();

let streams = client.streams("nI2e-J6fsuk".parse()?).await?;

for stream in streams {
    println!("Duration: {:?}", stream.duration())
}

Structs

A Stream specifically containing audio data.

A Stream containing video or audio data.

A Stream specifically containing video data.

Enums

A Stream of a YouTube video