Crate youtube_transcript
source ·Expand description
Asynchronous Youtube Transcript library
Get transcripts / captions of videos.
Downloading transcript from Youtube:
let config = Config::default();
let transcript = Youtube::link("https://www.youtube.com/watch?v=L_Guz73e6fw")
.get_transcript().await?
println!("transcript: {:?}", transcript);